diff --git a/grammar.js b/grammar.js index 8639267b3..c1268050d 100644 --- a/grammar.js +++ b/grammar.js @@ -290,7 +290,7 @@ module.exports = grammar(clojure, { array_dimension: _ => prec(100, /\d+[aA]/), char_lit: _ => - seq('#', /\\[^\f\n\r\t ()]+/), + seq('#', /\\[^\f\n\r\t ]+/), vec_lit: $ => prec(PREC.SPECIAL, diff --git a/src/grammar.json b/src/grammar.json index 431b095be..da8e7562f 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -621,7 +621,7 @@ }, { "type": "PATTERN", - "value": "\\\\[^\\f\\n\\r\\t ()]+" + "value": "\\\\[^\\f\\n\\r\\t ]+" } ] }, @@ -2573,8 +2573,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -2603,8 +2611,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -2633,8 +2649,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -2717,8 +2741,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", diff --git a/src/parser.c b/src/parser.c index 0cb0148d1..da98c96d7 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,8 +14,8 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 4132 -#define LARGE_STATE_COUNT 398 +#define STATE_COUNT 4156 +#define LARGE_STATE_COUNT 405 #define SYMBOL_COUNT 184 #define ALIAS_COUNT 0 #define TOKEN_COUNT 118 @@ -1432,11 +1432,11 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [61] = {.index = 172, .length = 7}, [62] = {.index = 179, .length = 7}, [63] = {.index = 186, .length = 2}, - [64] = {.index = 188, .length = 2}, - [65] = {.index = 190, .length = 3}, - [66] = {.index = 193, .length = 1}, - [67] = {.index = 194, .length = 5}, - [68] = {.index = 199, .length = 3}, + [64] = {.index = 188, .length = 3}, + [65] = {.index = 191, .length = 2}, + [66] = {.index = 193, .length = 3}, + [67] = {.index = 196, .length = 1}, + [68] = {.index = 197, .length = 5}, [69] = {.index = 202, .length = 2}, [70] = {.index = 204, .length = 4}, [71] = {.index = 208, .length = 3}, @@ -1449,15 +1449,15 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [78] = {.index = 238, .length = 3}, [79] = {.index = 241, .length = 7}, [80] = {.index = 248, .length = 5}, - [81] = {.index = 253, .length = 2}, - [82] = {.index = 255, .length = 4}, - [83] = {.index = 259, .length = 3}, - [84] = {.index = 262, .length = 2}, - [85] = {.index = 264, .length = 3}, - [86] = {.index = 267, .length = 3}, - [87] = {.index = 270, .length = 1}, - [88] = {.index = 271, .length = 6}, - [89] = {.index = 277, .length = 5}, + [81] = {.index = 253, .length = 5}, + [82] = {.index = 258, .length = 3}, + [83] = {.index = 261, .length = 2}, + [84] = {.index = 263, .length = 4}, + [85] = {.index = 267, .length = 3}, + [86] = {.index = 270, .length = 2}, + [87] = {.index = 272, .length = 3}, + [88] = {.index = 275, .length = 1}, + [89] = {.index = 276, .length = 6}, [90] = {.index = 282, .length = 2}, [91] = {.index = 284, .length = 4}, [92] = {.index = 288, .length = 4}, @@ -1469,17 +1469,17 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [98] = {.index = 314, .length = 3}, [99] = {.index = 317, .length = 5}, [100] = {.index = 322, .length = 5}, - [101] = {.index = 327, .length = 2}, - [102] = {.index = 329, .length = 4}, - [103] = {.index = 333, .length = 4}, - [104] = {.index = 337, .length = 2}, - [105] = {.index = 339, .length = 4}, - [106] = {.index = 343, .length = 3}, - [107] = {.index = 346, .length = 5}, - [108] = {.index = 351, .length = 3}, - [109] = {.index = 354, .length = 2}, - [110] = {.index = 356, .length = 3}, - [111] = {.index = 359, .length = 6}, + [101] = {.index = 327, .length = 6}, + [102] = {.index = 333, .length = 5}, + [103] = {.index = 338, .length = 2}, + [104] = {.index = 340, .length = 4}, + [105] = {.index = 344, .length = 4}, + [106] = {.index = 348, .length = 2}, + [107] = {.index = 350, .length = 4}, + [108] = {.index = 354, .length = 3}, + [109] = {.index = 357, .length = 3}, + [110] = {.index = 360, .length = 2}, + [111] = {.index = 362, .length = 3}, [112] = {.index = 365, .length = 2}, [113] = {.index = 367, .length = 4}, [114] = {.index = 371, .length = 4}, @@ -1487,13 +1487,13 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [116] = {.index = 381, .length = 3}, [117] = {.index = 384, .length = 5}, [118] = {.index = 389, .length = 5}, - [119] = {.index = 394, .length = 2}, - [120] = {.index = 396, .length = 4}, - [121] = {.index = 400, .length = 4}, - [122] = {.index = 404, .length = 2}, - [123] = {.index = 406, .length = 4}, - [124] = {.index = 410, .length = 4}, - [125] = {.index = 414, .length = 6}, + [119] = {.index = 394, .length = 6}, + [120] = {.index = 400, .length = 2}, + [121] = {.index = 402, .length = 4}, + [122] = {.index = 406, .length = 4}, + [123] = {.index = 410, .length = 2}, + [124] = {.index = 412, .length = 4}, + [125] = {.index = 416, .length = 4}, [126] = {.index = 420, .length = 5}, [127] = {.index = 425, .length = 2}, [128] = {.index = 427, .length = 4}, @@ -1796,22 +1796,22 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [188] = {field_open, 2, .inherited = true}, {field_open, 3, .inherited = true}, - [190] = + {field_variable, 2}, + [191] = {field_open, 2, .inherited = true}, {field_open, 3, .inherited = true}, - {field_type, 3}, [193] = + {field_open, 2, .inherited = true}, + {field_open, 3, .inherited = true}, + {field_type, 3}, + [196] = {field_open, 3, .inherited = true}, - [194] = + [197] = {field_open, 1, .inherited = true}, {field_open, 2, .inherited = true}, {field_open, 3, .inherited = true}, {field_type, 2}, {field_variable, 1}, - [199] = - {field_open, 2, .inherited = true}, - {field_open, 3, .inherited = true}, - {field_variable, 2}, [202] = {field_open, 1, .inherited = true}, {field_open, 3, .inherited = true}, @@ -1877,42 +1877,42 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_real, 3}, [253] = {field_open, 2, .inherited = true}, + {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, - [255] = + {field_type, 3}, + {field_variable, 2}, + [258] = + {field_open, 3, .inherited = true}, + {field_open, 4, .inherited = true}, + {field_variable, 3}, + [261] = + {field_open, 2, .inherited = true}, + {field_open, 4, .inherited = true}, + [263] = {field_open, 2, .inherited = true}, {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, {field_type, 3}, - [259] = + [267] = {field_open, 2, .inherited = true}, {field_open, 4, .inherited = true}, {field_type, 4}, - [262] = + [270] = {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, - [264] = + [272] = {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, {field_type, 4}, - [267] = - {field_open, 3, .inherited = true}, + [275] = {field_open, 4, .inherited = true}, - {field_variable, 3}, - [270] = - {field_open, 4, .inherited = true}, - [271] = + [276] = {field_open, 1, .inherited = true}, {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, {field_type, 2}, {field_type, 3}, {field_variable, 1}, - [277] = - {field_open, 2, .inherited = true}, - {field_open, 3, .inherited = true}, - {field_open, 4, .inherited = true}, - {field_type, 3}, - {field_variable, 2}, [282] = {field_open, 1, .inherited = true}, {field_open, 4, .inherited = true}, @@ -1970,54 +1970,54 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_old_meta, 0, .inherited = true}, {field_real, 4}, [327] = + {field_open, 2, .inherited = true}, + {field_open, 4, .inherited = true}, + {field_open, 5, .inherited = true}, + {field_type, 3}, + {field_type, 4}, + {field_variable, 2}, + [333] = + {field_open, 3, .inherited = true}, + {field_open, 4, .inherited = true}, + {field_open, 5, .inherited = true}, + {field_type, 4}, + {field_variable, 3}, + [338] = {field_open, 2, .inherited = true}, {field_open, 5, .inherited = true}, - [329] = + [340] = {field_open, 2, .inherited = true}, {field_open, 3, .inherited = true}, {field_open, 5, .inherited = true}, {field_type, 3}, - [333] = + [344] = {field_open, 2, .inherited = true}, {field_open, 4, .inherited = true}, {field_open, 5, .inherited = true}, {field_type, 4}, - [337] = + [348] = {field_open, 3, .inherited = true}, {field_open, 5, .inherited = true}, - [339] = + [350] = {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, {field_open, 5, .inherited = true}, {field_type, 4}, - [343] = + [354] = {field_open, 3, .inherited = true}, {field_open, 5, .inherited = true}, {field_type, 5}, - [346] = - {field_open, 3, .inherited = true}, - {field_open, 4, .inherited = true}, - {field_open, 5, .inherited = true}, - {field_type, 4}, - {field_variable, 3}, - [351] = + [357] = {field_open, 4, .inherited = true}, {field_open, 5, .inherited = true}, {field_variable, 4}, - [354] = + [360] = {field_open, 4, .inherited = true}, {field_open, 5, .inherited = true}, - [356] = + [362] = {field_open, 4, .inherited = true}, {field_open, 5, .inherited = true}, {field_type, 5}, - [359] = - {field_open, 2, .inherited = true}, - {field_open, 4, .inherited = true}, - {field_open, 5, .inherited = true}, - {field_type, 3}, - {field_type, 4}, - {field_variable, 2}, [365] = {field_open, 1, .inherited = true}, {field_open, 5, .inherited = true}, @@ -2055,38 +2055,38 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_old_meta, 0, .inherited = true}, {field_real, 5}, [394] = + {field_open, 3, .inherited = true}, + {field_open, 5, .inherited = true}, + {field_open, 6, .inherited = true}, + {field_type, 4}, + {field_type, 5}, + {field_variable, 3}, + [400] = {field_open, 2, .inherited = true}, {field_open, 6, .inherited = true}, - [396] = + [402] = {field_open, 2, .inherited = true}, {field_open, 3, .inherited = true}, {field_open, 6, .inherited = true}, {field_type, 3}, - [400] = + [406] = {field_open, 2, .inherited = true}, {field_open, 4, .inherited = true}, {field_open, 6, .inherited = true}, {field_type, 4}, - [404] = + [410] = {field_open, 3, .inherited = true}, {field_open, 6, .inherited = true}, - [406] = + [412] = {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, {field_open, 6, .inherited = true}, {field_type, 4}, - [410] = + [416] = {field_open, 3, .inherited = true}, {field_open, 5, .inherited = true}, {field_open, 6, .inherited = true}, {field_type, 5}, - [414] = - {field_open, 3, .inherited = true}, - {field_open, 5, .inherited = true}, - {field_open, 6, .inherited = true}, - {field_type, 4}, - {field_type, 5}, - {field_variable, 3}, [420] = {field_open, 4, .inherited = true}, {field_open, 5, .inherited = true}, @@ -4436,9 +4436,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n' && lookahead != '\f' && lookahead != '\r' && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')') ADVANCE(308); + lookahead != ' ') ADVANCE(308); END_STATE(); case 245: if (lookahead != 0 && @@ -4924,9 +4922,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n' && lookahead != '\f' && lookahead != '\r' && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')') ADVANCE(308); + lookahead != ' ') ADVANCE(308); END_STATE(); case 309: ACCEPT_TOKEN(sym_nil_lit); @@ -6317,7 +6313,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1] = {.lex_state = 247}, [2] = {.lex_state = 9}, [3] = {.lex_state = 9}, - [4] = {.lex_state = 9}, + [4] = {.lex_state = 11}, [5] = {.lex_state = 9}, [6] = {.lex_state = 9}, [7] = {.lex_state = 9}, @@ -6325,25 +6321,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9] = {.lex_state = 9}, [10] = {.lex_state = 9}, [11] = {.lex_state = 9}, - [12] = {.lex_state = 9}, + [12] = {.lex_state = 11}, [13] = {.lex_state = 9}, [14] = {.lex_state = 9}, - [15] = {.lex_state = 11}, + [15] = {.lex_state = 9}, [16] = {.lex_state = 9}, - [17] = {.lex_state = 9}, + [17] = {.lex_state = 11}, [18] = {.lex_state = 9}, [19] = {.lex_state = 9}, - [20] = {.lex_state = 9}, + [20] = {.lex_state = 11}, [21] = {.lex_state = 9}, [22] = {.lex_state = 9}, - [23] = {.lex_state = 11}, + [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 = 11}, + [30] = {.lex_state = 9}, [31] = {.lex_state = 9}, [32] = {.lex_state = 9}, [33] = {.lex_state = 9}, @@ -6354,7 +6350,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [38] = {.lex_state = 9}, [39] = {.lex_state = 9}, [40] = {.lex_state = 9}, - [41] = {.lex_state = 11}, + [41] = {.lex_state = 9}, [42] = {.lex_state = 11}, [43] = {.lex_state = 11}, [44] = {.lex_state = 11}, @@ -6424,7 +6420,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [108] = {.lex_state = 11}, [109] = {.lex_state = 11}, [110] = {.lex_state = 11}, - [111] = {.lex_state = 16}, + [111] = {.lex_state = 11}, [112] = {.lex_state = 11}, [113] = {.lex_state = 11}, [114] = {.lex_state = 11}, @@ -6437,7 +6433,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [121] = {.lex_state = 11}, [122] = {.lex_state = 11}, [123] = {.lex_state = 11}, - [124] = {.lex_state = 16}, + [124] = {.lex_state = 11}, [125] = {.lex_state = 11}, [126] = {.lex_state = 11}, [127] = {.lex_state = 11}, @@ -6473,7 +6469,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [157] = {.lex_state = 11}, [158] = {.lex_state = 11}, [159] = {.lex_state = 11}, - [160] = {.lex_state = 11}, + [160] = {.lex_state = 16}, [161] = {.lex_state = 11}, [162] = {.lex_state = 11}, [163] = {.lex_state = 11}, @@ -6532,16 +6528,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [216] = {.lex_state = 11}, [217] = {.lex_state = 11}, [218] = {.lex_state = 11}, - [219] = {.lex_state = 11}, + [219] = {.lex_state = 16}, [220] = {.lex_state = 11}, [221] = {.lex_state = 11}, [222] = {.lex_state = 11}, - [223] = {.lex_state = 16}, - [224] = {.lex_state = 16}, + [223] = {.lex_state = 11}, + [224] = {.lex_state = 11}, [225] = {.lex_state = 11}, [226] = {.lex_state = 16}, [227] = {.lex_state = 11}, - [228] = {.lex_state = 11}, + [228] = {.lex_state = 16}, [229] = {.lex_state = 11}, [230] = {.lex_state = 11}, [231] = {.lex_state = 11}, @@ -6553,7 +6549,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [237] = {.lex_state = 11}, [238] = {.lex_state = 11}, [239] = {.lex_state = 11}, - [240] = {.lex_state = 11}, + [240] = {.lex_state = 16}, [241] = {.lex_state = 11}, [242] = {.lex_state = 11}, [243] = {.lex_state = 11}, @@ -6567,41 +6563,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [251] = {.lex_state = 11}, [252] = {.lex_state = 11}, [253] = {.lex_state = 11}, - [254] = {.lex_state = 16}, + [254] = {.lex_state = 11}, [255] = {.lex_state = 11}, - [256] = {.lex_state = 11}, + [256] = {.lex_state = 16}, [257] = {.lex_state = 11}, [258] = {.lex_state = 11}, [259] = {.lex_state = 11}, [260] = {.lex_state = 11}, - [261] = {.lex_state = 11}, - [262] = {.lex_state = 11}, + [261] = {.lex_state = 16}, + [262] = {.lex_state = 16}, [263] = {.lex_state = 11}, [264] = {.lex_state = 11}, [265] = {.lex_state = 11}, - [266] = {.lex_state = 16}, + [266] = {.lex_state = 11}, [267] = {.lex_state = 16}, - [268] = {.lex_state = 16}, - [269] = {.lex_state = 16}, + [268] = {.lex_state = 11}, + [269] = {.lex_state = 11}, [270] = {.lex_state = 16}, [271] = {.lex_state = 16}, - [272] = {.lex_state = 14}, - [273] = {.lex_state = 14}, - [274] = {.lex_state = 14}, - [275] = {.lex_state = 14}, - [276] = {.lex_state = 14}, - [277] = {.lex_state = 14}, - [278] = {.lex_state = 14}, + [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 = 247}, - [283] = {.lex_state = 247}, - [284] = {.lex_state = 247}, - [285] = {.lex_state = 247}, - [286] = {.lex_state = 247}, - [287] = {.lex_state = 247}, - [288] = {.lex_state = 247}, + [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}, @@ -7280,38 +7276,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [964] = {.lex_state = 247}, [965] = {.lex_state = 247}, [966] = {.lex_state = 247}, - [967] = {.lex_state = 17}, - [968] = {.lex_state = 17}, - [969] = {.lex_state = 17}, - [970] = {.lex_state = 17}, - [971] = {.lex_state = 17}, - [972] = {.lex_state = 17}, - [973] = {.lex_state = 17}, - [974] = {.lex_state = 17}, - [975] = {.lex_state = 17}, + [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 = 9}, - [982] = {.lex_state = 11}, - [983] = {.lex_state = 11}, - [984] = {.lex_state = 11}, - [985] = {.lex_state = 11}, - [986] = {.lex_state = 11}, - [987] = {.lex_state = 10}, - [988] = {.lex_state = 9}, - [989] = {.lex_state = 9}, + [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 = 9}, - [992] = {.lex_state = 9}, - [993] = {.lex_state = 9}, - [994] = {.lex_state = 9}, - [995] = {.lex_state = 9}, - [996] = {.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 = 12}, + [998] = {.lex_state = 9}, [999] = {.lex_state = 9}, [1000] = {.lex_state = 9}, [1001] = {.lex_state = 9}, @@ -7423,7 +7419,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1107] = {.lex_state = 9}, [1108] = {.lex_state = 9}, [1109] = {.lex_state = 9}, - [1110] = {.lex_state = 9}, + [1110] = {.lex_state = 12}, [1111] = {.lex_state = 9}, [1112] = {.lex_state = 9}, [1113] = {.lex_state = 9}, @@ -7436,15 +7432,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1120] = {.lex_state = 9}, [1121] = {.lex_state = 9}, [1122] = {.lex_state = 9}, - [1123] = {.lex_state = 11}, - [1124] = {.lex_state = 11}, - [1125] = {.lex_state = 11}, - [1126] = {.lex_state = 11}, - [1127] = {.lex_state = 11}, - [1128] = {.lex_state = 11}, - [1129] = {.lex_state = 11}, - [1130] = {.lex_state = 11}, - [1131] = {.lex_state = 11}, + [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}, @@ -7463,7 +7459,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1147] = {.lex_state = 11}, [1148] = {.lex_state = 11}, [1149] = {.lex_state = 11}, - [1150] = {.lex_state = 11}, + [1150] = {.lex_state = 16}, [1151] = {.lex_state = 11}, [1152] = {.lex_state = 11}, [1153] = {.lex_state = 11}, @@ -7546,7 +7542,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1230] = {.lex_state = 11}, [1231] = {.lex_state = 11}, [1232] = {.lex_state = 11}, - [1233] = {.lex_state = 16}, + [1233] = {.lex_state = 11}, [1234] = {.lex_state = 11}, [1235] = {.lex_state = 11}, [1236] = {.lex_state = 11}, @@ -7559,15 +7555,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1243] = {.lex_state = 11}, [1244] = {.lex_state = 11}, [1245] = {.lex_state = 11}, - [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}, + [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}, @@ -7578,111 +7574,111 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1262] = {.lex_state = 22}, [1263] = {.lex_state = 22}, [1264] = {.lex_state = 22}, - [1265] = {.lex_state = 15}, - [1266] = {.lex_state = 25}, - [1267] = {.lex_state = 16}, - [1268] = {.lex_state = 16}, - [1269] = {.lex_state = 16}, - [1270] = {.lex_state = 16}, - [1271] = {.lex_state = 16}, - [1272] = {.lex_state = 16}, - [1273] = {.lex_state = 16}, - [1274] = {.lex_state = 16}, - [1275] = {.lex_state = 16}, - [1276] = {.lex_state = 16}, - [1277] = {.lex_state = 16}, - [1278] = {.lex_state = 16}, - [1279] = {.lex_state = 16}, - [1280] = {.lex_state = 16}, - [1281] = {.lex_state = 16}, - [1282] = {.lex_state = 16}, - [1283] = {.lex_state = 16}, + [1265] = {.lex_state = 22}, + [1266] = {.lex_state = 22}, + [1267] = {.lex_state = 22}, + [1268] = {.lex_state = 22}, + [1269] = {.lex_state = 22}, + [1270] = {.lex_state = 22}, + [1271] = {.lex_state = 22}, + [1272] = {.lex_state = 22}, + [1273] = {.lex_state = 22}, + [1274] = {.lex_state = 22}, + [1275] = {.lex_state = 22}, + [1276] = {.lex_state = 22}, + [1277] = {.lex_state = 22}, + [1278] = {.lex_state = 22}, + [1279] = {.lex_state = 22}, + [1280] = {.lex_state = 22}, + [1281] = {.lex_state = 22}, + [1282] = {.lex_state = 22}, + [1283] = {.lex_state = 15}, [1284] = {.lex_state = 16}, [1285] = {.lex_state = 16}, - [1286] = {.lex_state = 16}, - [1287] = {.lex_state = 16}, - [1288] = {.lex_state = 16}, - [1289] = {.lex_state = 16}, - [1290] = {.lex_state = 16}, - [1291] = {.lex_state = 16}, - [1292] = {.lex_state = 16}, - [1293] = {.lex_state = 16}, - [1294] = {.lex_state = 16}, - [1295] = {.lex_state = 16}, - [1296] = {.lex_state = 16}, - [1297] = {.lex_state = 16}, - [1298] = {.lex_state = 16}, - [1299] = {.lex_state = 16}, - [1300] = {.lex_state = 16}, - [1301] = {.lex_state = 16}, - [1302] = {.lex_state = 16}, - [1303] = {.lex_state = 16}, - [1304] = {.lex_state = 16}, - [1305] = {.lex_state = 16}, - [1306] = {.lex_state = 16}, - [1307] = {.lex_state = 16}, - [1308] = {.lex_state = 16}, - [1309] = {.lex_state = 16}, - [1310] = {.lex_state = 16}, - [1311] = {.lex_state = 16}, - [1312] = {.lex_state = 16}, - [1313] = {.lex_state = 16}, - [1314] = {.lex_state = 16}, - [1315] = {.lex_state = 16}, - [1316] = {.lex_state = 16}, - [1317] = {.lex_state = 16}, - [1318] = {.lex_state = 16}, - [1319] = {.lex_state = 16}, - [1320] = {.lex_state = 16}, - [1321] = {.lex_state = 16}, - [1322] = {.lex_state = 16}, - [1323] = {.lex_state = 16}, - [1324] = {.lex_state = 16}, - [1325] = {.lex_state = 16}, - [1326] = {.lex_state = 16}, - [1327] = {.lex_state = 16}, - [1328] = {.lex_state = 16}, - [1329] = {.lex_state = 16}, - [1330] = {.lex_state = 16}, - [1331] = {.lex_state = 16}, - [1332] = {.lex_state = 16}, - [1333] = {.lex_state = 16}, - [1334] = {.lex_state = 16}, - [1335] = {.lex_state = 16}, - [1336] = {.lex_state = 16}, - [1337] = {.lex_state = 16}, - [1338] = {.lex_state = 16}, - [1339] = {.lex_state = 16}, - [1340] = {.lex_state = 16}, - [1341] = {.lex_state = 16}, - [1342] = {.lex_state = 16}, - [1343] = {.lex_state = 16}, - [1344] = {.lex_state = 16}, - [1345] = {.lex_state = 16}, - [1346] = {.lex_state = 16}, - [1347] = {.lex_state = 16}, - [1348] = {.lex_state = 16}, - [1349] = {.lex_state = 16}, - [1350] = {.lex_state = 16}, - [1351] = {.lex_state = 16}, - [1352] = {.lex_state = 16}, - [1353] = {.lex_state = 16}, - [1354] = {.lex_state = 16}, - [1355] = {.lex_state = 16}, - [1356] = {.lex_state = 16}, - [1357] = {.lex_state = 16}, - [1358] = {.lex_state = 16}, - [1359] = {.lex_state = 16}, - [1360] = {.lex_state = 16}, - [1361] = {.lex_state = 16}, - [1362] = {.lex_state = 16}, - [1363] = {.lex_state = 16}, - [1364] = {.lex_state = 16}, - [1365] = {.lex_state = 16}, - [1366] = {.lex_state = 16}, + [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 = 25}, [1367] = {.lex_state = 16}, [1368] = {.lex_state = 16}, - [1369] = {.lex_state = 25}, + [1369] = {.lex_state = 16}, [1370] = {.lex_state = 16}, [1371] = {.lex_state = 16}, [1372] = {.lex_state = 16}, @@ -7697,109 +7693,109 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1381] = {.lex_state = 16}, [1382] = {.lex_state = 16}, [1383] = {.lex_state = 16}, - [1384] = {.lex_state = 25}, + [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 = 25}, - [1391] = {.lex_state = 25}, - [1392] = {.lex_state = 25}, - [1393] = {.lex_state = 25}, - [1394] = {.lex_state = 25}, - [1395] = {.lex_state = 25}, - [1396] = {.lex_state = 25}, - [1397] = {.lex_state = 25}, - [1398] = {.lex_state = 25}, - [1399] = {.lex_state = 25}, - [1400] = {.lex_state = 25}, - [1401] = {.lex_state = 25}, - [1402] = {.lex_state = 25}, - [1403] = {.lex_state = 25}, - [1404] = {.lex_state = 25}, - [1405] = {.lex_state = 25}, - [1406] = {.lex_state = 25}, - [1407] = {.lex_state = 25}, - [1408] = {.lex_state = 25}, - [1409] = {.lex_state = 25}, - [1410] = {.lex_state = 25}, - [1411] = {.lex_state = 25}, - [1412] = {.lex_state = 25}, - [1413] = {.lex_state = 25}, - [1414] = {.lex_state = 25}, - [1415] = {.lex_state = 25}, - [1416] = {.lex_state = 25}, - [1417] = {.lex_state = 25}, - [1418] = {.lex_state = 25}, - [1419] = {.lex_state = 25}, - [1420] = {.lex_state = 25}, - [1421] = {.lex_state = 25}, - [1422] = {.lex_state = 25}, - [1423] = {.lex_state = 25}, - [1424] = {.lex_state = 25}, - [1425] = {.lex_state = 25}, - [1426] = {.lex_state = 25}, - [1427] = {.lex_state = 25}, - [1428] = {.lex_state = 25}, - [1429] = {.lex_state = 25}, - [1430] = {.lex_state = 25}, - [1431] = {.lex_state = 25}, - [1432] = {.lex_state = 25}, - [1433] = {.lex_state = 25}, - [1434] = {.lex_state = 25}, - [1435] = {.lex_state = 25}, - [1436] = {.lex_state = 25}, - [1437] = {.lex_state = 25}, - [1438] = {.lex_state = 25}, - [1439] = {.lex_state = 25}, - [1440] = {.lex_state = 25}, - [1441] = {.lex_state = 25}, - [1442] = {.lex_state = 25}, + [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 = 25}, - [1445] = {.lex_state = 25}, - [1446] = {.lex_state = 25}, - [1447] = {.lex_state = 25}, - [1448] = {.lex_state = 25}, - [1449] = {.lex_state = 25}, - [1450] = {.lex_state = 25}, - [1451] = {.lex_state = 25}, - [1452] = {.lex_state = 25}, - [1453] = {.lex_state = 25}, - [1454] = {.lex_state = 25}, - [1455] = {.lex_state = 25}, - [1456] = {.lex_state = 25}, - [1457] = {.lex_state = 25}, - [1458] = {.lex_state = 25}, - [1459] = {.lex_state = 25}, - [1460] = {.lex_state = 25}, - [1461] = {.lex_state = 25}, - [1462] = {.lex_state = 25}, - [1463] = {.lex_state = 25}, - [1464] = {.lex_state = 25}, - [1465] = {.lex_state = 25}, - [1466] = {.lex_state = 25}, - [1467] = {.lex_state = 25}, - [1468] = {.lex_state = 25}, - [1469] = {.lex_state = 22}, - [1470] = {.lex_state = 22}, - [1471] = {.lex_state = 22}, - [1472] = {.lex_state = 22}, - [1473] = {.lex_state = 22}, - [1474] = {.lex_state = 22}, - [1475] = {.lex_state = 22}, - [1476] = {.lex_state = 22}, - [1477] = {.lex_state = 22}, - [1478] = {.lex_state = 22}, - [1479] = {.lex_state = 22}, - [1480] = {.lex_state = 22}, - [1481] = {.lex_state = 22}, - [1482] = {.lex_state = 22}, - [1483] = {.lex_state = 22}, - [1484] = {.lex_state = 22}, - [1485] = {.lex_state = 22}, - [1486] = {.lex_state = 22}, + [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}, @@ -7908,24 +7904,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1592] = {.lex_state = 22}, [1593] = {.lex_state = 22}, [1594] = {.lex_state = 22}, - [1595] = {.lex_state = 14}, - [1596] = {.lex_state = 14}, - [1597] = {.lex_state = 14}, - [1598] = {.lex_state = 14}, - [1599] = {.lex_state = 14}, - [1600] = {.lex_state = 14}, - [1601] = {.lex_state = 14}, - [1602] = {.lex_state = 14}, - [1603] = {.lex_state = 14}, - [1604] = {.lex_state = 14}, - [1605] = {.lex_state = 13}, - [1606] = {.lex_state = 14}, - [1607] = {.lex_state = 14}, - [1608] = {.lex_state = 14}, - [1609] = {.lex_state = 14}, - [1610] = {.lex_state = 14}, - [1611] = {.lex_state = 14}, - [1612] = {.lex_state = 14}, + [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}, @@ -7936,7 +7932,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1620] = {.lex_state = 14}, [1621] = {.lex_state = 14}, [1622] = {.lex_state = 14}, - [1623] = {.lex_state = 14}, + [1623] = {.lex_state = 13}, [1624] = {.lex_state = 14}, [1625] = {.lex_state = 14}, [1626] = {.lex_state = 14}, @@ -8041,45 +8037,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1725] = {.lex_state = 14}, [1726] = {.lex_state = 14}, [1727] = {.lex_state = 14}, - [1728] = {.lex_state = 1}, - [1729] = {.lex_state = 1}, - [1730] = {.lex_state = 1}, - [1731] = {.lex_state = 1}, - [1732] = {.lex_state = 1}, - [1733] = {.lex_state = 1}, - [1734] = {.lex_state = 1}, - [1735] = {.lex_state = 1}, - [1736] = {.lex_state = 1}, - [1737] = {.lex_state = 1}, - [1738] = {.lex_state = 1}, - [1739] = {.lex_state = 1}, - [1740] = {.lex_state = 1}, - [1741] = {.lex_state = 1}, - [1742] = {.lex_state = 1}, - [1743] = {.lex_state = 1}, - [1744] = {.lex_state = 1}, - [1745] = {.lex_state = 1}, + [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 = 247}, - [1750] = {.lex_state = 247}, - [1751] = {.lex_state = 247}, - [1752] = {.lex_state = 247}, - [1753] = {.lex_state = 247}, - [1754] = {.lex_state = 247}, - [1755] = {.lex_state = 247}, - [1756] = {.lex_state = 248}, - [1757] = {.lex_state = 247}, - [1758] = {.lex_state = 247}, - [1759] = {.lex_state = 247}, - [1760] = {.lex_state = 247}, - [1761] = {.lex_state = 247}, - [1762] = {.lex_state = 247}, - [1763] = {.lex_state = 247}, - [1764] = {.lex_state = 247}, - [1765] = {.lex_state = 247}, - [1766] = {.lex_state = 247}, + [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}, @@ -8185,24 +8181,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1869] = {.lex_state = 247}, [1870] = {.lex_state = 247}, [1871] = {.lex_state = 247}, - [1872] = {.lex_state = 28}, - [1873] = {.lex_state = 28}, - [1874] = {.lex_state = 28}, - [1875] = {.lex_state = 28}, - [1876] = {.lex_state = 28}, - [1877] = {.lex_state = 28}, - [1878] = {.lex_state = 28}, - [1879] = {.lex_state = 28}, - [1880] = {.lex_state = 28}, - [1881] = {.lex_state = 28}, - [1882] = {.lex_state = 28}, - [1883] = {.lex_state = 28}, - [1884] = {.lex_state = 28}, - [1885] = {.lex_state = 28}, - [1886] = {.lex_state = 28}, - [1887] = {.lex_state = 28}, - [1888] = {.lex_state = 28}, - [1889] = {.lex_state = 28}, + [1872] = {.lex_state = 247}, + [1873] = {.lex_state = 247}, + [1874] = {.lex_state = 247}, + [1875] = {.lex_state = 247}, + [1876] = {.lex_state = 247}, + [1877] = {.lex_state = 247}, + [1878] = {.lex_state = 247}, + [1879] = {.lex_state = 248}, + [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}, @@ -8221,7 +8217,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1905] = {.lex_state = 28}, [1906] = {.lex_state = 28}, [1907] = {.lex_state = 28}, - [1908] = {.lex_state = 28}, + [1908] = {.lex_state = 247}, [1909] = {.lex_state = 28}, [1910] = {.lex_state = 28}, [1911] = {.lex_state = 28}, @@ -8264,7 +8260,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1948] = {.lex_state = 28}, [1949] = {.lex_state = 28}, [1950] = {.lex_state = 28}, - [1951] = {.lex_state = 247}, + [1951] = {.lex_state = 28}, [1952] = {.lex_state = 28}, [1953] = {.lex_state = 28}, [1954] = {.lex_state = 28}, @@ -8279,24 +8275,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1963] = {.lex_state = 28}, [1964] = {.lex_state = 28}, [1965] = {.lex_state = 28}, - [1966] = {.lex_state = 247}, - [1967] = {.lex_state = 247}, - [1968] = {.lex_state = 247}, - [1969] = {.lex_state = 247}, - [1970] = {.lex_state = 247}, - [1971] = {.lex_state = 247}, - [1972] = {.lex_state = 247}, - [1973] = {.lex_state = 247}, - [1974] = {.lex_state = 247}, - [1975] = {.lex_state = 247}, - [1976] = {.lex_state = 247}, - [1977] = {.lex_state = 247}, - [1978] = {.lex_state = 247}, - [1979] = {.lex_state = 247}, - [1980] = {.lex_state = 247}, - [1981] = {.lex_state = 247}, - [1982] = {.lex_state = 247}, - [1983] = {.lex_state = 247}, + [1966] = {.lex_state = 28}, + [1967] = {.lex_state = 28}, + [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 = 28}, + [1979] = {.lex_state = 28}, + [1980] = {.lex_state = 28}, + [1981] = {.lex_state = 28}, + [1982] = {.lex_state = 28}, + [1983] = {.lex_state = 28}, [1984] = {.lex_state = 247}, [1985] = {.lex_state = 247}, [1986] = {.lex_state = 247}, @@ -8330,38 +8326,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2014] = {.lex_state = 247}, [2015] = {.lex_state = 247}, [2016] = {.lex_state = 247}, - [2017] = {.lex_state = 1}, + [2017] = {.lex_state = 247}, [2018] = {.lex_state = 247}, [2019] = {.lex_state = 247}, [2020] = {.lex_state = 247}, - [2021] = {.lex_state = 25}, + [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 = 25}, + [2028] = {.lex_state = 247}, [2029] = {.lex_state = 247}, [2030] = {.lex_state = 247}, - [2031] = {.lex_state = 25}, - [2032] = {.lex_state = 25}, - [2033] = {.lex_state = 25}, - [2034] = {.lex_state = 25}, - [2035] = {.lex_state = 25}, - [2036] = {.lex_state = 25}, - [2037] = {.lex_state = 25}, - [2038] = {.lex_state = 25}, - [2039] = {.lex_state = 25}, - [2040] = {.lex_state = 25}, - [2041] = {.lex_state = 25}, - [2042] = {.lex_state = 25}, - [2043] = {.lex_state = 25}, + [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 = 247}, + [2038] = {.lex_state = 1}, + [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}, + [2045] = {.lex_state = 247}, + [2046] = {.lex_state = 247}, [2047] = {.lex_state = 25}, - [2048] = {.lex_state = 25}, + [2048] = {.lex_state = 247}, [2049] = {.lex_state = 25}, [2050] = {.lex_state = 25}, [2051] = {.lex_state = 25}, @@ -8948,7 +8944,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2632] = {.lex_state = 25}, [2633] = {.lex_state = 25}, [2634] = {.lex_state = 25}, - [2635] = {.lex_state = 1}, + [2635] = {.lex_state = 25}, [2636] = {.lex_state = 25}, [2637] = {.lex_state = 25}, [2638] = {.lex_state = 25}, @@ -8967,15 +8963,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2651] = {.lex_state = 25}, [2652] = {.lex_state = 25}, [2653] = {.lex_state = 25}, - [2654] = {.lex_state = 25}, + [2654] = {.lex_state = 1}, [2655] = {.lex_state = 25}, [2656] = {.lex_state = 25}, [2657] = {.lex_state = 25}, [2658] = {.lex_state = 25}, [2659] = {.lex_state = 25}, - [2660] = {.lex_state = 28}, + [2660] = {.lex_state = 25}, [2661] = {.lex_state = 25}, - [2662] = {.lex_state = 28}, + [2662] = {.lex_state = 25}, [2663] = {.lex_state = 25}, [2664] = {.lex_state = 25}, [2665] = {.lex_state = 25}, @@ -8992,93 +8988,93 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2676] = {.lex_state = 25}, [2677] = {.lex_state = 25}, [2678] = {.lex_state = 25}, - [2679] = {.lex_state = 25}, - [2680] = {.lex_state = 25}, + [2679] = {.lex_state = 28}, + [2680] = {.lex_state = 28}, [2681] = {.lex_state = 28}, - [2682] = {.lex_state = 28}, + [2682] = {.lex_state = 25}, [2683] = {.lex_state = 28}, [2684] = {.lex_state = 25}, [2685] = {.lex_state = 25}, - [2686] = {.lex_state = 28}, + [2686] = {.lex_state = 25}, [2687] = {.lex_state = 25}, - [2688] = {.lex_state = 25}, + [2688] = {.lex_state = 28}, [2689] = {.lex_state = 25}, [2690] = {.lex_state = 25}, [2691] = {.lex_state = 25}, [2692] = {.lex_state = 25}, [2693] = {.lex_state = 25}, - [2694] = {.lex_state = 28}, + [2694] = {.lex_state = 25}, [2695] = {.lex_state = 25}, - [2696] = {.lex_state = 28}, + [2696] = {.lex_state = 25}, [2697] = {.lex_state = 25}, [2698] = {.lex_state = 25}, [2699] = {.lex_state = 25}, [2700] = {.lex_state = 25}, - [2701] = {.lex_state = 25}, + [2701] = {.lex_state = 1}, [2702] = {.lex_state = 25}, [2703] = {.lex_state = 25}, - [2704] = {.lex_state = 25}, - [2705] = {.lex_state = 28}, - [2706] = {.lex_state = 25}, + [2704] = {.lex_state = 28}, + [2705] = {.lex_state = 25}, + [2706] = {.lex_state = 28}, [2707] = {.lex_state = 25}, - [2708] = {.lex_state = 1}, - [2709] = {.lex_state = 28}, + [2708] = {.lex_state = 25}, + [2709] = {.lex_state = 25}, [2710] = {.lex_state = 25}, [2711] = {.lex_state = 25}, [2712] = {.lex_state = 25}, [2713] = {.lex_state = 25}, - [2714] = {.lex_state = 1}, + [2714] = {.lex_state = 25}, [2715] = {.lex_state = 25}, [2716] = {.lex_state = 25}, [2717] = {.lex_state = 28}, [2718] = {.lex_state = 28}, [2719] = {.lex_state = 25}, - [2720] = {.lex_state = 25}, + [2720] = {.lex_state = 28}, [2721] = {.lex_state = 25}, - [2722] = {.lex_state = 25}, + [2722] = {.lex_state = 1}, [2723] = {.lex_state = 25}, [2724] = {.lex_state = 25}, [2725] = {.lex_state = 25}, - [2726] = {.lex_state = 28}, - [2727] = {.lex_state = 1}, + [2726] = {.lex_state = 25}, + [2727] = {.lex_state = 28}, [2728] = {.lex_state = 28}, - [2729] = {.lex_state = 1}, - [2730] = {.lex_state = 20}, - [2731] = {.lex_state = 20}, - [2732] = {.lex_state = 20}, - [2733] = {.lex_state = 20}, - [2734] = {.lex_state = 20}, - [2735] = {.lex_state = 20}, - [2736] = {.lex_state = 20}, - [2737] = {.lex_state = 20}, - [2738] = {.lex_state = 20}, - [2739] = {.lex_state = 20}, - [2740] = {.lex_state = 20}, - [2741] = {.lex_state = 20}, - [2742] = {.lex_state = 28}, + [2729] = {.lex_state = 25}, + [2730] = {.lex_state = 25}, + [2731] = {.lex_state = 28}, + [2732] = {.lex_state = 28}, + [2733] = {.lex_state = 25}, + [2734] = {.lex_state = 25}, + [2735] = {.lex_state = 25}, + [2736] = {.lex_state = 25}, + [2737] = {.lex_state = 28}, + [2738] = {.lex_state = 25}, + [2739] = {.lex_state = 25}, + [2740] = {.lex_state = 25}, + [2741] = {.lex_state = 25}, + [2742] = {.lex_state = 25}, [2743] = {.lex_state = 28}, [2744] = {.lex_state = 28}, [2745] = {.lex_state = 28}, - [2746] = {.lex_state = 28}, - [2747] = {.lex_state = 28}, - [2748] = {.lex_state = 28}, - [2749] = {.lex_state = 28}, + [2746] = {.lex_state = 25}, + [2747] = {.lex_state = 25}, + [2748] = {.lex_state = 25}, + [2749] = {.lex_state = 25}, [2750] = {.lex_state = 28}, - [2751] = {.lex_state = 28}, - [2752] = {.lex_state = 28}, + [2751] = {.lex_state = 1}, + [2752] = {.lex_state = 1}, [2753] = {.lex_state = 28}, - [2754] = {.lex_state = 28}, - [2755] = {.lex_state = 28}, - [2756] = {.lex_state = 28}, - [2757] = {.lex_state = 28}, - [2758] = {.lex_state = 28}, - [2759] = {.lex_state = 28}, - [2760] = {.lex_state = 28}, - [2761] = {.lex_state = 28}, - [2762] = {.lex_state = 28}, - [2763] = {.lex_state = 28}, - [2764] = {.lex_state = 28}, - [2765] = {.lex_state = 28}, + [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 = 20}, + [2763] = {.lex_state = 20}, + [2764] = {.lex_state = 20}, + [2765] = {.lex_state = 20}, [2766] = {.lex_state = 28}, [2767] = {.lex_state = 28}, [2768] = {.lex_state = 28}, @@ -9086,128 +9082,128 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2770] = {.lex_state = 28}, [2771] = {.lex_state = 28}, [2772] = {.lex_state = 28}, - [2773] = {.lex_state = 18}, - [2774] = {.lex_state = 18}, - [2775] = {.lex_state = 29}, - [2776] = {.lex_state = 18}, - [2777] = {.lex_state = 18}, - [2778] = {.lex_state = 18}, - [2779] = {.lex_state = 18}, - [2780] = {.lex_state = 18}, - [2781] = {.lex_state = 29}, - [2782] = {.lex_state = 18}, - [2783] = {.lex_state = 18}, - [2784] = {.lex_state = 18}, - [2785] = {.lex_state = 29}, - [2786] = {.lex_state = 18}, - [2787] = {.lex_state = 18}, - [2788] = {.lex_state = 18}, - [2789] = {.lex_state = 29}, - [2790] = {.lex_state = 18}, - [2791] = {.lex_state = 29}, - [2792] = {.lex_state = 29}, - [2793] = {.lex_state = 18}, - [2794] = {.lex_state = 18}, - [2795] = {.lex_state = 29}, - [2796] = {.lex_state = 29}, - [2797] = {.lex_state = 18}, - [2798] = {.lex_state = 29}, + [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 = 29}, + [2798] = {.lex_state = 18}, [2799] = {.lex_state = 18}, [2800] = {.lex_state = 18}, [2801] = {.lex_state = 18}, [2802] = {.lex_state = 18}, - [2803] = {.lex_state = 18}, + [2803] = {.lex_state = 29}, [2804] = {.lex_state = 29}, [2805] = {.lex_state = 18}, - [2806] = {.lex_state = 29}, + [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 = 22}, - [2814] = {.lex_state = 22}, - [2815] = {.lex_state = 28}, - [2816] = {.lex_state = 28}, - [2817] = {.lex_state = 28}, - [2818] = {.lex_state = 22}, - [2819] = {.lex_state = 22}, - [2820] = {.lex_state = 28}, - [2821] = {.lex_state = 22}, - [2822] = {.lex_state = 22}, - [2823] = {.lex_state = 25}, - [2824] = {.lex_state = 22}, - [2825] = {.lex_state = 22}, - [2826] = {.lex_state = 29}, - [2827] = {.lex_state = 22}, - [2828] = {.lex_state = 28}, - [2829] = {.lex_state = 22}, - [2830] = {.lex_state = 29}, - [2831] = {.lex_state = 22}, - [2832] = {.lex_state = 22}, - [2833] = {.lex_state = 22}, - [2834] = {.lex_state = 22}, - [2835] = {.lex_state = 22}, - [2836] = {.lex_state = 22}, + [2810] = {.lex_state = 18}, + [2811] = {.lex_state = 29}, + [2812] = {.lex_state = 18}, + [2813] = {.lex_state = 18}, + [2814] = {.lex_state = 18}, + [2815] = {.lex_state = 18}, + [2816] = {.lex_state = 29}, + [2817] = {.lex_state = 29}, + [2818] = {.lex_state = 18}, + [2819] = {.lex_state = 18}, + [2820] = {.lex_state = 18}, + [2821] = {.lex_state = 29}, + [2822] = {.lex_state = 29}, + [2823] = {.lex_state = 18}, + [2824] = {.lex_state = 18}, + [2825] = {.lex_state = 29}, + [2826] = {.lex_state = 18}, + [2827] = {.lex_state = 29}, + [2828] = {.lex_state = 18}, + [2829] = {.lex_state = 18}, + [2830] = {.lex_state = 18}, + [2831] = {.lex_state = 29}, + [2832] = {.lex_state = 18}, + [2833] = {.lex_state = 29}, + [2834] = {.lex_state = 29}, + [2835] = {.lex_state = 18}, + [2836] = {.lex_state = 18}, [2837] = {.lex_state = 22}, [2838] = {.lex_state = 22}, - [2839] = {.lex_state = 28}, + [2839] = {.lex_state = 22}, [2840] = {.lex_state = 28}, - [2841] = {.lex_state = 28}, - [2842] = {.lex_state = 28}, - [2843] = {.lex_state = 28}, - [2844] = {.lex_state = 28}, - [2845] = {.lex_state = 28}, - [2846] = {.lex_state = 28}, - [2847] = {.lex_state = 27}, - [2848] = {.lex_state = 28}, - [2849] = {.lex_state = 29}, + [2841] = {.lex_state = 29}, + [2842] = {.lex_state = 22}, + [2843] = {.lex_state = 22}, + [2844] = {.lex_state = 22}, + [2845] = {.lex_state = 22}, + [2846] = {.lex_state = 25}, + [2847] = {.lex_state = 29}, + [2848] = {.lex_state = 22}, + [2849] = {.lex_state = 22}, [2850] = {.lex_state = 28}, [2851] = {.lex_state = 28}, [2852] = {.lex_state = 28}, - [2853] = {.lex_state = 28}, - [2854] = {.lex_state = 25}, - [2855] = {.lex_state = 22}, + [2853] = {.lex_state = 22}, + [2854] = {.lex_state = 22}, + [2855] = {.lex_state = 25}, [2856] = {.lex_state = 22}, [2857] = {.lex_state = 22}, - [2858] = {.lex_state = 22}, + [2858] = {.lex_state = 28}, [2859] = {.lex_state = 22}, [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 = 22}, - [2867] = {.lex_state = 29}, - [2868] = {.lex_state = 247}, - [2869] = {.lex_state = 20}, - [2870] = {.lex_state = 19}, - [2871] = {.lex_state = 20}, - [2872] = {.lex_state = 20}, - [2873] = {.lex_state = 20}, - [2874] = {.lex_state = 20}, - [2875] = {.lex_state = 20}, - [2876] = {.lex_state = 20}, - [2877] = {.lex_state = 20}, - [2878] = {.lex_state = 20}, - [2879] = {.lex_state = 20}, - [2880] = {.lex_state = 20}, - [2881] = {.lex_state = 20}, - [2882] = {.lex_state = 20}, - [2883] = {.lex_state = 20}, - [2884] = {.lex_state = 20}, - [2885] = {.lex_state = 20}, - [2886] = {.lex_state = 20}, - [2887] = {.lex_state = 20}, - [2888] = {.lex_state = 20}, - [2889] = {.lex_state = 20}, - [2890] = {.lex_state = 20}, + [2864] = {.lex_state = 28}, + [2865] = {.lex_state = 28}, + [2866] = {.lex_state = 28}, + [2867] = {.lex_state = 28}, + [2868] = {.lex_state = 29}, + [2869] = {.lex_state = 28}, + [2870] = {.lex_state = 28}, + [2871] = {.lex_state = 28}, + [2872] = {.lex_state = 27}, + [2873] = {.lex_state = 28}, + [2874] = {.lex_state = 28}, + [2875] = {.lex_state = 28}, + [2876] = {.lex_state = 28}, + [2877] = {.lex_state = 28}, + [2878] = {.lex_state = 28}, + [2879] = {.lex_state = 22}, + [2880] = {.lex_state = 22}, + [2881] = {.lex_state = 22}, + [2882] = {.lex_state = 22}, + [2883] = {.lex_state = 22}, + [2884] = {.lex_state = 22}, + [2885] = {.lex_state = 22}, + [2886] = {.lex_state = 22}, + [2887] = {.lex_state = 22}, + [2888] = {.lex_state = 22}, + [2889] = {.lex_state = 22}, + [2890] = {.lex_state = 22}, [2891] = {.lex_state = 20}, - [2892] = {.lex_state = 20}, - [2893] = {.lex_state = 20}, - [2894] = {.lex_state = 20}, + [2892] = {.lex_state = 29}, + [2893] = {.lex_state = 19}, + [2894] = {.lex_state = 247}, [2895] = {.lex_state = 20}, [2896] = {.lex_state = 20}, [2897] = {.lex_state = 20}, @@ -9216,27 +9212,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2900] = {.lex_state = 20}, [2901] = {.lex_state = 20}, [2902] = {.lex_state = 20}, - [2903] = {.lex_state = 20}, + [2903] = {.lex_state = 1}, [2904] = {.lex_state = 20}, [2905] = {.lex_state = 20}, [2906] = {.lex_state = 20}, - [2907] = {.lex_state = 20}, + [2907] = {.lex_state = 247}, [2908] = {.lex_state = 20}, [2909] = {.lex_state = 20}, [2910] = {.lex_state = 20}, - [2911] = {.lex_state = 20}, + [2911] = {.lex_state = 1}, [2912] = {.lex_state = 20}, - [2913] = {.lex_state = 20}, - [2914] = {.lex_state = 20}, - [2915] = {.lex_state = 20}, + [2913] = {.lex_state = 247}, + [2914] = {.lex_state = 247}, + [2915] = {.lex_state = 247}, [2916] = {.lex_state = 20}, [2917] = {.lex_state = 20}, [2918] = {.lex_state = 20}, - [2919] = {.lex_state = 247}, - [2920] = {.lex_state = 20}, + [2919] = {.lex_state = 20}, + [2920] = {.lex_state = 1}, [2921] = {.lex_state = 20}, [2922] = {.lex_state = 20}, - [2923] = {.lex_state = 247}, + [2923] = {.lex_state = 20}, [2924] = {.lex_state = 20}, [2925] = {.lex_state = 20}, [2926] = {.lex_state = 20}, @@ -9251,7 +9247,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2935] = {.lex_state = 20}, [2936] = {.lex_state = 20}, [2937] = {.lex_state = 20}, - [2938] = {.lex_state = 1}, + [2938] = {.lex_state = 20}, [2939] = {.lex_state = 20}, [2940] = {.lex_state = 20}, [2941] = {.lex_state = 20}, @@ -9263,11 +9259,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2947] = {.lex_state = 20}, [2948] = {.lex_state = 20}, [2949] = {.lex_state = 20}, - [2950] = {.lex_state = 247}, + [2950] = {.lex_state = 20}, [2951] = {.lex_state = 20}, - [2952] = {.lex_state = 1}, + [2952] = {.lex_state = 20}, [2953] = {.lex_state = 20}, - [2954] = {.lex_state = 247}, + [2954] = {.lex_state = 20}, [2955] = {.lex_state = 20}, [2956] = {.lex_state = 20}, [2957] = {.lex_state = 20}, @@ -9281,147 +9277,147 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2965] = {.lex_state = 20}, [2966] = {.lex_state = 20}, [2967] = {.lex_state = 20}, - [2968] = {.lex_state = 1}, + [2968] = {.lex_state = 20}, [2969] = {.lex_state = 20}, [2970] = {.lex_state = 20}, [2971] = {.lex_state = 20}, - [2972] = {.lex_state = 27}, - [2973] = {.lex_state = 247}, - [2974] = {.lex_state = 247}, - [2975] = {.lex_state = 247}, - [2976] = {.lex_state = 247}, - [2977] = {.lex_state = 247}, - [2978] = {.lex_state = 247}, - [2979] = {.lex_state = 25}, - [2980] = {.lex_state = 247}, - [2981] = {.lex_state = 25}, - [2982] = {.lex_state = 25}, - [2983] = {.lex_state = 247}, - [2984] = {.lex_state = 25}, - [2985] = {.lex_state = 247}, - [2986] = {.lex_state = 247}, - [2987] = {.lex_state = 247}, - [2988] = {.lex_state = 247}, - [2989] = {.lex_state = 247}, - [2990] = {.lex_state = 247}, - [2991] = {.lex_state = 25}, - [2992] = {.lex_state = 25}, - [2993] = {.lex_state = 247}, - [2994] = {.lex_state = 247}, - [2995] = {.lex_state = 247}, - [2996] = {.lex_state = 247}, + [2972] = {.lex_state = 20}, + [2973] = {.lex_state = 20}, + [2974] = {.lex_state = 20}, + [2975] = {.lex_state = 20}, + [2976] = {.lex_state = 20}, + [2977] = {.lex_state = 20}, + [2978] = {.lex_state = 20}, + [2979] = {.lex_state = 20}, + [2980] = {.lex_state = 20}, + [2981] = {.lex_state = 20}, + [2982] = {.lex_state = 20}, + [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 = 27}, [2997] = {.lex_state = 247}, - [2998] = {.lex_state = 247}, - [2999] = {.lex_state = 247}, + [2998] = {.lex_state = 25}, + [2999] = {.lex_state = 25}, [3000] = {.lex_state = 247}, [3001] = {.lex_state = 247}, [3002] = {.lex_state = 247}, - [3003] = {.lex_state = 25}, + [3003] = {.lex_state = 247}, [3004] = {.lex_state = 247}, [3005] = {.lex_state = 25}, - [3006] = {.lex_state = 247}, - [3007] = {.lex_state = 20}, - [3008] = {.lex_state = 25}, + [3006] = {.lex_state = 20}, + [3007] = {.lex_state = 247}, + [3008] = {.lex_state = 247}, [3009] = {.lex_state = 247}, - [3010] = {.lex_state = 25}, - [3011] = {.lex_state = 247}, + [3010] = {.lex_state = 247}, + [3011] = {.lex_state = 20}, [3012] = {.lex_state = 247}, [3013] = {.lex_state = 25}, - [3014] = {.lex_state = 25}, + [3014] = {.lex_state = 247}, [3015] = {.lex_state = 25}, [3016] = {.lex_state = 247}, - [3017] = {.lex_state = 247}, - [3018] = {.lex_state = 20}, - [3019] = {.lex_state = 20}, - [3020] = {.lex_state = 247}, + [3017] = {.lex_state = 20}, + [3018] = {.lex_state = 247}, + [3019] = {.lex_state = 247}, + [3020] = {.lex_state = 25}, [3021] = {.lex_state = 247}, - [3022] = {.lex_state = 247}, + [3022] = {.lex_state = 25}, [3023] = {.lex_state = 247}, [3024] = {.lex_state = 247}, [3025] = {.lex_state = 247}, - [3026] = {.lex_state = 20}, - [3027] = {.lex_state = 20}, + [3026] = {.lex_state = 247}, + [3027] = {.lex_state = 247}, [3028] = {.lex_state = 247}, [3029] = {.lex_state = 247}, - [3030] = {.lex_state = 20}, - [3031] = {.lex_state = 20}, - [3032] = {.lex_state = 20}, + [3030] = {.lex_state = 247}, + [3031] = {.lex_state = 247}, + [3032] = {.lex_state = 25}, [3033] = {.lex_state = 247}, - [3034] = {.lex_state = 20}, + [3034] = {.lex_state = 247}, [3035] = {.lex_state = 247}, - [3036] = {.lex_state = 20}, - [3037] = {.lex_state = 20}, - [3038] = {.lex_state = 20}, - [3039] = {.lex_state = 20}, + [3036] = {.lex_state = 247}, + [3037] = {.lex_state = 247}, + [3038] = {.lex_state = 25}, + [3039] = {.lex_state = 247}, [3040] = {.lex_state = 247}, - [3041] = {.lex_state = 20}, - [3042] = {.lex_state = 20}, - [3043] = {.lex_state = 20}, - [3044] = {.lex_state = 25}, - [3045] = {.lex_state = 20}, - [3046] = {.lex_state = 20}, - [3047] = {.lex_state = 20}, - [3048] = {.lex_state = 20}, - [3049] = {.lex_state = 20}, - [3050] = {.lex_state = 22}, - [3051] = {.lex_state = 247}, + [3041] = {.lex_state = 25}, + [3042] = {.lex_state = 247}, + [3043] = {.lex_state = 25}, + [3044] = {.lex_state = 247}, + [3045] = {.lex_state = 25}, + [3046] = {.lex_state = 25}, + [3047] = {.lex_state = 247}, + [3048] = {.lex_state = 247}, + [3049] = {.lex_state = 247}, + [3050] = {.lex_state = 20}, + [3051] = {.lex_state = 20}, [3052] = {.lex_state = 20}, [3053] = {.lex_state = 20}, - [3054] = {.lex_state = 1}, + [3054] = {.lex_state = 20}, [3055] = {.lex_state = 20}, - [3056] = {.lex_state = 247}, + [3056] = {.lex_state = 20}, [3057] = {.lex_state = 20}, - [3058] = {.lex_state = 20}, - [3059] = {.lex_state = 1}, - [3060] = {.lex_state = 20}, + [3058] = {.lex_state = 247}, + [3059] = {.lex_state = 247}, + [3060] = {.lex_state = 247}, [3061] = {.lex_state = 20}, - [3062] = {.lex_state = 247}, - [3063] = {.lex_state = 247}, + [3062] = {.lex_state = 20}, + [3063] = {.lex_state = 20}, [3064] = {.lex_state = 20}, - [3065] = {.lex_state = 247}, + [3065] = {.lex_state = 1}, [3066] = {.lex_state = 20}, [3067] = {.lex_state = 20}, - [3068] = {.lex_state = 247}, + [3068] = {.lex_state = 20}, [3069] = {.lex_state = 20}, - [3070] = {.lex_state = 247}, - [3071] = {.lex_state = 25}, - [3072] = {.lex_state = 247}, + [3070] = {.lex_state = 20}, + [3071] = {.lex_state = 20}, + [3072] = {.lex_state = 20}, [3073] = {.lex_state = 247}, - [3074] = {.lex_state = 25}, - [3075] = {.lex_state = 25}, - [3076] = {.lex_state = 25}, - [3077] = {.lex_state = 25}, - [3078] = {.lex_state = 25}, - [3079] = {.lex_state = 25}, - [3080] = {.lex_state = 25}, - [3081] = {.lex_state = 25}, - [3082] = {.lex_state = 25}, - [3083] = {.lex_state = 25}, - [3084] = {.lex_state = 25}, - [3085] = {.lex_state = 25}, + [3074] = {.lex_state = 20}, + [3075] = {.lex_state = 22}, + [3076] = {.lex_state = 247}, + [3077] = {.lex_state = 247}, + [3078] = {.lex_state = 247}, + [3079] = {.lex_state = 20}, + [3080] = {.lex_state = 20}, + [3081] = {.lex_state = 20}, + [3082] = {.lex_state = 20}, + [3083] = {.lex_state = 247}, + [3084] = {.lex_state = 247}, + [3085] = {.lex_state = 20}, [3086] = {.lex_state = 25}, - [3087] = {.lex_state = 25}, - [3088] = {.lex_state = 25}, - [3089] = {.lex_state = 25}, - [3090] = {.lex_state = 25}, - [3091] = {.lex_state = 25}, - [3092] = {.lex_state = 25}, - [3093] = {.lex_state = 25}, - [3094] = {.lex_state = 25}, + [3087] = {.lex_state = 247}, + [3088] = {.lex_state = 20}, + [3089] = {.lex_state = 247}, + [3090] = {.lex_state = 20}, + [3091] = {.lex_state = 247}, + [3092] = {.lex_state = 20}, + [3093] = {.lex_state = 20}, + [3094] = {.lex_state = 1}, [3095] = {.lex_state = 25}, - [3096] = {.lex_state = 25}, - [3097] = {.lex_state = 25}, + [3096] = {.lex_state = 247}, + [3097] = {.lex_state = 247}, [3098] = {.lex_state = 25}, [3099] = {.lex_state = 25}, - [3100] = {.lex_state = 25}, - [3101] = {.lex_state = 25}, - [3102] = {.lex_state = 25}, - [3103] = {.lex_state = 25}, - [3104] = {.lex_state = 25}, - [3105] = {.lex_state = 25}, - [3106] = {.lex_state = 25}, - [3107] = {.lex_state = 25}, - [3108] = {.lex_state = 25}, + [3100] = {.lex_state = 30}, + [3101] = {.lex_state = 247}, + [3102] = {.lex_state = 247}, + [3103] = {.lex_state = 247}, + [3104] = {.lex_state = 247}, + [3105] = {.lex_state = 247}, + [3106] = {.lex_state = 247}, + [3107] = {.lex_state = 247}, + [3108] = {.lex_state = 247}, [3109] = {.lex_state = 25}, [3110] = {.lex_state = 25}, [3111] = {.lex_state = 25}, @@ -9529,7 +9525,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3213] = {.lex_state = 25}, [3214] = {.lex_state = 25}, [3215] = {.lex_state = 25}, - [3216] = {.lex_state = 30}, + [3216] = {.lex_state = 25}, [3217] = {.lex_state = 25}, [3218] = {.lex_state = 25}, [3219] = {.lex_state = 25}, @@ -9551,7 +9547,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3235] = {.lex_state = 25}, [3236] = {.lex_state = 25}, [3237] = {.lex_state = 25}, - [3238] = {.lex_state = 247}, + [3238] = {.lex_state = 25}, [3239] = {.lex_state = 25}, [3240] = {.lex_state = 25}, [3241] = {.lex_state = 25}, @@ -9617,7 +9613,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3301] = {.lex_state = 25}, [3302] = {.lex_state = 25}, [3303] = {.lex_state = 25}, - [3304] = {.lex_state = 247}, + [3304] = {.lex_state = 25}, [3305] = {.lex_state = 25}, [3306] = {.lex_state = 25}, [3307] = {.lex_state = 25}, @@ -9635,7 +9631,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3319] = {.lex_state = 25}, [3320] = {.lex_state = 25}, [3321] = {.lex_state = 25}, - [3322] = {.lex_state = 247}, + [3322] = {.lex_state = 25}, [3323] = {.lex_state = 25}, [3324] = {.lex_state = 25}, [3325] = {.lex_state = 25}, @@ -9668,11 +9664,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3352] = {.lex_state = 25}, [3353] = {.lex_state = 25}, [3354] = {.lex_state = 25}, - [3355] = {.lex_state = 247}, + [3355] = {.lex_state = 25}, [3356] = {.lex_state = 25}, - [3357] = {.lex_state = 30}, + [3357] = {.lex_state = 25}, [3358] = {.lex_state = 25}, - [3359] = {.lex_state = 247}, + [3359] = {.lex_state = 25}, [3360] = {.lex_state = 25}, [3361] = {.lex_state = 25}, [3362] = {.lex_state = 25}, @@ -9696,39 +9692,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3380] = {.lex_state = 25}, [3381] = {.lex_state = 25}, [3382] = {.lex_state = 25}, - [3383] = {.lex_state = 247}, + [3383] = {.lex_state = 25}, [3384] = {.lex_state = 25}, - [3385] = {.lex_state = 247}, + [3385] = {.lex_state = 25}, [3386] = {.lex_state = 25}, [3387] = {.lex_state = 25}, - [3388] = {.lex_state = 247}, + [3388] = {.lex_state = 25}, [3389] = {.lex_state = 25}, [3390] = {.lex_state = 25}, - [3391] = {.lex_state = 247}, - [3392] = {.lex_state = 247}, - [3393] = {.lex_state = 247}, - [3394] = {.lex_state = 247}, - [3395] = {.lex_state = 247}, - [3396] = {.lex_state = 247}, - [3397] = {.lex_state = 247}, - [3398] = {.lex_state = 247}, - [3399] = {.lex_state = 247}, - [3400] = {.lex_state = 247}, - [3401] = {.lex_state = 247}, - [3402] = {.lex_state = 247}, - [3403] = {.lex_state = 247}, - [3404] = {.lex_state = 247}, - [3405] = {.lex_state = 247}, - [3406] = {.lex_state = 247}, - [3407] = {.lex_state = 247}, - [3408] = {.lex_state = 247}, - [3409] = {.lex_state = 247}, - [3410] = {.lex_state = 247}, - [3411] = {.lex_state = 247}, - [3412] = {.lex_state = 247}, - [3413] = {.lex_state = 247}, + [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 = 30}, + [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 = 25}, + [3408] = {.lex_state = 25}, + [3409] = {.lex_state = 25}, + [3410] = {.lex_state = 25}, + [3411] = {.lex_state = 25}, + [3412] = {.lex_state = 25}, + [3413] = {.lex_state = 25}, [3414] = {.lex_state = 247}, - [3415] = {.lex_state = 247}, + [3415] = {.lex_state = 25}, [3416] = {.lex_state = 247}, [3417] = {.lex_state = 247}, [3418] = {.lex_state = 247}, @@ -9984,7 +9980,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3668] = {.lex_state = 247}, [3669] = {.lex_state = 247}, [3670] = {.lex_state = 247}, - [3671] = {.lex_state = 34}, + [3671] = {.lex_state = 247}, [3672] = {.lex_state = 247}, [3673] = {.lex_state = 247}, [3674] = {.lex_state = 247}, @@ -10003,7 +9999,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3687] = {.lex_state = 247}, [3688] = {.lex_state = 247}, [3689] = {.lex_state = 247}, - [3690] = {.lex_state = 34}, + [3690] = {.lex_state = 247}, [3691] = {.lex_state = 247}, [3692] = {.lex_state = 247}, [3693] = {.lex_state = 247}, @@ -10021,7 +10017,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3705] = {.lex_state = 247}, [3706] = {.lex_state = 247}, [3707] = {.lex_state = 247}, - [3708] = {.lex_state = 34}, + [3708] = {.lex_state = 247}, [3709] = {.lex_state = 247}, [3710] = {.lex_state = 247}, [3711] = {.lex_state = 247}, @@ -10048,20 +10044,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3732] = {.lex_state = 247}, [3733] = {.lex_state = 247}, [3734] = {.lex_state = 247}, - [3735] = {.lex_state = 34}, + [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}, + [3741] = {.lex_state = 34}, [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}, + [3748] = {.lex_state = 34}, [3749] = {.lex_state = 247}, [3750] = {.lex_state = 247}, [3751] = {.lex_state = 247}, @@ -10070,7 +10066,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3754] = {.lex_state = 247}, [3755] = {.lex_state = 247}, [3756] = {.lex_state = 247}, - [3757] = {.lex_state = 34}, + [3757] = {.lex_state = 247}, [3758] = {.lex_state = 247}, [3759] = {.lex_state = 247}, [3760] = {.lex_state = 247}, @@ -10085,16 +10081,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3769] = {.lex_state = 247}, [3770] = {.lex_state = 247}, [3771] = {.lex_state = 247}, - [3772] = {.lex_state = 247}, + [3772] = {.lex_state = 34}, [3773] = {.lex_state = 247}, [3774] = {.lex_state = 247}, [3775] = {.lex_state = 247}, [3776] = {.lex_state = 247}, - [3777] = {.lex_state = 34}, + [3777] = {.lex_state = 247}, [3778] = {.lex_state = 247}, [3779] = {.lex_state = 247}, [3780] = {.lex_state = 247}, - [3781] = {.lex_state = 247}, + [3781] = {.lex_state = 34}, [3782] = {.lex_state = 247}, [3783] = {.lex_state = 247}, [3784] = {.lex_state = 34}, @@ -10121,9 +10117,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3805] = {.lex_state = 247}, [3806] = {.lex_state = 247}, [3807] = {.lex_state = 247}, - [3808] = {.lex_state = 247}, + [3808] = {.lex_state = 34}, [3809] = {.lex_state = 247}, - [3810] = {.lex_state = 34}, + [3810] = {.lex_state = 247}, [3811] = {.lex_state = 247}, [3812] = {.lex_state = 247}, [3813] = {.lex_state = 247}, @@ -10147,8 +10143,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3831] = {.lex_state = 247}, [3832] = {.lex_state = 247}, [3833] = {.lex_state = 247}, - [3834] = {.lex_state = 247}, - [3835] = {.lex_state = 34}, + [3834] = {.lex_state = 34}, + [3835] = {.lex_state = 247}, [3836] = {.lex_state = 247}, [3837] = {.lex_state = 247}, [3838] = {.lex_state = 247}, @@ -10162,18 +10158,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3846] = {.lex_state = 247}, [3847] = {.lex_state = 247}, [3848] = {.lex_state = 247}, - [3849] = {.lex_state = 34}, + [3849] = {.lex_state = 247}, [3850] = {.lex_state = 247}, - [3851] = {.lex_state = 247}, - [3852] = {.lex_state = 21}, + [3851] = {.lex_state = 34}, + [3852] = {.lex_state = 247}, [3853] = {.lex_state = 247}, [3854] = {.lex_state = 247}, - [3855] = {.lex_state = 21}, - [3856] = {.lex_state = 21}, + [3855] = {.lex_state = 247}, + [3856] = {.lex_state = 247}, [3857] = {.lex_state = 247}, [3858] = {.lex_state = 247}, - [3859] = {.lex_state = 21}, - [3860] = {.lex_state = 21}, + [3859] = {.lex_state = 34}, + [3860] = {.lex_state = 247}, [3861] = {.lex_state = 247}, [3862] = {.lex_state = 247}, [3863] = {.lex_state = 247}, @@ -10183,43 +10179,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3867] = {.lex_state = 247}, [3868] = {.lex_state = 247}, [3869] = {.lex_state = 247}, - [3870] = {.lex_state = 247}, + [3870] = {.lex_state = 34}, [3871] = {.lex_state = 247}, [3872] = {.lex_state = 247}, - [3873] = {.lex_state = 21}, + [3873] = {.lex_state = 247}, [3874] = {.lex_state = 247}, [3875] = {.lex_state = 247}, - [3876] = {.lex_state = 21}, - [3877] = {.lex_state = 21}, + [3876] = {.lex_state = 247}, + [3877] = {.lex_state = 247}, [3878] = {.lex_state = 247}, [3879] = {.lex_state = 247}, [3880] = {.lex_state = 247}, - [3881] = {.lex_state = 21}, + [3881] = {.lex_state = 247}, [3882] = {.lex_state = 247}, [3883] = {.lex_state = 247}, [3884] = {.lex_state = 247}, - [3885] = {.lex_state = 21}, - [3886] = {.lex_state = 1}, - [3887] = {.lex_state = 247}, - [3888] = {.lex_state = 21}, - [3889] = {.lex_state = 247}, + [3885] = {.lex_state = 247}, + [3886] = {.lex_state = 21}, + [3887] = {.lex_state = 21}, + [3888] = {.lex_state = 247}, + [3889] = {.lex_state = 21}, [3890] = {.lex_state = 247}, [3891] = {.lex_state = 247}, [3892] = {.lex_state = 247}, - [3893] = {.lex_state = 247}, - [3894] = {.lex_state = 247}, + [3893] = {.lex_state = 21}, + [3894] = {.lex_state = 21}, [3895] = {.lex_state = 247}, [3896] = {.lex_state = 247}, [3897] = {.lex_state = 247}, [3898] = {.lex_state = 247}, [3899] = {.lex_state = 247}, [3900] = {.lex_state = 247}, - [3901] = {.lex_state = 247}, + [3901] = {.lex_state = 21}, [3902] = {.lex_state = 247}, [3903] = {.lex_state = 247}, [3904] = {.lex_state = 247}, [3905] = {.lex_state = 247}, - [3906] = {.lex_state = 21}, + [3906] = {.lex_state = 247}, [3907] = {.lex_state = 247}, [3908] = {.lex_state = 247}, [3909] = {.lex_state = 247}, @@ -10232,19 +10228,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3916] = {.lex_state = 247}, [3917] = {.lex_state = 247}, [3918] = {.lex_state = 247}, - [3919] = {.lex_state = 247}, - [3920] = {.lex_state = 247}, - [3921] = {.lex_state = 247}, + [3919] = {.lex_state = 21}, + [3920] = {.lex_state = 21}, + [3921] = {.lex_state = 21}, [3922] = {.lex_state = 247}, [3923] = {.lex_state = 247}, [3924] = {.lex_state = 247}, - [3925] = {.lex_state = 247}, + [3925] = {.lex_state = 21}, [3926] = {.lex_state = 247}, - [3927] = {.lex_state = 247}, - [3928] = {.lex_state = 247}, + [3927] = {.lex_state = 21}, + [3928] = {.lex_state = 21}, [3929] = {.lex_state = 247}, - [3930] = {.lex_state = 21}, - [3931] = {.lex_state = 21}, + [3930] = {.lex_state = 247}, + [3931] = {.lex_state = 247}, [3932] = {.lex_state = 21}, [3933] = {.lex_state = 247}, [3934] = {.lex_state = 247}, @@ -10252,93 +10248,93 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3936] = {.lex_state = 247}, [3937] = {.lex_state = 247}, [3938] = {.lex_state = 247}, - [3939] = {.lex_state = 21}, + [3939] = {.lex_state = 247}, [3940] = {.lex_state = 247}, [3941] = {.lex_state = 247}, [3942] = {.lex_state = 247}, - [3943] = {.lex_state = 247}, - [3944] = {.lex_state = 247}, + [3943] = {.lex_state = 21}, + [3944] = {.lex_state = 21}, [3945] = {.lex_state = 247}, [3946] = {.lex_state = 247}, - [3947] = {.lex_state = 21}, - [3948] = {.lex_state = 21}, - [3949] = {.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}, + [3952] = {.lex_state = 247}, [3953] = {.lex_state = 247}, - [3954] = {.lex_state = 247}, + [3954] = {.lex_state = 21}, [3955] = {.lex_state = 247}, [3956] = {.lex_state = 247}, - [3957] = {.lex_state = 247}, + [3957] = {.lex_state = 21}, [3958] = {.lex_state = 247}, - [3959] = {.lex_state = 21}, + [3959] = {.lex_state = 247}, [3960] = {.lex_state = 247}, - [3961] = {.lex_state = 21}, + [3961] = {.lex_state = 247}, [3962] = {.lex_state = 247}, - [3963] = {.lex_state = 247}, + [3963] = {.lex_state = 1}, [3964] = {.lex_state = 247}, [3965] = {.lex_state = 247}, - [3966] = {.lex_state = 31}, - [3967] = {.lex_state = 35}, - [3968] = {.lex_state = 35}, - [3969] = {.lex_state = 35}, - [3970] = {.lex_state = 33}, - [3971] = {.lex_state = 35}, - [3972] = {.lex_state = 35}, - [3973] = {.lex_state = 31}, - [3974] = {.lex_state = 35}, - [3975] = {.lex_state = 35}, - [3976] = {.lex_state = 35}, - [3977] = {.lex_state = 35}, - [3978] = {.lex_state = 35}, - [3979] = {.lex_state = 21}, - [3980] = {.lex_state = 21}, - [3981] = {.lex_state = 21}, - [3982] = {.lex_state = 21}, - [3983] = {.lex_state = 21}, + [3966] = {.lex_state = 247}, + [3967] = {.lex_state = 247}, + [3968] = {.lex_state = 247}, + [3969] = {.lex_state = 247}, + [3970] = {.lex_state = 247}, + [3971] = {.lex_state = 247}, + [3972] = {.lex_state = 247}, + [3973] = {.lex_state = 21}, + [3974] = {.lex_state = 247}, + [3975] = {.lex_state = 247}, + [3976] = {.lex_state = 247}, + [3977] = {.lex_state = 247}, + [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 = 21}, - [3985] = {.lex_state = 21}, - [3986] = {.lex_state = 31}, - [3987] = {.lex_state = 21}, - [3988] = {.lex_state = 21}, - [3989] = {.lex_state = 32}, - [3990] = {.lex_state = 32}, - [3991] = {.lex_state = 22}, - [3992] = {.lex_state = 32}, - [3993] = {.lex_state = 32}, - [3994] = {.lex_state = 32}, - [3995] = {.lex_state = 32}, - [3996] = {.lex_state = 32}, - [3997] = {.lex_state = 32}, - [3998] = {.lex_state = 32}, - [3999] = {.lex_state = 32}, - [4000] = {.lex_state = 32}, - [4001] = {.lex_state = 32}, - [4002] = {.lex_state = 32}, - [4003] = {.lex_state = 32}, - [4004] = {.lex_state = 32}, - [4005] = {.lex_state = 32}, - [4006] = {.lex_state = 32}, - [4007] = {.lex_state = 32}, - [4008] = {.lex_state = 32}, - [4009] = {.lex_state = 32}, - [4010] = {.lex_state = 32}, - [4011] = {.lex_state = 32}, - [4012] = {.lex_state = 32}, + [3985] = {.lex_state = 247}, + [3986] = {.lex_state = 247}, + [3987] = {.lex_state = 247}, + [3988] = {.lex_state = 247}, + [3989] = {.lex_state = 21}, + [3990] = {.lex_state = 35}, + [3991] = {.lex_state = 35}, + [3992] = {.lex_state = 35}, + [3993] = {.lex_state = 33}, + [3994] = {.lex_state = 35}, + [3995] = {.lex_state = 31}, + [3996] = {.lex_state = 35}, + [3997] = {.lex_state = 35}, + [3998] = {.lex_state = 31}, + [3999] = {.lex_state = 35}, + [4000] = {.lex_state = 35}, + [4001] = {.lex_state = 35}, + [4002] = {.lex_state = 35}, + [4003] = {.lex_state = 21}, + [4004] = {.lex_state = 31}, + [4005] = {.lex_state = 21}, + [4006] = {.lex_state = 21}, + [4007] = {.lex_state = 21}, + [4008] = {.lex_state = 21}, + [4009] = {.lex_state = 21}, + [4010] = {.lex_state = 21}, + [4011] = {.lex_state = 21}, + [4012] = {.lex_state = 21}, [4013] = {.lex_state = 32}, [4014] = {.lex_state = 32}, [4015] = {.lex_state = 32}, [4016] = {.lex_state = 32}, - [4017] = {.lex_state = 247}, - [4018] = {.lex_state = 31}, + [4017] = {.lex_state = 32}, + [4018] = {.lex_state = 32}, [4019] = {.lex_state = 32}, [4020] = {.lex_state = 32}, [4021] = {.lex_state = 32}, [4022] = {.lex_state = 32}, [4023] = {.lex_state = 32}, [4024] = {.lex_state = 32}, - [4025] = {.lex_state = 32}, + [4025] = {.lex_state = 31}, [4026] = {.lex_state = 32}, [4027] = {.lex_state = 32}, [4028] = {.lex_state = 32}, @@ -10353,7 +10349,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4037] = {.lex_state = 32}, [4038] = {.lex_state = 32}, [4039] = {.lex_state = 32}, - [4040] = {.lex_state = 32}, + [4040] = {.lex_state = 22}, [4041] = {.lex_state = 32}, [4042] = {.lex_state = 32}, [4043] = {.lex_state = 32}, @@ -10377,74 +10373,98 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4061] = {.lex_state = 32}, [4062] = {.lex_state = 32}, [4063] = {.lex_state = 32}, - [4064] = {.lex_state = 20}, - [4065] = {.lex_state = 20}, - [4066] = {.lex_state = 20}, - [4067] = {.lex_state = 20}, - [4068] = {.lex_state = 20}, - [4069] = {.lex_state = 20}, - [4070] = {.lex_state = 20}, - [4071] = {.lex_state = 20}, - [4072] = {.lex_state = 20}, - [4073] = {.lex_state = 20}, - [4074] = {.lex_state = 20}, - [4075] = {.lex_state = 20}, - [4076] = {.lex_state = 20}, - [4077] = {.lex_state = 20}, - [4078] = {.lex_state = 247}, - [4079] = {.lex_state = 20}, - [4080] = {.lex_state = 20}, - [4081] = {.lex_state = 20}, - [4082] = {.lex_state = 20}, - [4083] = {.lex_state = 20}, - [4084] = {.lex_state = 20}, - [4085] = {.lex_state = 20}, - [4086] = {.lex_state = 247}, - [4087] = {.lex_state = 247}, - [4088] = {.lex_state = 247}, - [4089] = {.lex_state = 247}, - [4090] = {.lex_state = 247}, - [4091] = {.lex_state = 36}, - [4092] = {.lex_state = 247}, - [4093] = {.lex_state = 22}, - [4094] = {.lex_state = 247}, - [4095] = {.lex_state = 247}, - [4096] = {.lex_state = 247}, - [4097] = {.lex_state = 22}, - [4098] = {.lex_state = 247}, - [4099] = {.lex_state = 22}, - [4100] = {.lex_state = 25}, - [4101] = {.lex_state = 247}, - [4102] = {.lex_state = 25}, - [4103] = {.lex_state = 22}, - [4104] = {.lex_state = 247}, - [4105] = {.lex_state = 22}, - [4106] = {.lex_state = 25}, - [4107] = {.lex_state = 247}, + [4064] = {.lex_state = 32}, + [4065] = {.lex_state = 32}, + [4066] = {.lex_state = 32}, + [4067] = {.lex_state = 32}, + [4068] = {.lex_state = 32}, + [4069] = {.lex_state = 247}, + [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 = 32}, + [4077] = {.lex_state = 32}, + [4078] = {.lex_state = 32}, + [4079] = {.lex_state = 32}, + [4080] = {.lex_state = 32}, + [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 = 20}, + [4089] = {.lex_state = 20}, + [4090] = {.lex_state = 20}, + [4091] = {.lex_state = 20}, + [4092] = {.lex_state = 20}, + [4093] = {.lex_state = 20}, + [4094] = {.lex_state = 20}, + [4095] = {.lex_state = 20}, + [4096] = {.lex_state = 20}, + [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 = 247}, - [4109] = {.lex_state = 22}, - [4110] = {.lex_state = 22}, - [4111] = {.lex_state = 22}, - [4112] = {.lex_state = 247}, - [4113] = {.lex_state = 247}, - [4114] = {.lex_state = 247}, + [4109] = {.lex_state = 20}, + [4110] = {.lex_state = 247}, + [4111] = {.lex_state = 247}, + [4112] = {.lex_state = 22}, + [4113] = {.lex_state = 22}, + [4114] = {.lex_state = 22}, [4115] = {.lex_state = 247}, - [4116] = {.lex_state = 25}, - [4117] = {.lex_state = 25}, - [4118] = {.lex_state = 22}, + [4116] = {.lex_state = 247}, + [4117] = {.lex_state = 247}, + [4118] = {.lex_state = 247}, [4119] = {.lex_state = 25}, - [4120] = {.lex_state = 25}, - [4121] = {.lex_state = 247}, - [4122] = {.lex_state = 247}, - [4123] = {.lex_state = 247}, - [4124] = {.lex_state = 247}, + [4120] = {.lex_state = 247}, + [4121] = {.lex_state = 22}, + [4122] = {.lex_state = 25}, + [4123] = {.lex_state = 22}, + [4124] = {.lex_state = 25}, [4125] = {.lex_state = 247}, [4126] = {.lex_state = 247}, [4127] = {.lex_state = 247}, [4128] = {.lex_state = 247}, - [4129] = {.lex_state = 25}, - [4130] = {.lex_state = 22}, + [4129] = {.lex_state = 247}, + [4130] = {.lex_state = 36}, [4131] = {.lex_state = 22}, + [4132] = {.lex_state = 247}, + [4133] = {.lex_state = 247}, + [4134] = {.lex_state = 247}, + [4135] = {.lex_state = 25}, + [4136] = {.lex_state = 247}, + [4137] = {.lex_state = 22}, + [4138] = {.lex_state = 25}, + [4139] = {.lex_state = 247}, + [4140] = {.lex_state = 25}, + [4141] = {.lex_state = 247}, + [4142] = {.lex_state = 22}, + [4143] = {.lex_state = 247}, + [4144] = {.lex_state = 247}, + [4145] = {.lex_state = 247}, + [4146] = {.lex_state = 25}, + [4147] = {.lex_state = 25}, + [4148] = {.lex_state = 247}, + [4149] = {.lex_state = 22}, + [4150] = {.lex_state = 22}, + [4151] = {.lex_state = 247}, + [4152] = {.lex_state = 247}, + [4153] = {.lex_state = 247}, + [4154] = {.lex_state = 22}, + [4155] = {.lex_state = 247}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -10505,38 +10525,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(1), }, [1] = { - [sym_source] = STATE(4094), - [sym__gap] = STATE(331), - [sym_dis_expr] = STATE(331), - [sym__form] = STATE(1983), - [sym_num_lit] = STATE(1983), - [sym_kwd_lit] = STATE(1983), - [sym_str_lit] = STATE(1983), - [sym_char_lit] = STATE(1983), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1983), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1983), - [sym_set_lit] = STATE(1983), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1983), - [sym_splicing_read_cond_lit] = STATE(1983), - [sym_var_quoting_lit] = STATE(1983), - [sym_quoting_lit] = STATE(1983), - [sym_syn_quoting_lit] = STATE(1983), - [sym_unquote_splicing_lit] = STATE(1983), - [sym_unquoting_lit] = STATE(1983), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1983), - [sym_package_lit] = STATE(1983), - [sym_include_reader_macro] = STATE(1983), - [sym_complex_num_lit] = STATE(1983), - [aux_sym_source_repeat1] = STATE(331), - [aux_sym_list_lit_repeat1] = STATE(2810), + [sym_source] = STATE(4133), + [sym__gap] = STATE(293), + [sym_dis_expr] = STATE(293), + [sym__form] = STATE(2021), + [sym_num_lit] = STATE(2021), + [sym_kwd_lit] = STATE(2021), + [sym_str_lit] = STATE(2021), + [sym_char_lit] = STATE(2021), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2021), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(2021), + [sym_set_lit] = STATE(2021), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(2021), + [sym_splicing_read_cond_lit] = STATE(2021), + [sym_var_quoting_lit] = STATE(2021), + [sym_quoting_lit] = STATE(2021), + [sym_syn_quoting_lit] = STATE(2021), + [sym_unquote_splicing_lit] = STATE(2021), + [sym_unquoting_lit] = STATE(2021), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(2021), + [sym_package_lit] = STATE(2021), + [sym_include_reader_macro] = STATE(2021), + [sym_complex_num_lit] = STATE(2021), + [aux_sym_source_repeat1] = STATE(293), + [aux_sym_list_lit_repeat1] = STATE(2825), [ts_builtin_sym_end] = ACTIONS(5), [sym__ws] = ACTIONS(7), [sym_comment] = ACTIONS(7), @@ -10573,3541 +10593,3541 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [2] = { - [sym__gap] = STATE(981), - [sym_dis_expr] = STATE(981), - [sym__form] = STATE(33), - [sym_num_lit] = STATE(33), - [sym_kwd_lit] = STATE(33), - [sym_str_lit] = STATE(33), - [sym_char_lit] = STATE(33), - [sym_sym_lit] = STATE(1062), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(33), - [sym__bare_list_lit] = STATE(1015), - [sym_vec_lit] = STATE(33), - [sym_set_lit] = STATE(33), - [sym__bare_set_lit] = STATE(1027), - [sym_read_cond_lit] = STATE(33), - [sym_splicing_read_cond_lit] = STATE(33), - [sym_var_quoting_lit] = STATE(33), - [sym_quoting_lit] = STATE(33), - [sym_syn_quoting_lit] = STATE(33), - [sym_unquote_splicing_lit] = STATE(33), - [sym_unquoting_lit] = STATE(33), - [sym_defun] = STATE(1015), - [sym_loop_macro] = STATE(1015), - [sym_path_lit] = STATE(33), - [sym_package_lit] = STATE(33), - [sym_include_reader_macro] = STATE(33), - [sym_complex_num_lit] = STATE(33), - [aux_sym_dis_expr_repeat1] = STATE(981), - [aux_sym_list_lit_repeat1] = STATE(2775), + [sym__gap] = STATE(29), + [sym_dis_expr] = STATE(29), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(29), + [aux_sym_list_lit_repeat1] = STATE(2804), [sym__ws] = ACTIONS(59), [sym_comment] = ACTIONS(59), - [anon_sym_POUND_] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(65), - [anon_sym_DOT] = ACTIONS(67), - [aux_sym_num_lit_token1] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(71), - [anon_sym_COLON_COLON] = ACTIONS(74), - [anon_sym_DQUOTE] = ACTIONS(76), - [sym_nil_lit] = ACTIONS(67), - [aux_sym_sym_lit_token1] = ACTIONS(78), - [anon_sym_CARET] = ACTIONS(80), - [anon_sym_POUND_CARET] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(89), - [anon_sym_POUND0A] = ACTIONS(91), - [anon_sym_POUND0a] = ACTIONS(91), - [anon_sym_POUND_QMARK] = ACTIONS(93), - [anon_sym_POUND_QMARK_AT] = ACTIONS(95), - [anon_sym_POUND_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_BQUOTE] = ACTIONS(101), - [anon_sym_COMMA_AT] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(105), + [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(67), - [anon_sym_cl] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(110), - [aux_sym_accumulation_verb_token1] = ACTIONS(112), - [anon_sym_for] = ACTIONS(112), - [anon_sym_and] = ACTIONS(112), - [anon_sym_as] = ACTIONS(112), - [anon_sym_with] = ACTIONS(112), - [anon_sym_do] = ACTIONS(112), - [anon_sym_while] = ACTIONS(112), - [anon_sym_until] = ACTIONS(112), - [anon_sym_repeat] = ACTIONS(112), - [anon_sym_when] = ACTIONS(112), - [anon_sym_if] = ACTIONS(112), - [anon_sym_unless] = ACTIONS(112), - [anon_sym_always] = ACTIONS(112), - [anon_sym_thereis] = ACTIONS(112), - [anon_sym_never] = ACTIONS(112), - [anon_sym_else] = ACTIONS(112), - [anon_sym_finally] = ACTIONS(112), - [anon_sym_return] = ACTIONS(112), - [anon_sym_initially] = ACTIONS(112), - [anon_sym_POUNDP] = ACTIONS(114), - [anon_sym_POUNDp] = ACTIONS(114), - [sym_self_referential_reader_macro] = ACTIONS(116), - [anon_sym_POUND_PLUS] = ACTIONS(118), - [anon_sym_POUND_DASH] = ACTIONS(118), - [anon_sym_POUNDC] = ACTIONS(120), - [anon_sym_POUNDc] = ACTIONS(120), + [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(35), - [sym_dis_expr] = STATE(35), - [sym__form] = STATE(34), - [sym_num_lit] = STATE(34), - [sym_kwd_lit] = STATE(34), - [sym_str_lit] = STATE(34), - [sym_char_lit] = STATE(34), - [sym_sym_lit] = STATE(1062), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(34), - [sym__bare_list_lit] = STATE(1015), - [sym_vec_lit] = STATE(34), - [sym_set_lit] = STATE(34), - [sym__bare_set_lit] = STATE(1027), - [sym_read_cond_lit] = STATE(34), - [sym_splicing_read_cond_lit] = STATE(34), - [sym_var_quoting_lit] = STATE(34), - [sym_quoting_lit] = STATE(34), - [sym_syn_quoting_lit] = STATE(34), - [sym_unquote_splicing_lit] = STATE(34), - [sym_unquoting_lit] = STATE(34), - [sym_defun] = STATE(1015), - [sym_loop_macro] = STATE(1015), - [sym_path_lit] = STATE(34), - [sym_package_lit] = STATE(34), - [sym_include_reader_macro] = STATE(34), - [sym_complex_num_lit] = STATE(34), - [aux_sym_dis_expr_repeat1] = STATE(35), - [aux_sym_list_lit_repeat1] = STATE(2775), - [sym__ws] = ACTIONS(122), - [sym_comment] = ACTIONS(122), - [anon_sym_POUND_] = ACTIONS(125), - [anon_sym_POUND] = ACTIONS(65), - [anon_sym_DOT] = ACTIONS(128), - [aux_sym_num_lit_token1] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(130), - [anon_sym_COLON_COLON] = ACTIONS(74), - [anon_sym_DQUOTE] = ACTIONS(76), - [sym_nil_lit] = ACTIONS(128), - [aux_sym_sym_lit_token1] = ACTIONS(78), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym_POUND_CARET] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(142), - [anon_sym_POUND0A] = ACTIONS(91), - [anon_sym_POUND0a] = ACTIONS(91), - [anon_sym_POUND_QMARK] = ACTIONS(93), - [anon_sym_POUND_QMARK_AT] = ACTIONS(95), - [anon_sym_POUND_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_BQUOTE] = ACTIONS(101), - [anon_sym_COMMA_AT] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(105), + [sym__gap] = STATE(30), + [sym_dis_expr] = STATE(30), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(30), + [aux_sym_list_lit_repeat1] = STATE(2804), + [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(128), - [anon_sym_cl] = ACTIONS(144), - [anon_sym_EQ] = ACTIONS(147), - [aux_sym_accumulation_verb_token1] = ACTIONS(149), - [anon_sym_for] = ACTIONS(149), - [anon_sym_and] = ACTIONS(149), - [anon_sym_as] = ACTIONS(149), - [anon_sym_with] = ACTIONS(149), - [anon_sym_do] = ACTIONS(149), - [anon_sym_while] = ACTIONS(149), - [anon_sym_until] = ACTIONS(149), - [anon_sym_repeat] = ACTIONS(149), - [anon_sym_when] = ACTIONS(149), - [anon_sym_if] = ACTIONS(149), - [anon_sym_unless] = ACTIONS(149), - [anon_sym_always] = ACTIONS(149), - [anon_sym_thereis] = ACTIONS(149), - [anon_sym_never] = ACTIONS(149), - [anon_sym_else] = ACTIONS(149), - [anon_sym_finally] = ACTIONS(149), - [anon_sym_return] = ACTIONS(149), - [anon_sym_initially] = ACTIONS(149), - [anon_sym_POUNDP] = ACTIONS(114), - [anon_sym_POUNDp] = ACTIONS(114), - [sym_self_referential_reader_macro] = ACTIONS(151), - [anon_sym_POUND_PLUS] = ACTIONS(118), - [anon_sym_POUND_DASH] = ACTIONS(118), - [anon_sym_POUNDC] = ACTIONS(120), - [anon_sym_POUNDc] = ACTIONS(120), + [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), + [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(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(14), - [sym_dis_expr] = STATE(14), - [sym__form] = STATE(13), - [sym_num_lit] = STATE(13), - [sym_kwd_lit] = STATE(13), - [sym_str_lit] = STATE(13), - [sym_char_lit] = STATE(13), - [sym_sym_lit] = STATE(1062), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(13), - [sym__bare_list_lit] = STATE(1015), - [sym_vec_lit] = STATE(13), - [sym_set_lit] = STATE(13), - [sym__bare_set_lit] = STATE(1027), - [sym_read_cond_lit] = STATE(13), - [sym_splicing_read_cond_lit] = STATE(13), - [sym_var_quoting_lit] = STATE(13), - [sym_quoting_lit] = STATE(13), - [sym_syn_quoting_lit] = STATE(13), - [sym_unquote_splicing_lit] = STATE(13), - [sym_unquoting_lit] = STATE(13), - [sym_defun] = STATE(1015), - [sym_loop_macro] = STATE(1015), - [sym_path_lit] = STATE(13), - [sym_package_lit] = STATE(13), - [sym_include_reader_macro] = STATE(13), - [sym_complex_num_lit] = STATE(13), - [aux_sym_dis_expr_repeat1] = STATE(14), - [aux_sym_list_lit_repeat1] = STATE(2775), - [sym__ws] = ACTIONS(153), - [sym_comment] = ACTIONS(153), - [anon_sym_POUND_] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(65), - [anon_sym_DOT] = ACTIONS(159), - [aux_sym_num_lit_token1] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(74), - [anon_sym_DQUOTE] = ACTIONS(76), - [sym_nil_lit] = ACTIONS(159), - [aux_sym_sym_lit_token1] = ACTIONS(78), - [anon_sym_CARET] = ACTIONS(164), - [anon_sym_POUND_CARET] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_RPAREN] = ACTIONS(173), - [anon_sym_POUND0A] = ACTIONS(91), - [anon_sym_POUND0a] = ACTIONS(91), - [anon_sym_POUND_QMARK] = ACTIONS(93), - [anon_sym_POUND_QMARK_AT] = ACTIONS(95), - [anon_sym_POUND_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_BQUOTE] = ACTIONS(101), - [anon_sym_COMMA_AT] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(105), + [sym__gap] = STATE(532), + [sym_dis_expr] = STATE(532), + [sym__form] = STATE(993), + [sym_num_lit] = STATE(993), + [sym_kwd_lit] = STATE(993), + [sym_str_lit] = STATE(993), + [sym_char_lit] = STATE(993), + [sym_sym_lit] = STATE(1158), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(993), + [sym__bare_list_lit] = STATE(1192), + [sym_vec_lit] = STATE(993), + [sym_set_lit] = STATE(993), + [sym__bare_set_lit] = STATE(1201), + [sym_read_cond_lit] = STATE(993), + [sym_splicing_read_cond_lit] = STATE(993), + [sym_var_quoting_lit] = STATE(993), + [sym_quoting_lit] = STATE(993), + [sym_syn_quoting_lit] = STATE(993), + [sym_unquote_splicing_lit] = STATE(993), + [sym_unquoting_lit] = STATE(993), + [sym_defun] = STATE(1192), + [sym_loop_macro] = STATE(1192), + [sym_path_lit] = STATE(993), + [sym_package_lit] = STATE(993), + [sym_include_reader_macro] = STATE(993), + [sym_complex_num_lit] = STATE(993), + [aux_sym_dis_expr_repeat1] = STATE(532), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym_do_clause_repeat1] = STATE(20), + [sym__ws] = ACTIONS(171), + [sym_comment] = ACTIONS(171), + [anon_sym_POUND_] = ACTIONS(171), + [anon_sym_POUND] = ACTIONS(173), + [anon_sym_DOT] = ACTIONS(175), + [aux_sym_num_lit_token1] = ACTIONS(177), + [anon_sym_COLON] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(183), + [sym_nil_lit] = ACTIONS(175), + [aux_sym_sym_lit_token1] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(171), + [anon_sym_POUND_CARET] = ACTIONS(171), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_RPAREN] = ACTIONS(171), + [anon_sym_POUND0A] = ACTIONS(187), + [anon_sym_POUND0a] = ACTIONS(187), + [anon_sym_POUND_QMARK] = ACTIONS(189), + [anon_sym_POUND_QMARK_AT] = ACTIONS(191), + [anon_sym_POUND_SQUOTE] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [anon_sym_BQUOTE] = ACTIONS(197), + [anon_sym_COMMA_AT] = ACTIONS(199), + [anon_sym_COMMA] = ACTIONS(201), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(159), - [anon_sym_cl] = ACTIONS(175), - [anon_sym_EQ] = ACTIONS(178), - [aux_sym_accumulation_verb_token1] = ACTIONS(180), - [anon_sym_for] = ACTIONS(180), - [anon_sym_and] = ACTIONS(180), - [anon_sym_as] = ACTIONS(180), - [anon_sym_with] = ACTIONS(180), - [anon_sym_do] = ACTIONS(180), - [anon_sym_while] = ACTIONS(180), - [anon_sym_until] = ACTIONS(180), - [anon_sym_repeat] = ACTIONS(180), - [anon_sym_when] = ACTIONS(180), - [anon_sym_if] = ACTIONS(180), - [anon_sym_unless] = ACTIONS(180), - [anon_sym_always] = ACTIONS(180), - [anon_sym_thereis] = ACTIONS(180), - [anon_sym_never] = ACTIONS(180), - [anon_sym_else] = ACTIONS(180), - [anon_sym_finally] = ACTIONS(180), - [anon_sym_return] = ACTIONS(180), - [anon_sym_initially] = ACTIONS(180), - [anon_sym_POUNDP] = ACTIONS(114), - [anon_sym_POUNDp] = ACTIONS(114), - [sym_self_referential_reader_macro] = ACTIONS(182), - [anon_sym_POUND_PLUS] = ACTIONS(118), - [anon_sym_POUND_DASH] = ACTIONS(118), - [anon_sym_POUNDC] = ACTIONS(120), - [anon_sym_POUNDc] = ACTIONS(120), + [sym_fancy_literal] = ACTIONS(175), + [anon_sym_cl] = ACTIONS(179), + [aux_sym_accumulation_verb_token1] = ACTIONS(179), + [anon_sym_for] = ACTIONS(179), + [anon_sym_and] = ACTIONS(179), + [anon_sym_as] = ACTIONS(179), + [anon_sym_with] = ACTIONS(179), + [anon_sym_do] = ACTIONS(179), + [anon_sym_while] = ACTIONS(179), + [anon_sym_until] = ACTIONS(179), + [anon_sym_repeat] = ACTIONS(179), + [anon_sym_when] = ACTIONS(179), + [anon_sym_if] = ACTIONS(179), + [anon_sym_unless] = ACTIONS(179), + [anon_sym_always] = ACTIONS(179), + [anon_sym_thereis] = ACTIONS(179), + [anon_sym_never] = ACTIONS(179), + [anon_sym_else] = ACTIONS(179), + [anon_sym_finally] = ACTIONS(179), + [anon_sym_return] = ACTIONS(179), + [anon_sym_initially] = ACTIONS(179), + [anon_sym_POUNDP] = ACTIONS(203), + [anon_sym_POUNDp] = ACTIONS(203), + [sym_self_referential_reader_macro] = ACTIONS(205), + [anon_sym_POUND_PLUS] = ACTIONS(207), + [anon_sym_POUND_DASH] = ACTIONS(207), + [anon_sym_POUNDC] = ACTIONS(209), + [anon_sym_POUNDc] = ACTIONS(209), }, [5] = { - [sym__gap] = STATE(981), - [sym_dis_expr] = STATE(981), - [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(1062), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(12), - [sym__bare_list_lit] = STATE(1015), - [sym_vec_lit] = STATE(12), - [sym_set_lit] = STATE(12), - [sym__bare_set_lit] = STATE(1027), - [sym_read_cond_lit] = STATE(12), - [sym_splicing_read_cond_lit] = STATE(12), - [sym_var_quoting_lit] = STATE(12), - [sym_quoting_lit] = STATE(12), - [sym_syn_quoting_lit] = STATE(12), - [sym_unquote_splicing_lit] = STATE(12), - [sym_unquoting_lit] = STATE(12), - [sym_defun] = STATE(1015), - [sym_loop_macro] = STATE(1015), - [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(981), - [aux_sym_list_lit_repeat1] = STATE(2775), - [sym__ws] = ACTIONS(184), - [sym_comment] = ACTIONS(184), - [anon_sym_POUND_] = ACTIONS(187), - [anon_sym_POUND] = ACTIONS(65), - [anon_sym_DOT] = ACTIONS(190), - [aux_sym_num_lit_token1] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(192), - [anon_sym_COLON_COLON] = ACTIONS(74), - [anon_sym_DQUOTE] = ACTIONS(76), - [sym_nil_lit] = ACTIONS(190), - [aux_sym_sym_lit_token1] = ACTIONS(78), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_POUND_CARET] = ACTIONS(198), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(204), - [anon_sym_POUND0A] = ACTIONS(91), - [anon_sym_POUND0a] = ACTIONS(91), - [anon_sym_POUND_QMARK] = ACTIONS(93), - [anon_sym_POUND_QMARK_AT] = ACTIONS(95), - [anon_sym_POUND_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_BQUOTE] = ACTIONS(101), - [anon_sym_COMMA_AT] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(105), + [sym__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [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(1072), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(990), + [aux_sym_list_lit_repeat1] = STATE(2797), + [sym__ws] = ACTIONS(211), + [sym_comment] = ACTIONS(211), + [anon_sym_POUND_] = ACTIONS(214), + [anon_sym_POUND] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(219), + [aux_sym_num_lit_token1] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_COLON_COLON] = ACTIONS(226), + [anon_sym_DQUOTE] = ACTIONS(228), + [sym_nil_lit] = ACTIONS(219), + [aux_sym_sym_lit_token1] = ACTIONS(230), + [anon_sym_CARET] = ACTIONS(232), + [anon_sym_POUND_CARET] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(238), + [anon_sym_RPAREN] = ACTIONS(241), + [anon_sym_POUND0A] = ACTIONS(243), + [anon_sym_POUND0a] = ACTIONS(243), + [anon_sym_POUND_QMARK] = ACTIONS(245), + [anon_sym_POUND_QMARK_AT] = ACTIONS(247), + [anon_sym_POUND_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_COMMA_AT] = ACTIONS(255), + [anon_sym_COMMA] = ACTIONS(257), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(190), - [anon_sym_cl] = ACTIONS(206), - [anon_sym_EQ] = ACTIONS(209), - [aux_sym_accumulation_verb_token1] = ACTIONS(211), - [anon_sym_for] = ACTIONS(211), - [anon_sym_and] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_with] = ACTIONS(211), - [anon_sym_do] = ACTIONS(211), - [anon_sym_while] = ACTIONS(211), - [anon_sym_until] = ACTIONS(211), - [anon_sym_repeat] = ACTIONS(211), - [anon_sym_when] = ACTIONS(211), - [anon_sym_if] = ACTIONS(211), - [anon_sym_unless] = ACTIONS(211), - [anon_sym_always] = ACTIONS(211), - [anon_sym_thereis] = ACTIONS(211), - [anon_sym_never] = ACTIONS(211), - [anon_sym_else] = ACTIONS(211), - [anon_sym_finally] = ACTIONS(211), - [anon_sym_return] = ACTIONS(211), - [anon_sym_initially] = ACTIONS(211), - [anon_sym_POUNDP] = ACTIONS(114), - [anon_sym_POUNDp] = ACTIONS(114), - [sym_self_referential_reader_macro] = ACTIONS(213), - [anon_sym_POUND_PLUS] = ACTIONS(118), - [anon_sym_POUND_DASH] = ACTIONS(118), - [anon_sym_POUNDC] = ACTIONS(120), - [anon_sym_POUNDc] = ACTIONS(120), + [sym_fancy_literal] = ACTIONS(219), + [anon_sym_cl] = ACTIONS(259), + [anon_sym_EQ] = ACTIONS(262), + [aux_sym_accumulation_verb_token1] = ACTIONS(264), + [anon_sym_for] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_as] = ACTIONS(264), + [anon_sym_with] = ACTIONS(264), + [anon_sym_do] = ACTIONS(264), + [anon_sym_while] = ACTIONS(264), + [anon_sym_until] = ACTIONS(264), + [anon_sym_repeat] = ACTIONS(264), + [anon_sym_when] = ACTIONS(264), + [anon_sym_if] = ACTIONS(264), + [anon_sym_unless] = ACTIONS(264), + [anon_sym_always] = ACTIONS(264), + [anon_sym_thereis] = ACTIONS(264), + [anon_sym_never] = ACTIONS(264), + [anon_sym_else] = ACTIONS(264), + [anon_sym_finally] = ACTIONS(264), + [anon_sym_return] = ACTIONS(264), + [anon_sym_initially] = ACTIONS(264), + [anon_sym_POUNDP] = ACTIONS(266), + [anon_sym_POUNDp] = ACTIONS(266), + [sym_self_referential_reader_macro] = ACTIONS(268), + [anon_sym_POUND_PLUS] = ACTIONS(270), + [anon_sym_POUND_DASH] = ACTIONS(270), + [anon_sym_POUNDC] = ACTIONS(272), + [anon_sym_POUNDc] = ACTIONS(272), }, [6] = { - [sym__gap] = STATE(11), - [sym_dis_expr] = STATE(11), - [sym__form] = STATE(2036), - [sym_num_lit] = STATE(2036), - [sym_kwd_lit] = STATE(2036), - [sym_str_lit] = STATE(2036), - [sym_char_lit] = STATE(2036), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2036), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2036), - [sym_set_lit] = STATE(2036), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2036), - [sym_splicing_read_cond_lit] = STATE(2036), - [sym_var_quoting_lit] = STATE(2036), - [sym_quoting_lit] = STATE(2036), - [sym_syn_quoting_lit] = STATE(2036), - [sym_unquote_splicing_lit] = STATE(2036), - [sym_unquoting_lit] = STATE(2036), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2036), - [sym_package_lit] = STATE(2036), - [sym_include_reader_macro] = STATE(2036), - [sym_complex_num_lit] = STATE(2036), - [aux_sym_dis_expr_repeat1] = STATE(11), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(215), - [sym_comment] = ACTIONS(215), - [anon_sym_POUND_] = ACTIONS(219), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(225), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(225), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(239), - [anon_sym_POUND_CARET] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_RPAREN] = ACTIONS(251), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(1072), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2797), + [sym__ws] = ACTIONS(274), + [sym_comment] = ACTIONS(274), + [anon_sym_POUND_] = ACTIONS(277), + [anon_sym_POUND] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(280), + [aux_sym_num_lit_token1] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(282), + [anon_sym_COLON_COLON] = ACTIONS(226), + [anon_sym_DQUOTE] = ACTIONS(228), + [sym_nil_lit] = ACTIONS(280), + [aux_sym_sym_lit_token1] = ACTIONS(230), + [anon_sym_CARET] = ACTIONS(285), + [anon_sym_POUND_CARET] = ACTIONS(288), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(294), + [anon_sym_POUND0A] = ACTIONS(243), + [anon_sym_POUND0a] = ACTIONS(243), + [anon_sym_POUND_QMARK] = ACTIONS(245), + [anon_sym_POUND_QMARK_AT] = ACTIONS(247), + [anon_sym_POUND_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_COMMA_AT] = ACTIONS(255), + [anon_sym_COMMA] = ACTIONS(257), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(225), - [anon_sym_cl] = ACTIONS(270), - [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(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(281), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(280), + [anon_sym_cl] = ACTIONS(296), + [anon_sym_EQ] = ACTIONS(299), + [aux_sym_accumulation_verb_token1] = ACTIONS(301), + [anon_sym_for] = ACTIONS(301), + [anon_sym_and] = ACTIONS(301), + [anon_sym_as] = ACTIONS(301), + [anon_sym_with] = ACTIONS(301), + [anon_sym_do] = ACTIONS(301), + [anon_sym_while] = ACTIONS(301), + [anon_sym_until] = ACTIONS(301), + [anon_sym_repeat] = ACTIONS(301), + [anon_sym_when] = ACTIONS(301), + [anon_sym_if] = ACTIONS(301), + [anon_sym_unless] = ACTIONS(301), + [anon_sym_always] = ACTIONS(301), + [anon_sym_thereis] = ACTIONS(301), + [anon_sym_never] = ACTIONS(301), + [anon_sym_else] = ACTIONS(301), + [anon_sym_finally] = ACTIONS(301), + [anon_sym_return] = ACTIONS(301), + [anon_sym_initially] = ACTIONS(301), + [anon_sym_POUNDP] = ACTIONS(266), + [anon_sym_POUNDp] = ACTIONS(266), + [sym_self_referential_reader_macro] = ACTIONS(303), + [anon_sym_POUND_PLUS] = ACTIONS(270), + [anon_sym_POUND_DASH] = ACTIONS(270), + [anon_sym_POUNDC] = ACTIONS(272), + [anon_sym_POUNDc] = ACTIONS(272), }, [7] = { - [sym__gap] = STATE(981), - [sym_dis_expr] = STATE(981), - [sym__form] = STATE(2042), - [sym_num_lit] = STATE(2042), - [sym_kwd_lit] = STATE(2042), - [sym_str_lit] = STATE(2042), - [sym_char_lit] = STATE(2042), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2042), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2042), - [sym_set_lit] = STATE(2042), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2042), - [sym_splicing_read_cond_lit] = STATE(2042), - [sym_var_quoting_lit] = STATE(2042), - [sym_quoting_lit] = STATE(2042), - [sym_syn_quoting_lit] = STATE(2042), - [sym_unquote_splicing_lit] = STATE(2042), - [sym_unquoting_lit] = STATE(2042), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2042), - [sym_package_lit] = STATE(2042), - [sym_include_reader_macro] = STATE(2042), - [sym_complex_num_lit] = STATE(2042), - [aux_sym_dis_expr_repeat1] = STATE(981), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(287), - [sym_comment] = ACTIONS(287), - [anon_sym_POUND_] = ACTIONS(291), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(295), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(297), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(295), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(301), - [anon_sym_POUND_CARET] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(309), - [anon_sym_RPAREN] = ACTIONS(313), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(13), + [sym_dis_expr] = STATE(13), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(13), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(305), + [sym_comment] = ACTIONS(305), + [anon_sym_POUND_] = ACTIONS(309), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(313), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(313), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_POUND_CARET] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_RPAREN] = ACTIONS(331), + [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(295), - [anon_sym_cl] = ACTIONS(316), - [anon_sym_EQ] = ACTIONS(320), - [aux_sym_accumulation_verb_token1] = ACTIONS(322), - [anon_sym_for] = ACTIONS(322), - [anon_sym_and] = ACTIONS(322), - [anon_sym_as] = ACTIONS(322), - [anon_sym_with] = ACTIONS(322), - [anon_sym_do] = ACTIONS(322), - [anon_sym_while] = ACTIONS(322), - [anon_sym_until] = ACTIONS(322), - [anon_sym_repeat] = ACTIONS(322), - [anon_sym_when] = ACTIONS(322), - [anon_sym_if] = ACTIONS(322), - [anon_sym_unless] = ACTIONS(322), - [anon_sym_always] = ACTIONS(322), - [anon_sym_thereis] = ACTIONS(322), - [anon_sym_never] = ACTIONS(322), - [anon_sym_else] = ACTIONS(322), - [anon_sym_finally] = ACTIONS(322), - [anon_sym_return] = ACTIONS(322), - [anon_sym_initially] = ACTIONS(322), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(325), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(313), + [anon_sym_cl] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(338), + [aux_sym_accumulation_verb_token1] = ACTIONS(340), + [anon_sym_for] = ACTIONS(340), + [anon_sym_and] = ACTIONS(340), + [anon_sym_as] = ACTIONS(340), + [anon_sym_with] = ACTIONS(340), + [anon_sym_do] = ACTIONS(340), + [anon_sym_while] = ACTIONS(340), + [anon_sym_until] = ACTIONS(340), + [anon_sym_repeat] = ACTIONS(340), + [anon_sym_when] = ACTIONS(340), + [anon_sym_if] = ACTIONS(340), + [anon_sym_unless] = ACTIONS(340), + [anon_sym_always] = ACTIONS(340), + [anon_sym_thereis] = ACTIONS(340), + [anon_sym_never] = ACTIONS(340), + [anon_sym_else] = ACTIONS(340), + [anon_sym_finally] = ACTIONS(340), + [anon_sym_return] = ACTIONS(340), + [anon_sym_initially] = ACTIONS(340), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(343), + [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(16), - [sym_dis_expr] = STATE(16), - [sym__form] = STATE(2044), - [sym_num_lit] = STATE(2044), - [sym_kwd_lit] = STATE(2044), - [sym_str_lit] = STATE(2044), - [sym_char_lit] = STATE(2044), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2044), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2044), - [sym_set_lit] = STATE(2044), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2044), - [sym_splicing_read_cond_lit] = STATE(2044), - [sym_var_quoting_lit] = STATE(2044), - [sym_quoting_lit] = STATE(2044), - [sym_syn_quoting_lit] = STATE(2044), - [sym_unquote_splicing_lit] = STATE(2044), - [sym_unquoting_lit] = STATE(2044), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2044), - [sym_package_lit] = STATE(2044), - [sym_include_reader_macro] = STATE(2044), - [sym_complex_num_lit] = STATE(2044), - [aux_sym_dis_expr_repeat1] = STATE(16), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(327), - [sym_comment] = ACTIONS(327), - [anon_sym_POUND_] = ACTIONS(331), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(335), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(337), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(335), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(341), - [anon_sym_POUND_CARET] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(349), - [anon_sym_RPAREN] = ACTIONS(353), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(18), + [sym_dis_expr] = STATE(18), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(18), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(345), + [sym_comment] = ACTIONS(345), + [anon_sym_POUND_] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(353), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(355), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(353), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(359), + [anon_sym_POUND_CARET] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_RPAREN] = ACTIONS(371), + [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(335), - [anon_sym_cl] = ACTIONS(356), - [anon_sym_EQ] = ACTIONS(360), - [aux_sym_accumulation_verb_token1] = ACTIONS(362), - [anon_sym_for] = ACTIONS(362), - [anon_sym_and] = ACTIONS(362), - [anon_sym_as] = ACTIONS(362), - [anon_sym_with] = ACTIONS(362), - [anon_sym_do] = ACTIONS(362), - [anon_sym_while] = ACTIONS(362), - [anon_sym_until] = ACTIONS(362), - [anon_sym_repeat] = ACTIONS(362), - [anon_sym_when] = ACTIONS(362), - [anon_sym_if] = ACTIONS(362), - [anon_sym_unless] = ACTIONS(362), - [anon_sym_always] = ACTIONS(362), - [anon_sym_thereis] = ACTIONS(362), - [anon_sym_never] = ACTIONS(362), - [anon_sym_else] = ACTIONS(362), - [anon_sym_finally] = ACTIONS(362), - [anon_sym_return] = ACTIONS(362), - [anon_sym_initially] = ACTIONS(362), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(365), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(353), + [anon_sym_cl] = ACTIONS(374), + [anon_sym_EQ] = ACTIONS(378), + [aux_sym_accumulation_verb_token1] = ACTIONS(380), + [anon_sym_for] = ACTIONS(380), + [anon_sym_and] = ACTIONS(380), + [anon_sym_as] = ACTIONS(380), + [anon_sym_with] = ACTIONS(380), + [anon_sym_do] = ACTIONS(380), + [anon_sym_while] = ACTIONS(380), + [anon_sym_until] = ACTIONS(380), + [anon_sym_repeat] = ACTIONS(380), + [anon_sym_when] = ACTIONS(380), + [anon_sym_if] = ACTIONS(380), + [anon_sym_unless] = ACTIONS(380), + [anon_sym_always] = ACTIONS(380), + [anon_sym_thereis] = ACTIONS(380), + [anon_sym_never] = ACTIONS(380), + [anon_sym_else] = ACTIONS(380), + [anon_sym_finally] = ACTIONS(380), + [anon_sym_return] = ACTIONS(380), + [anon_sym_initially] = ACTIONS(380), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(383), + [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(25), - [sym_dis_expr] = STATE(25), - [sym__form] = STATE(2046), - [sym_num_lit] = STATE(2046), - [sym_kwd_lit] = STATE(2046), - [sym_str_lit] = STATE(2046), - [sym_char_lit] = STATE(2046), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2046), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2046), - [sym_set_lit] = STATE(2046), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2046), - [sym_splicing_read_cond_lit] = STATE(2046), - [sym_var_quoting_lit] = STATE(2046), - [sym_quoting_lit] = STATE(2046), - [sym_syn_quoting_lit] = STATE(2046), - [sym_unquote_splicing_lit] = STATE(2046), - [sym_unquoting_lit] = STATE(2046), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2046), - [sym_package_lit] = STATE(2046), - [sym_include_reader_macro] = STATE(2046), - [sym_complex_num_lit] = STATE(2046), - [aux_sym_dis_expr_repeat1] = STATE(25), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(367), - [sym_comment] = ACTIONS(367), - [anon_sym_POUND_] = ACTIONS(219), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(371), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(371), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(239), - [anon_sym_POUND_CARET] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_RPAREN] = ACTIONS(251), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(2), + [sym_num_lit] = STATE(2), + [sym_kwd_lit] = STATE(2), + [sym_str_lit] = STATE(2), + [sym_char_lit] = STATE(2), + [sym_sym_lit] = STATE(1072), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2), + [sym__bare_list_lit] = STATE(1070), + [sym_vec_lit] = STATE(2), + [sym_set_lit] = STATE(2), + [sym__bare_set_lit] = STATE(1069), + [sym_read_cond_lit] = STATE(2), + [sym_splicing_read_cond_lit] = STATE(2), + [sym_var_quoting_lit] = STATE(2), + [sym_quoting_lit] = STATE(2), + [sym_syn_quoting_lit] = STATE(2), + [sym_unquote_splicing_lit] = STATE(2), + [sym_unquoting_lit] = STATE(2), + [sym_defun] = STATE(1070), + [sym_loop_macro] = STATE(1070), + [sym_path_lit] = STATE(2), + [sym_package_lit] = STATE(2), + [sym_include_reader_macro] = STATE(2), + [sym_complex_num_lit] = STATE(2), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2797), + [sym__ws] = ACTIONS(385), + [sym_comment] = ACTIONS(385), + [anon_sym_POUND_] = ACTIONS(388), + [anon_sym_POUND] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(391), + [aux_sym_num_lit_token1] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(226), + [anon_sym_DQUOTE] = ACTIONS(228), + [sym_nil_lit] = ACTIONS(391), + [aux_sym_sym_lit_token1] = ACTIONS(230), + [anon_sym_CARET] = ACTIONS(396), + [anon_sym_POUND_CARET] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(405), + [anon_sym_POUND0A] = ACTIONS(243), + [anon_sym_POUND0a] = ACTIONS(243), + [anon_sym_POUND_QMARK] = ACTIONS(245), + [anon_sym_POUND_QMARK_AT] = ACTIONS(247), + [anon_sym_POUND_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_COMMA_AT] = ACTIONS(255), + [anon_sym_COMMA] = ACTIONS(257), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(371), - [anon_sym_cl] = ACTIONS(377), - [anon_sym_EQ] = ACTIONS(381), - [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(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(383), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(391), + [anon_sym_cl] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(410), + [aux_sym_accumulation_verb_token1] = ACTIONS(412), + [anon_sym_for] = ACTIONS(412), + [anon_sym_and] = ACTIONS(412), + [anon_sym_as] = ACTIONS(412), + [anon_sym_with] = ACTIONS(412), + [anon_sym_do] = ACTIONS(412), + [anon_sym_while] = ACTIONS(412), + [anon_sym_until] = ACTIONS(412), + [anon_sym_repeat] = ACTIONS(412), + [anon_sym_when] = ACTIONS(412), + [anon_sym_if] = ACTIONS(412), + [anon_sym_unless] = ACTIONS(412), + [anon_sym_always] = ACTIONS(412), + [anon_sym_thereis] = ACTIONS(412), + [anon_sym_never] = ACTIONS(412), + [anon_sym_else] = ACTIONS(412), + [anon_sym_finally] = ACTIONS(412), + [anon_sym_return] = ACTIONS(412), + [anon_sym_initially] = ACTIONS(412), + [anon_sym_POUNDP] = ACTIONS(266), + [anon_sym_POUNDp] = ACTIONS(266), + [sym_self_referential_reader_macro] = ACTIONS(414), + [anon_sym_POUND_PLUS] = ACTIONS(270), + [anon_sym_POUND_DASH] = ACTIONS(270), + [anon_sym_POUNDC] = ACTIONS(272), + [anon_sym_POUNDc] = ACTIONS(272), }, [10] = { - [sym__gap] = STATE(981), - [sym_dis_expr] = STATE(981), - [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(1062), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(26), - [sym__bare_list_lit] = STATE(1015), - [sym_vec_lit] = STATE(26), - [sym_set_lit] = STATE(26), - [sym__bare_set_lit] = STATE(1027), - [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(1015), - [sym_loop_macro] = STATE(1015), - [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(981), - [aux_sym_list_lit_repeat1] = STATE(2775), - [sym__ws] = ACTIONS(184), - [sym_comment] = ACTIONS(184), - [anon_sym_POUND_] = ACTIONS(187), - [anon_sym_POUND] = ACTIONS(65), - [anon_sym_DOT] = ACTIONS(385), - [aux_sym_num_lit_token1] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(74), - [anon_sym_DQUOTE] = ACTIONS(76), - [sym_nil_lit] = ACTIONS(385), - [aux_sym_sym_lit_token1] = ACTIONS(78), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_POUND_CARET] = ACTIONS(198), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(204), - [anon_sym_POUND0A] = ACTIONS(91), - [anon_sym_POUND0a] = ACTIONS(91), - [anon_sym_POUND_QMARK] = ACTIONS(93), - [anon_sym_POUND_QMARK_AT] = ACTIONS(95), - [anon_sym_POUND_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_BQUOTE] = ACTIONS(101), - [anon_sym_COMMA_AT] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(105), + [sym__gap] = STATE(16), + [sym_dis_expr] = STATE(16), + [sym__form] = STATE(3), + [sym_num_lit] = STATE(3), + [sym_kwd_lit] = STATE(3), + [sym_str_lit] = STATE(3), + [sym_char_lit] = STATE(3), + [sym_sym_lit] = STATE(1072), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(3), + [sym__bare_list_lit] = STATE(1070), + [sym_vec_lit] = STATE(3), + [sym_set_lit] = STATE(3), + [sym__bare_set_lit] = STATE(1069), + [sym_read_cond_lit] = STATE(3), + [sym_splicing_read_cond_lit] = STATE(3), + [sym_var_quoting_lit] = STATE(3), + [sym_quoting_lit] = STATE(3), + [sym_syn_quoting_lit] = STATE(3), + [sym_unquote_splicing_lit] = STATE(3), + [sym_unquoting_lit] = STATE(3), + [sym_defun] = STATE(1070), + [sym_loop_macro] = STATE(1070), + [sym_path_lit] = STATE(3), + [sym_package_lit] = STATE(3), + [sym_include_reader_macro] = STATE(3), + [sym_complex_num_lit] = STATE(3), + [aux_sym_dis_expr_repeat1] = STATE(16), + [aux_sym_list_lit_repeat1] = STATE(2797), + [sym__ws] = ACTIONS(416), + [sym_comment] = ACTIONS(416), + [anon_sym_POUND_] = ACTIONS(419), + [anon_sym_POUND] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(422), + [aux_sym_num_lit_token1] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(226), + [anon_sym_DQUOTE] = ACTIONS(228), + [sym_nil_lit] = ACTIONS(422), + [aux_sym_sym_lit_token1] = ACTIONS(230), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_POUND_CARET] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(433), + [anon_sym_RPAREN] = ACTIONS(436), + [anon_sym_POUND0A] = ACTIONS(243), + [anon_sym_POUND0a] = ACTIONS(243), + [anon_sym_POUND_QMARK] = ACTIONS(245), + [anon_sym_POUND_QMARK_AT] = ACTIONS(247), + [anon_sym_POUND_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_COMMA_AT] = ACTIONS(255), + [anon_sym_COMMA] = ACTIONS(257), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(385), - [anon_sym_cl] = ACTIONS(390), - [anon_sym_EQ] = ACTIONS(393), - [aux_sym_accumulation_verb_token1] = ACTIONS(211), - [anon_sym_for] = ACTIONS(211), - [anon_sym_and] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_with] = ACTIONS(211), - [anon_sym_do] = ACTIONS(211), - [anon_sym_while] = ACTIONS(211), - [anon_sym_until] = ACTIONS(211), - [anon_sym_repeat] = ACTIONS(211), - [anon_sym_when] = ACTIONS(211), - [anon_sym_if] = ACTIONS(211), - [anon_sym_unless] = ACTIONS(211), - [anon_sym_always] = ACTIONS(211), - [anon_sym_thereis] = ACTIONS(211), - [anon_sym_never] = ACTIONS(211), - [anon_sym_else] = ACTIONS(211), - [anon_sym_finally] = ACTIONS(211), - [anon_sym_return] = ACTIONS(211), - [anon_sym_initially] = ACTIONS(211), - [anon_sym_POUNDP] = ACTIONS(114), - [anon_sym_POUNDp] = ACTIONS(114), - [sym_self_referential_reader_macro] = ACTIONS(395), - [anon_sym_POUND_PLUS] = ACTIONS(118), - [anon_sym_POUND_DASH] = ACTIONS(118), - [anon_sym_POUNDC] = ACTIONS(120), - [anon_sym_POUNDc] = ACTIONS(120), + [sym_fancy_literal] = ACTIONS(422), + [anon_sym_cl] = ACTIONS(438), + [anon_sym_EQ] = ACTIONS(441), + [aux_sym_accumulation_verb_token1] = ACTIONS(443), + [anon_sym_for] = ACTIONS(443), + [anon_sym_and] = ACTIONS(443), + [anon_sym_as] = ACTIONS(443), + [anon_sym_with] = ACTIONS(443), + [anon_sym_do] = ACTIONS(443), + [anon_sym_while] = ACTIONS(443), + [anon_sym_until] = ACTIONS(443), + [anon_sym_repeat] = ACTIONS(443), + [anon_sym_when] = ACTIONS(443), + [anon_sym_if] = ACTIONS(443), + [anon_sym_unless] = ACTIONS(443), + [anon_sym_always] = ACTIONS(443), + [anon_sym_thereis] = ACTIONS(443), + [anon_sym_never] = ACTIONS(443), + [anon_sym_else] = ACTIONS(443), + [anon_sym_finally] = ACTIONS(443), + [anon_sym_return] = ACTIONS(443), + [anon_sym_initially] = ACTIONS(443), + [anon_sym_POUNDP] = ACTIONS(266), + [anon_sym_POUNDp] = ACTIONS(266), + [sym_self_referential_reader_macro] = ACTIONS(445), + [anon_sym_POUND_PLUS] = ACTIONS(270), + [anon_sym_POUND_DASH] = ACTIONS(270), + [anon_sym_POUNDC] = ACTIONS(272), + [anon_sym_POUNDc] = ACTIONS(272), }, [11] = { - [sym__gap] = STATE(981), - [sym_dis_expr] = STATE(981), - [sym__form] = STATE(2052), - [sym_num_lit] = STATE(2052), - [sym_kwd_lit] = STATE(2052), - [sym_str_lit] = STATE(2052), - [sym_char_lit] = STATE(2052), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2052), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2052), - [sym_set_lit] = STATE(2052), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2052), - [sym_splicing_read_cond_lit] = STATE(2052), - [sym_var_quoting_lit] = STATE(2052), - [sym_quoting_lit] = STATE(2052), - [sym_syn_quoting_lit] = STATE(2052), - [sym_unquote_splicing_lit] = STATE(2052), - [sym_unquoting_lit] = STATE(2052), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2052), - [sym_package_lit] = STATE(2052), - [sym_include_reader_macro] = STATE(2052), - [sym_complex_num_lit] = STATE(2052), - [aux_sym_dis_expr_repeat1] = STATE(981), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(397), - [sym_comment] = ACTIONS(397), - [anon_sym_POUND_] = ACTIONS(401), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(405), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(407), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(405), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(411), - [anon_sym_POUND_CARET] = ACTIONS(415), - [anon_sym_LPAREN] = ACTIONS(419), - [anon_sym_RPAREN] = ACTIONS(423), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(24), + [sym_dis_expr] = STATE(24), + [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(1072), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(24), + [aux_sym_list_lit_repeat1] = STATE(2797), + [sym__ws] = ACTIONS(447), + [sym_comment] = ACTIONS(447), + [anon_sym_POUND_] = ACTIONS(419), + [anon_sym_POUND] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(450), + [aux_sym_num_lit_token1] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(452), + [anon_sym_COLON_COLON] = ACTIONS(226), + [anon_sym_DQUOTE] = ACTIONS(228), + [sym_nil_lit] = ACTIONS(450), + [aux_sym_sym_lit_token1] = ACTIONS(230), + [anon_sym_CARET] = ACTIONS(427), + [anon_sym_POUND_CARET] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(433), + [anon_sym_RPAREN] = ACTIONS(436), + [anon_sym_POUND0A] = ACTIONS(243), + [anon_sym_POUND0a] = ACTIONS(243), + [anon_sym_POUND_QMARK] = ACTIONS(245), + [anon_sym_POUND_QMARK_AT] = ACTIONS(247), + [anon_sym_POUND_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_COMMA_AT] = ACTIONS(255), + [anon_sym_COMMA] = ACTIONS(257), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(405), - [anon_sym_cl] = ACTIONS(426), - [anon_sym_EQ] = ACTIONS(430), - [aux_sym_accumulation_verb_token1] = ACTIONS(432), - [anon_sym_for] = ACTIONS(432), - [anon_sym_and] = ACTIONS(432), - [anon_sym_as] = ACTIONS(432), - [anon_sym_with] = ACTIONS(432), - [anon_sym_do] = ACTIONS(432), - [anon_sym_while] = ACTIONS(432), - [anon_sym_until] = ACTIONS(432), - [anon_sym_repeat] = ACTIONS(432), - [anon_sym_when] = ACTIONS(432), - [anon_sym_if] = ACTIONS(432), - [anon_sym_unless] = ACTIONS(432), - [anon_sym_always] = ACTIONS(432), - [anon_sym_thereis] = ACTIONS(432), - [anon_sym_never] = ACTIONS(432), - [anon_sym_else] = ACTIONS(432), - [anon_sym_finally] = ACTIONS(432), - [anon_sym_return] = ACTIONS(432), - [anon_sym_initially] = ACTIONS(432), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(435), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(450), + [anon_sym_cl] = ACTIONS(455), + [anon_sym_EQ] = ACTIONS(458), + [aux_sym_accumulation_verb_token1] = ACTIONS(443), + [anon_sym_for] = ACTIONS(443), + [anon_sym_and] = ACTIONS(443), + [anon_sym_as] = ACTIONS(443), + [anon_sym_with] = ACTIONS(443), + [anon_sym_do] = ACTIONS(443), + [anon_sym_while] = ACTIONS(443), + [anon_sym_until] = ACTIONS(443), + [anon_sym_repeat] = ACTIONS(443), + [anon_sym_when] = ACTIONS(443), + [anon_sym_if] = ACTIONS(443), + [anon_sym_unless] = ACTIONS(443), + [anon_sym_always] = ACTIONS(443), + [anon_sym_thereis] = ACTIONS(443), + [anon_sym_never] = ACTIONS(443), + [anon_sym_else] = ACTIONS(443), + [anon_sym_finally] = ACTIONS(443), + [anon_sym_return] = ACTIONS(443), + [anon_sym_initially] = ACTIONS(443), + [anon_sym_POUNDP] = ACTIONS(266), + [anon_sym_POUNDp] = ACTIONS(266), + [sym_self_referential_reader_macro] = ACTIONS(460), + [anon_sym_POUND_PLUS] = ACTIONS(270), + [anon_sym_POUND_DASH] = ACTIONS(270), + [anon_sym_POUNDC] = ACTIONS(272), + [anon_sym_POUNDc] = ACTIONS(272), }, [12] = { - [sym__gap] = STATE(27), - [sym_dis_expr] = STATE(27), - [sym__form] = STATE(2054), - [sym_num_lit] = STATE(2054), - [sym_kwd_lit] = STATE(2054), - [sym_str_lit] = STATE(2054), - [sym_char_lit] = STATE(2054), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2054), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2054), - [sym_set_lit] = STATE(2054), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2054), - [sym_splicing_read_cond_lit] = STATE(2054), - [sym_var_quoting_lit] = STATE(2054), - [sym_quoting_lit] = STATE(2054), - [sym_syn_quoting_lit] = STATE(2054), - [sym_unquote_splicing_lit] = STATE(2054), - [sym_unquoting_lit] = STATE(2054), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2054), - [sym_package_lit] = STATE(2054), - [sym_include_reader_macro] = STATE(2054), - [sym_complex_num_lit] = STATE(2054), - [aux_sym_dis_expr_repeat1] = STATE(27), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(437), - [sym_comment] = ACTIONS(437), - [anon_sym_POUND_] = ACTIONS(441), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(445), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(447), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(445), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(451), - [anon_sym_POUND_CARET] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(459), - [anon_sym_RPAREN] = ACTIONS(463), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(532), + [sym_dis_expr] = STATE(532), + [sym__form] = STATE(993), + [sym_num_lit] = STATE(993), + [sym_kwd_lit] = STATE(993), + [sym_str_lit] = STATE(993), + [sym_char_lit] = STATE(993), + [sym_sym_lit] = STATE(1158), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(993), + [sym__bare_list_lit] = STATE(1192), + [sym_vec_lit] = STATE(993), + [sym_set_lit] = STATE(993), + [sym__bare_set_lit] = STATE(1201), + [sym_read_cond_lit] = STATE(993), + [sym_splicing_read_cond_lit] = STATE(993), + [sym_var_quoting_lit] = STATE(993), + [sym_quoting_lit] = STATE(993), + [sym_syn_quoting_lit] = STATE(993), + [sym_unquote_splicing_lit] = STATE(993), + [sym_unquoting_lit] = STATE(993), + [sym_defun] = STATE(1192), + [sym_loop_macro] = STATE(1192), + [sym_path_lit] = STATE(993), + [sym_package_lit] = STATE(993), + [sym_include_reader_macro] = STATE(993), + [sym_complex_num_lit] = STATE(993), + [aux_sym_dis_expr_repeat1] = STATE(532), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym_do_clause_repeat1] = STATE(20), + [sym__ws] = ACTIONS(462), + [sym_comment] = ACTIONS(462), + [anon_sym_POUND_] = ACTIONS(462), + [anon_sym_POUND] = ACTIONS(173), + [anon_sym_DOT] = ACTIONS(175), + [aux_sym_num_lit_token1] = ACTIONS(177), + [anon_sym_COLON] = ACTIONS(464), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(183), + [sym_nil_lit] = ACTIONS(175), + [aux_sym_sym_lit_token1] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(462), + [anon_sym_POUND_CARET] = ACTIONS(462), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_RPAREN] = ACTIONS(462), + [anon_sym_POUND0A] = ACTIONS(187), + [anon_sym_POUND0a] = ACTIONS(187), + [anon_sym_POUND_QMARK] = ACTIONS(189), + [anon_sym_POUND_QMARK_AT] = ACTIONS(191), + [anon_sym_POUND_SQUOTE] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [anon_sym_BQUOTE] = ACTIONS(197), + [anon_sym_COMMA_AT] = ACTIONS(199), + [anon_sym_COMMA] = ACTIONS(201), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(445), - [anon_sym_cl] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(470), - [aux_sym_accumulation_verb_token1] = ACTIONS(472), - [anon_sym_for] = ACTIONS(472), - [anon_sym_and] = ACTIONS(472), - [anon_sym_as] = ACTIONS(472), - [anon_sym_with] = ACTIONS(472), - [anon_sym_do] = ACTIONS(472), - [anon_sym_while] = ACTIONS(472), - [anon_sym_until] = ACTIONS(472), - [anon_sym_repeat] = ACTIONS(472), - [anon_sym_when] = ACTIONS(472), - [anon_sym_if] = ACTIONS(472), - [anon_sym_unless] = ACTIONS(472), - [anon_sym_always] = ACTIONS(472), - [anon_sym_thereis] = ACTIONS(472), - [anon_sym_never] = ACTIONS(472), - [anon_sym_else] = ACTIONS(472), - [anon_sym_finally] = ACTIONS(472), - [anon_sym_return] = ACTIONS(472), - [anon_sym_initially] = ACTIONS(472), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(475), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(175), + [anon_sym_cl] = ACTIONS(464), + [aux_sym_accumulation_verb_token1] = ACTIONS(464), + [anon_sym_for] = ACTIONS(464), + [anon_sym_and] = ACTIONS(464), + [anon_sym_as] = ACTIONS(464), + [anon_sym_with] = ACTIONS(464), + [anon_sym_do] = ACTIONS(464), + [anon_sym_while] = ACTIONS(464), + [anon_sym_until] = ACTIONS(464), + [anon_sym_repeat] = ACTIONS(464), + [anon_sym_when] = ACTIONS(464), + [anon_sym_if] = ACTIONS(464), + [anon_sym_unless] = ACTIONS(464), + [anon_sym_always] = ACTIONS(464), + [anon_sym_thereis] = ACTIONS(464), + [anon_sym_never] = ACTIONS(464), + [anon_sym_else] = ACTIONS(464), + [anon_sym_finally] = ACTIONS(464), + [anon_sym_return] = ACTIONS(464), + [anon_sym_initially] = ACTIONS(464), + [anon_sym_POUNDP] = ACTIONS(203), + [anon_sym_POUNDp] = ACTIONS(203), + [sym_self_referential_reader_macro] = ACTIONS(205), + [anon_sym_POUND_PLUS] = ACTIONS(207), + [anon_sym_POUND_DASH] = ACTIONS(207), + [anon_sym_POUNDC] = ACTIONS(209), + [anon_sym_POUNDc] = ACTIONS(209), }, [13] = { - [sym__gap] = STATE(28), - [sym_dis_expr] = STATE(28), - [sym__form] = STATE(2056), - [sym_num_lit] = STATE(2056), - [sym_kwd_lit] = STATE(2056), - [sym_str_lit] = STATE(2056), - [sym_char_lit] = STATE(2056), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2056), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2056), - [sym_set_lit] = STATE(2056), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2056), - [sym_splicing_read_cond_lit] = STATE(2056), - [sym_var_quoting_lit] = STATE(2056), - [sym_quoting_lit] = STATE(2056), - [sym_syn_quoting_lit] = STATE(2056), - [sym_unquote_splicing_lit] = STATE(2056), - [sym_unquoting_lit] = STATE(2056), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2056), - [sym_package_lit] = STATE(2056), - [sym_include_reader_macro] = STATE(2056), - [sym_complex_num_lit] = STATE(2056), - [aux_sym_dis_expr_repeat1] = STATE(28), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(477), - [sym_comment] = ACTIONS(477), - [anon_sym_POUND_] = ACTIONS(481), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(485), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(487), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(485), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(491), - [anon_sym_POUND_CARET] = ACTIONS(495), - [anon_sym_LPAREN] = ACTIONS(499), - [anon_sym_RPAREN] = ACTIONS(503), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(2522), + [sym_num_lit] = STATE(2522), + [sym_kwd_lit] = STATE(2522), + [sym_str_lit] = STATE(2522), + [sym_char_lit] = STATE(2522), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2522), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2522), + [sym_set_lit] = STATE(2522), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2522), + [sym_splicing_read_cond_lit] = STATE(2522), + [sym_var_quoting_lit] = STATE(2522), + [sym_quoting_lit] = STATE(2522), + [sym_syn_quoting_lit] = STATE(2522), + [sym_unquote_splicing_lit] = STATE(2522), + [sym_unquoting_lit] = STATE(2522), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2522), + [sym_package_lit] = STATE(2522), + [sym_include_reader_macro] = STATE(2522), + [sym_complex_num_lit] = STATE(2522), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(466), + [sym_comment] = ACTIONS(466), + [anon_sym_POUND_] = ACTIONS(470), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(474), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(474), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(480), + [anon_sym_POUND_CARET] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(488), + [anon_sym_RPAREN] = ACTIONS(492), + [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(485), - [anon_sym_cl] = ACTIONS(506), - [anon_sym_EQ] = ACTIONS(510), - [aux_sym_accumulation_verb_token1] = ACTIONS(512), - [anon_sym_for] = ACTIONS(512), - [anon_sym_and] = ACTIONS(512), - [anon_sym_as] = ACTIONS(512), - [anon_sym_with] = ACTIONS(512), - [anon_sym_do] = ACTIONS(512), - [anon_sym_while] = ACTIONS(512), - [anon_sym_until] = ACTIONS(512), - [anon_sym_repeat] = ACTIONS(512), - [anon_sym_when] = ACTIONS(512), - [anon_sym_if] = ACTIONS(512), - [anon_sym_unless] = ACTIONS(512), - [anon_sym_always] = ACTIONS(512), - [anon_sym_thereis] = ACTIONS(512), - [anon_sym_never] = ACTIONS(512), - [anon_sym_else] = ACTIONS(512), - [anon_sym_finally] = ACTIONS(512), - [anon_sym_return] = ACTIONS(512), - [anon_sym_initially] = ACTIONS(512), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(515), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(474), + [anon_sym_cl] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(499), + [aux_sym_accumulation_verb_token1] = ACTIONS(501), + [anon_sym_for] = ACTIONS(501), + [anon_sym_and] = ACTIONS(501), + [anon_sym_as] = ACTIONS(501), + [anon_sym_with] = ACTIONS(501), + [anon_sym_do] = ACTIONS(501), + [anon_sym_while] = ACTIONS(501), + [anon_sym_until] = ACTIONS(501), + [anon_sym_repeat] = ACTIONS(501), + [anon_sym_when] = ACTIONS(501), + [anon_sym_if] = ACTIONS(501), + [anon_sym_unless] = ACTIONS(501), + [anon_sym_always] = ACTIONS(501), + [anon_sym_thereis] = ACTIONS(501), + [anon_sym_never] = ACTIONS(501), + [anon_sym_else] = ACTIONS(501), + [anon_sym_finally] = ACTIONS(501), + [anon_sym_return] = ACTIONS(501), + [anon_sym_initially] = ACTIONS(501), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(504), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [14] = { - [sym__gap] = STATE(981), - [sym_dis_expr] = STATE(981), - [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(1062), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(29), - [sym__bare_list_lit] = STATE(1015), - [sym_vec_lit] = STATE(29), - [sym_set_lit] = STATE(29), - [sym__bare_set_lit] = STATE(1027), - [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(1015), - [sym_loop_macro] = STATE(1015), - [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(981), - [aux_sym_list_lit_repeat1] = STATE(2775), - [sym__ws] = ACTIONS(59), - [sym_comment] = ACTIONS(59), - [anon_sym_POUND_] = ACTIONS(62), - [anon_sym_POUND] = ACTIONS(65), - [anon_sym_DOT] = ACTIONS(517), - [aux_sym_num_lit_token1] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(519), - [anon_sym_COLON_COLON] = ACTIONS(74), - [anon_sym_DQUOTE] = ACTIONS(76), - [sym_nil_lit] = ACTIONS(517), - [aux_sym_sym_lit_token1] = ACTIONS(78), - [anon_sym_CARET] = ACTIONS(80), - [anon_sym_POUND_CARET] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(86), - [anon_sym_RPAREN] = ACTIONS(89), - [anon_sym_POUND0A] = ACTIONS(91), - [anon_sym_POUND0a] = ACTIONS(91), - [anon_sym_POUND_QMARK] = ACTIONS(93), - [anon_sym_POUND_QMARK_AT] = ACTIONS(95), - [anon_sym_POUND_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_BQUOTE] = ACTIONS(101), - [anon_sym_COMMA_AT] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(105), + [sym__gap] = STATE(26), + [sym_dis_expr] = STATE(26), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(26), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(506), + [sym_comment] = ACTIONS(506), + [anon_sym_POUND_] = ACTIONS(510), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(514), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(516), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(514), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(520), + [anon_sym_POUND_CARET] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(528), + [anon_sym_RPAREN] = ACTIONS(532), + [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(517), - [anon_sym_cl] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(525), - [aux_sym_accumulation_verb_token1] = ACTIONS(112), - [anon_sym_for] = ACTIONS(112), - [anon_sym_and] = ACTIONS(112), - [anon_sym_as] = ACTIONS(112), - [anon_sym_with] = ACTIONS(112), - [anon_sym_do] = ACTIONS(112), - [anon_sym_while] = ACTIONS(112), - [anon_sym_until] = ACTIONS(112), - [anon_sym_repeat] = ACTIONS(112), - [anon_sym_when] = ACTIONS(112), - [anon_sym_if] = ACTIONS(112), - [anon_sym_unless] = ACTIONS(112), - [anon_sym_always] = ACTIONS(112), - [anon_sym_thereis] = ACTIONS(112), - [anon_sym_never] = ACTIONS(112), - [anon_sym_else] = ACTIONS(112), - [anon_sym_finally] = ACTIONS(112), - [anon_sym_return] = ACTIONS(112), - [anon_sym_initially] = ACTIONS(112), - [anon_sym_POUNDP] = ACTIONS(114), - [anon_sym_POUNDp] = ACTIONS(114), - [sym_self_referential_reader_macro] = ACTIONS(527), - [anon_sym_POUND_PLUS] = ACTIONS(118), - [anon_sym_POUND_DASH] = ACTIONS(118), - [anon_sym_POUNDC] = ACTIONS(120), - [anon_sym_POUNDc] = ACTIONS(120), + [sym_fancy_literal] = ACTIONS(514), + [anon_sym_cl] = ACTIONS(535), + [anon_sym_EQ] = ACTIONS(539), + [aux_sym_accumulation_verb_token1] = ACTIONS(541), + [anon_sym_for] = ACTIONS(541), + [anon_sym_and] = ACTIONS(541), + [anon_sym_as] = ACTIONS(541), + [anon_sym_with] = ACTIONS(541), + [anon_sym_do] = ACTIONS(541), + [anon_sym_while] = ACTIONS(541), + [anon_sym_until] = ACTIONS(541), + [anon_sym_repeat] = ACTIONS(541), + [anon_sym_when] = ACTIONS(541), + [anon_sym_if] = ACTIONS(541), + [anon_sym_unless] = ACTIONS(541), + [anon_sym_always] = ACTIONS(541), + [anon_sym_thereis] = ACTIONS(541), + [anon_sym_never] = ACTIONS(541), + [anon_sym_else] = ACTIONS(541), + [anon_sym_finally] = ACTIONS(541), + [anon_sym_return] = ACTIONS(541), + [anon_sym_initially] = ACTIONS(541), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(544), + [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(692), - [sym_dis_expr] = STATE(692), - [sym__form] = STATE(983), - [sym_num_lit] = STATE(983), - [sym_kwd_lit] = STATE(983), - [sym_str_lit] = STATE(983), - [sym_char_lit] = STATE(983), - [sym_sym_lit] = STATE(1129), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(983), - [sym__bare_list_lit] = STATE(1135), - [sym_vec_lit] = STATE(983), - [sym_set_lit] = STATE(983), - [sym__bare_set_lit] = STATE(1150), - [sym_read_cond_lit] = STATE(983), - [sym_splicing_read_cond_lit] = STATE(983), - [sym_var_quoting_lit] = STATE(983), - [sym_quoting_lit] = STATE(983), - [sym_syn_quoting_lit] = STATE(983), - [sym_unquote_splicing_lit] = STATE(983), - [sym_unquoting_lit] = STATE(983), - [sym_defun] = STATE(1135), - [sym_loop_macro] = STATE(1135), - [sym_path_lit] = STATE(983), - [sym_package_lit] = STATE(983), - [sym_include_reader_macro] = STATE(983), - [sym_complex_num_lit] = STATE(983), - [aux_sym_dis_expr_repeat1] = STATE(692), - [aux_sym_list_lit_repeat1] = STATE(2796), - [aux_sym_do_clause_repeat1] = STATE(15), - [sym__ws] = ACTIONS(529), - [sym_comment] = ACTIONS(529), - [anon_sym_POUND_] = ACTIONS(532), - [anon_sym_POUND] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(538), - [aux_sym_num_lit_token1] = ACTIONS(541), - [anon_sym_COLON] = ACTIONS(544), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(550), - [sym_nil_lit] = ACTIONS(538), - [aux_sym_sym_lit_token1] = ACTIONS(553), - [anon_sym_CARET] = ACTIONS(556), - [anon_sym_POUND_CARET] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_RPAREN] = ACTIONS(565), - [anon_sym_POUND0A] = ACTIONS(567), - [anon_sym_POUND0a] = ACTIONS(567), - [anon_sym_POUND_QMARK] = ACTIONS(570), - [anon_sym_POUND_QMARK_AT] = ACTIONS(573), - [anon_sym_POUND_SQUOTE] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(579), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_COMMA_AT] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(588), + [sym__gap] = STATE(27), + [sym_dis_expr] = STATE(27), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(27), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(546), + [sym_comment] = ACTIONS(546), + [anon_sym_POUND_] = ACTIONS(349), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(550), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(552), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(550), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(359), + [anon_sym_POUND_CARET] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_RPAREN] = ACTIONS(371), + [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(591), - [aux_sym_accumulation_verb_token1] = ACTIONS(594), - [anon_sym_for] = ACTIONS(594), - [anon_sym_and] = ACTIONS(594), - [anon_sym_as] = ACTIONS(594), - [anon_sym_with] = ACTIONS(594), - [anon_sym_do] = ACTIONS(594), - [anon_sym_while] = ACTIONS(594), - [anon_sym_until] = ACTIONS(594), - [anon_sym_repeat] = ACTIONS(594), - [anon_sym_when] = ACTIONS(594), - [anon_sym_if] = ACTIONS(594), - [anon_sym_unless] = ACTIONS(594), - [anon_sym_always] = ACTIONS(594), - [anon_sym_thereis] = ACTIONS(594), - [anon_sym_never] = ACTIONS(594), - [anon_sym_else] = ACTIONS(594), - [anon_sym_finally] = ACTIONS(594), - [anon_sym_return] = ACTIONS(594), - [anon_sym_initially] = ACTIONS(594), - [anon_sym_POUNDP] = ACTIONS(596), - [anon_sym_POUNDp] = ACTIONS(596), - [sym_self_referential_reader_macro] = ACTIONS(599), - [anon_sym_POUND_PLUS] = ACTIONS(602), - [anon_sym_POUND_DASH] = ACTIONS(602), - [anon_sym_POUNDC] = ACTIONS(605), - [anon_sym_POUNDc] = ACTIONS(605), + [sym_fancy_literal] = ACTIONS(550), + [anon_sym_cl] = ACTIONS(556), + [anon_sym_EQ] = ACTIONS(560), + [aux_sym_accumulation_verb_token1] = ACTIONS(380), + [anon_sym_for] = ACTIONS(380), + [anon_sym_and] = ACTIONS(380), + [anon_sym_as] = ACTIONS(380), + [anon_sym_with] = ACTIONS(380), + [anon_sym_do] = ACTIONS(380), + [anon_sym_while] = ACTIONS(380), + [anon_sym_until] = ACTIONS(380), + [anon_sym_repeat] = ACTIONS(380), + [anon_sym_when] = ACTIONS(380), + [anon_sym_if] = ACTIONS(380), + [anon_sym_unless] = ACTIONS(380), + [anon_sym_always] = ACTIONS(380), + [anon_sym_thereis] = ACTIONS(380), + [anon_sym_never] = ACTIONS(380), + [anon_sym_else] = ACTIONS(380), + [anon_sym_finally] = ACTIONS(380), + [anon_sym_return] = ACTIONS(380), + [anon_sym_initially] = ACTIONS(380), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(562), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [16] = { - [sym__gap] = STATE(981), - [sym_dis_expr] = STATE(981), - [sym__form] = STATE(2073), - [sym_num_lit] = STATE(2073), - [sym_kwd_lit] = STATE(2073), - [sym_str_lit] = STATE(2073), - [sym_char_lit] = STATE(2073), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2073), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2073), - [sym_set_lit] = STATE(2073), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2073), - [sym_splicing_read_cond_lit] = STATE(2073), - [sym_var_quoting_lit] = STATE(2073), - [sym_quoting_lit] = STATE(2073), - [sym_syn_quoting_lit] = STATE(2073), - [sym_unquote_splicing_lit] = STATE(2073), - [sym_unquoting_lit] = STATE(2073), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2073), - [sym_package_lit] = STATE(2073), - [sym_include_reader_macro] = STATE(2073), - [sym_complex_num_lit] = STATE(2073), - [aux_sym_dis_expr_repeat1] = STATE(981), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(608), - [sym_comment] = ACTIONS(608), - [anon_sym_POUND_] = ACTIONS(612), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(616), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(618), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(616), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(622), - [anon_sym_POUND_CARET] = ACTIONS(626), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_RPAREN] = ACTIONS(634), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(1072), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2797), + [sym__ws] = ACTIONS(564), + [sym_comment] = ACTIONS(564), + [anon_sym_POUND_] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(570), + [aux_sym_num_lit_token1] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(226), + [anon_sym_DQUOTE] = ACTIONS(228), + [sym_nil_lit] = ACTIONS(570), + [aux_sym_sym_lit_token1] = ACTIONS(230), + [anon_sym_CARET] = ACTIONS(575), + [anon_sym_POUND_CARET] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(584), + [anon_sym_POUND0A] = ACTIONS(243), + [anon_sym_POUND0a] = ACTIONS(243), + [anon_sym_POUND_QMARK] = ACTIONS(245), + [anon_sym_POUND_QMARK_AT] = ACTIONS(247), + [anon_sym_POUND_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_COMMA_AT] = ACTIONS(255), + [anon_sym_COMMA] = ACTIONS(257), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(616), - [anon_sym_cl] = ACTIONS(637), - [anon_sym_EQ] = ACTIONS(641), - [aux_sym_accumulation_verb_token1] = ACTIONS(643), - [anon_sym_for] = ACTIONS(643), - [anon_sym_and] = ACTIONS(643), - [anon_sym_as] = ACTIONS(643), - [anon_sym_with] = ACTIONS(643), - [anon_sym_do] = ACTIONS(643), - [anon_sym_while] = ACTIONS(643), - [anon_sym_until] = ACTIONS(643), - [anon_sym_repeat] = ACTIONS(643), - [anon_sym_when] = ACTIONS(643), - [anon_sym_if] = ACTIONS(643), - [anon_sym_unless] = ACTIONS(643), - [anon_sym_always] = ACTIONS(643), - [anon_sym_thereis] = ACTIONS(643), - [anon_sym_never] = ACTIONS(643), - [anon_sym_else] = ACTIONS(643), - [anon_sym_finally] = ACTIONS(643), - [anon_sym_return] = ACTIONS(643), - [anon_sym_initially] = ACTIONS(643), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(646), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(570), + [anon_sym_cl] = ACTIONS(586), + [anon_sym_EQ] = ACTIONS(589), + [aux_sym_accumulation_verb_token1] = ACTIONS(591), + [anon_sym_for] = ACTIONS(591), + [anon_sym_and] = ACTIONS(591), + [anon_sym_as] = ACTIONS(591), + [anon_sym_with] = ACTIONS(591), + [anon_sym_do] = ACTIONS(591), + [anon_sym_while] = ACTIONS(591), + [anon_sym_until] = ACTIONS(591), + [anon_sym_repeat] = ACTIONS(591), + [anon_sym_when] = ACTIONS(591), + [anon_sym_if] = ACTIONS(591), + [anon_sym_unless] = ACTIONS(591), + [anon_sym_always] = ACTIONS(591), + [anon_sym_thereis] = ACTIONS(591), + [anon_sym_never] = ACTIONS(591), + [anon_sym_else] = ACTIONS(591), + [anon_sym_finally] = ACTIONS(591), + [anon_sym_return] = ACTIONS(591), + [anon_sym_initially] = ACTIONS(591), + [anon_sym_POUNDP] = ACTIONS(266), + [anon_sym_POUNDp] = ACTIONS(266), + [sym_self_referential_reader_macro] = ACTIONS(593), + [anon_sym_POUND_PLUS] = ACTIONS(270), + [anon_sym_POUND_DASH] = ACTIONS(270), + [anon_sym_POUNDC] = ACTIONS(272), + [anon_sym_POUNDc] = ACTIONS(272), }, [17] = { - [sym__gap] = STATE(981), - [sym_dis_expr] = STATE(981), - [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(1062), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(8), - [sym__bare_list_lit] = STATE(1015), - [sym_vec_lit] = STATE(8), - [sym_set_lit] = STATE(8), - [sym__bare_set_lit] = STATE(1027), - [sym_read_cond_lit] = STATE(8), - [sym_splicing_read_cond_lit] = STATE(8), - [sym_var_quoting_lit] = STATE(8), - [sym_quoting_lit] = STATE(8), - [sym_syn_quoting_lit] = STATE(8), - [sym_unquote_splicing_lit] = STATE(8), - [sym_unquoting_lit] = STATE(8), - [sym_defun] = STATE(1015), - [sym_loop_macro] = STATE(1015), - [sym_path_lit] = STATE(8), - [sym_package_lit] = STATE(8), - [sym_include_reader_macro] = STATE(8), - [sym_complex_num_lit] = STATE(8), - [aux_sym_dis_expr_repeat1] = STATE(981), - [aux_sym_list_lit_repeat1] = STATE(2775), - [sym__ws] = ACTIONS(648), - [sym_comment] = ACTIONS(648), - [anon_sym_POUND_] = ACTIONS(651), - [anon_sym_POUND] = ACTIONS(65), - [anon_sym_DOT] = ACTIONS(654), - [aux_sym_num_lit_token1] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(74), - [anon_sym_DQUOTE] = ACTIONS(76), - [sym_nil_lit] = ACTIONS(654), - [aux_sym_sym_lit_token1] = ACTIONS(78), - [anon_sym_CARET] = ACTIONS(659), - [anon_sym_POUND_CARET] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(668), - [anon_sym_POUND0A] = ACTIONS(91), - [anon_sym_POUND0a] = ACTIONS(91), - [anon_sym_POUND_QMARK] = ACTIONS(93), - [anon_sym_POUND_QMARK_AT] = ACTIONS(95), - [anon_sym_POUND_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_BQUOTE] = ACTIONS(101), - [anon_sym_COMMA_AT] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(105), + [sym__gap] = STATE(532), + [sym_dis_expr] = STATE(532), + [sym__form] = STATE(993), + [sym_num_lit] = STATE(993), + [sym_kwd_lit] = STATE(993), + [sym_str_lit] = STATE(993), + [sym_char_lit] = STATE(993), + [sym_sym_lit] = STATE(1158), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(993), + [sym__bare_list_lit] = STATE(1192), + [sym_vec_lit] = STATE(993), + [sym_set_lit] = STATE(993), + [sym__bare_set_lit] = STATE(1201), + [sym_read_cond_lit] = STATE(993), + [sym_splicing_read_cond_lit] = STATE(993), + [sym_var_quoting_lit] = STATE(993), + [sym_quoting_lit] = STATE(993), + [sym_syn_quoting_lit] = STATE(993), + [sym_unquote_splicing_lit] = STATE(993), + [sym_unquoting_lit] = STATE(993), + [sym_defun] = STATE(1192), + [sym_loop_macro] = STATE(1192), + [sym_path_lit] = STATE(993), + [sym_package_lit] = STATE(993), + [sym_include_reader_macro] = STATE(993), + [sym_complex_num_lit] = STATE(993), + [aux_sym_dis_expr_repeat1] = STATE(532), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym_do_clause_repeat1] = STATE(20), + [sym__ws] = ACTIONS(595), + [sym_comment] = ACTIONS(595), + [anon_sym_POUND_] = ACTIONS(595), + [anon_sym_POUND] = ACTIONS(173), + [anon_sym_DOT] = ACTIONS(175), + [aux_sym_num_lit_token1] = ACTIONS(177), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(183), + [sym_nil_lit] = ACTIONS(175), + [aux_sym_sym_lit_token1] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_POUND_CARET] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_POUND0A] = ACTIONS(187), + [anon_sym_POUND0a] = ACTIONS(187), + [anon_sym_POUND_QMARK] = ACTIONS(189), + [anon_sym_POUND_QMARK_AT] = ACTIONS(191), + [anon_sym_POUND_SQUOTE] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [anon_sym_BQUOTE] = ACTIONS(197), + [anon_sym_COMMA_AT] = ACTIONS(199), + [anon_sym_COMMA] = ACTIONS(201), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(654), - [anon_sym_cl] = ACTIONS(670), - [anon_sym_EQ] = ACTIONS(673), - [aux_sym_accumulation_verb_token1] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_and] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_with] = ACTIONS(675), - [anon_sym_do] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [anon_sym_until] = ACTIONS(675), - [anon_sym_repeat] = ACTIONS(675), - [anon_sym_when] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_unless] = ACTIONS(675), - [anon_sym_always] = ACTIONS(675), - [anon_sym_thereis] = ACTIONS(675), - [anon_sym_never] = ACTIONS(675), - [anon_sym_else] = ACTIONS(675), - [anon_sym_finally] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_initially] = ACTIONS(675), - [anon_sym_POUNDP] = ACTIONS(114), - [anon_sym_POUNDp] = ACTIONS(114), - [sym_self_referential_reader_macro] = ACTIONS(677), - [anon_sym_POUND_PLUS] = ACTIONS(118), - [anon_sym_POUND_DASH] = ACTIONS(118), - [anon_sym_POUNDC] = ACTIONS(120), - [anon_sym_POUNDc] = ACTIONS(120), + [sym_fancy_literal] = ACTIONS(175), + [anon_sym_cl] = ACTIONS(597), + [aux_sym_accumulation_verb_token1] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_and] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_with] = ACTIONS(597), + [anon_sym_do] = ACTIONS(597), + [anon_sym_while] = ACTIONS(597), + [anon_sym_until] = ACTIONS(597), + [anon_sym_repeat] = ACTIONS(597), + [anon_sym_when] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_unless] = ACTIONS(597), + [anon_sym_always] = ACTIONS(597), + [anon_sym_thereis] = ACTIONS(597), + [anon_sym_never] = ACTIONS(597), + [anon_sym_else] = ACTIONS(597), + [anon_sym_finally] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_initially] = ACTIONS(597), + [anon_sym_POUNDP] = ACTIONS(203), + [anon_sym_POUNDp] = ACTIONS(203), + [sym_self_referential_reader_macro] = ACTIONS(205), + [anon_sym_POUND_PLUS] = ACTIONS(207), + [anon_sym_POUND_DASH] = ACTIONS(207), + [anon_sym_POUNDC] = ACTIONS(209), + [anon_sym_POUNDc] = ACTIONS(209), }, [18] = { - [sym__gap] = STATE(7), - [sym_dis_expr] = STATE(7), - [sym__form] = STATE(2034), - [sym_num_lit] = STATE(2034), - [sym_kwd_lit] = STATE(2034), - [sym_str_lit] = STATE(2034), - [sym_char_lit] = STATE(2034), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2034), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2034), - [sym_set_lit] = STATE(2034), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2034), - [sym_splicing_read_cond_lit] = STATE(2034), - [sym_var_quoting_lit] = STATE(2034), - [sym_quoting_lit] = STATE(2034), - [sym_syn_quoting_lit] = STATE(2034), - [sym_unquote_splicing_lit] = STATE(2034), - [sym_unquoting_lit] = STATE(2034), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2034), - [sym_package_lit] = STATE(2034), - [sym_include_reader_macro] = STATE(2034), - [sym_complex_num_lit] = STATE(2034), - [aux_sym_dis_expr_repeat1] = STATE(7), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(679), - [sym_comment] = ACTIONS(679), - [anon_sym_POUND_] = ACTIONS(683), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(687), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(689), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(687), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(693), - [anon_sym_POUND_CARET] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(701), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(599), + [sym_comment] = ACTIONS(599), + [anon_sym_POUND_] = ACTIONS(603), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(607), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(607), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_POUND_CARET] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(625), + [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(687), - [anon_sym_cl] = ACTIONS(708), - [anon_sym_EQ] = ACTIONS(712), - [aux_sym_accumulation_verb_token1] = ACTIONS(714), - [anon_sym_for] = ACTIONS(714), - [anon_sym_and] = ACTIONS(714), - [anon_sym_as] = ACTIONS(714), - [anon_sym_with] = ACTIONS(714), - [anon_sym_do] = ACTIONS(714), - [anon_sym_while] = ACTIONS(714), - [anon_sym_until] = ACTIONS(714), - [anon_sym_repeat] = ACTIONS(714), - [anon_sym_when] = ACTIONS(714), - [anon_sym_if] = ACTIONS(714), - [anon_sym_unless] = ACTIONS(714), - [anon_sym_always] = ACTIONS(714), - [anon_sym_thereis] = ACTIONS(714), - [anon_sym_never] = ACTIONS(714), - [anon_sym_else] = ACTIONS(714), - [anon_sym_finally] = ACTIONS(714), - [anon_sym_return] = ACTIONS(714), - [anon_sym_initially] = ACTIONS(714), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(717), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(607), + [anon_sym_cl] = ACTIONS(628), + [anon_sym_EQ] = ACTIONS(632), + [aux_sym_accumulation_verb_token1] = ACTIONS(634), + [anon_sym_for] = ACTIONS(634), + [anon_sym_and] = ACTIONS(634), + [anon_sym_as] = ACTIONS(634), + [anon_sym_with] = ACTIONS(634), + [anon_sym_do] = ACTIONS(634), + [anon_sym_while] = ACTIONS(634), + [anon_sym_until] = ACTIONS(634), + [anon_sym_repeat] = ACTIONS(634), + [anon_sym_when] = ACTIONS(634), + [anon_sym_if] = ACTIONS(634), + [anon_sym_unless] = ACTIONS(634), + [anon_sym_always] = ACTIONS(634), + [anon_sym_thereis] = ACTIONS(634), + [anon_sym_never] = ACTIONS(634), + [anon_sym_else] = ACTIONS(634), + [anon_sym_finally] = ACTIONS(634), + [anon_sym_return] = ACTIONS(634), + [anon_sym_initially] = ACTIONS(634), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(637), + [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(31), - [sym_dis_expr] = STATE(31), - [sym__form] = STATE(2058), - [sym_num_lit] = STATE(2058), - [sym_kwd_lit] = STATE(2058), - [sym_str_lit] = STATE(2058), - [sym_char_lit] = STATE(2058), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2058), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2058), - [sym_set_lit] = STATE(2058), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2058), - [sym_splicing_read_cond_lit] = STATE(2058), - [sym_var_quoting_lit] = STATE(2058), - [sym_quoting_lit] = STATE(2058), - [sym_syn_quoting_lit] = STATE(2058), - [sym_unquote_splicing_lit] = STATE(2058), - [sym_unquoting_lit] = STATE(2058), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2058), - [sym_package_lit] = STATE(2058), - [sym_include_reader_macro] = STATE(2058), - [sym_complex_num_lit] = STATE(2058), - [aux_sym_dis_expr_repeat1] = STATE(31), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(719), - [sym_comment] = ACTIONS(719), - [anon_sym_POUND_] = ACTIONS(481), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(723), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(725), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(723), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(491), - [anon_sym_POUND_CARET] = ACTIONS(495), - [anon_sym_LPAREN] = ACTIONS(499), - [anon_sym_RPAREN] = ACTIONS(503), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(5), + [sym_dis_expr] = STATE(5), + [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(1072), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(5), + [aux_sym_list_lit_repeat1] = STATE(2797), + [sym__ws] = ACTIONS(639), + [sym_comment] = ACTIONS(639), + [anon_sym_POUND_] = ACTIONS(642), + [anon_sym_POUND] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(645), + [aux_sym_num_lit_token1] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(647), + [anon_sym_COLON_COLON] = ACTIONS(226), + [anon_sym_DQUOTE] = ACTIONS(228), + [sym_nil_lit] = ACTIONS(645), + [aux_sym_sym_lit_token1] = ACTIONS(230), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_POUND_CARET] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_RPAREN] = ACTIONS(659), + [anon_sym_POUND0A] = ACTIONS(243), + [anon_sym_POUND0a] = ACTIONS(243), + [anon_sym_POUND_QMARK] = ACTIONS(245), + [anon_sym_POUND_QMARK_AT] = ACTIONS(247), + [anon_sym_POUND_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_COMMA_AT] = ACTIONS(255), + [anon_sym_COMMA] = ACTIONS(257), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(723), - [anon_sym_cl] = ACTIONS(729), - [anon_sym_EQ] = ACTIONS(733), - [aux_sym_accumulation_verb_token1] = ACTIONS(512), - [anon_sym_for] = ACTIONS(512), - [anon_sym_and] = ACTIONS(512), - [anon_sym_as] = ACTIONS(512), - [anon_sym_with] = ACTIONS(512), - [anon_sym_do] = ACTIONS(512), - [anon_sym_while] = ACTIONS(512), - [anon_sym_until] = ACTIONS(512), - [anon_sym_repeat] = ACTIONS(512), - [anon_sym_when] = ACTIONS(512), - [anon_sym_if] = ACTIONS(512), - [anon_sym_unless] = ACTIONS(512), - [anon_sym_always] = ACTIONS(512), - [anon_sym_thereis] = ACTIONS(512), - [anon_sym_never] = ACTIONS(512), - [anon_sym_else] = ACTIONS(512), - [anon_sym_finally] = ACTIONS(512), - [anon_sym_return] = ACTIONS(512), - [anon_sym_initially] = ACTIONS(512), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(735), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(645), + [anon_sym_cl] = ACTIONS(661), + [anon_sym_EQ] = ACTIONS(664), + [aux_sym_accumulation_verb_token1] = ACTIONS(666), + [anon_sym_for] = ACTIONS(666), + [anon_sym_and] = ACTIONS(666), + [anon_sym_as] = ACTIONS(666), + [anon_sym_with] = ACTIONS(666), + [anon_sym_do] = ACTIONS(666), + [anon_sym_while] = ACTIONS(666), + [anon_sym_until] = ACTIONS(666), + [anon_sym_repeat] = ACTIONS(666), + [anon_sym_when] = ACTIONS(666), + [anon_sym_if] = ACTIONS(666), + [anon_sym_unless] = ACTIONS(666), + [anon_sym_always] = ACTIONS(666), + [anon_sym_thereis] = ACTIONS(666), + [anon_sym_never] = ACTIONS(666), + [anon_sym_else] = ACTIONS(666), + [anon_sym_finally] = ACTIONS(666), + [anon_sym_return] = ACTIONS(666), + [anon_sym_initially] = ACTIONS(666), + [anon_sym_POUNDP] = ACTIONS(266), + [anon_sym_POUNDp] = ACTIONS(266), + [sym_self_referential_reader_macro] = ACTIONS(668), + [anon_sym_POUND_PLUS] = ACTIONS(270), + [anon_sym_POUND_DASH] = ACTIONS(270), + [anon_sym_POUNDC] = ACTIONS(272), + [anon_sym_POUNDc] = ACTIONS(272), }, [20] = { - [sym__gap] = STATE(981), - [sym_dis_expr] = STATE(981), - [sym__form] = STATE(2167), - [sym_num_lit] = STATE(2167), - [sym_kwd_lit] = STATE(2167), - [sym_str_lit] = STATE(2167), - [sym_char_lit] = STATE(2167), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2167), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2167), - [sym_set_lit] = STATE(2167), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2167), - [sym_splicing_read_cond_lit] = STATE(2167), - [sym_var_quoting_lit] = STATE(2167), - [sym_quoting_lit] = STATE(2167), - [sym_syn_quoting_lit] = STATE(2167), - [sym_unquote_splicing_lit] = STATE(2167), - [sym_unquoting_lit] = STATE(2167), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2167), - [sym_package_lit] = STATE(2167), - [sym_include_reader_macro] = STATE(2167), - [sym_complex_num_lit] = STATE(2167), - [aux_sym_dis_expr_repeat1] = STATE(981), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(737), - [sym_comment] = ACTIONS(737), - [anon_sym_POUND_] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(745), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(747), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(745), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym_POUND_CARET] = ACTIONS(755), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(763), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(532), + [sym_dis_expr] = STATE(532), + [sym__form] = STATE(993), + [sym_num_lit] = STATE(993), + [sym_kwd_lit] = STATE(993), + [sym_str_lit] = STATE(993), + [sym_char_lit] = STATE(993), + [sym_sym_lit] = STATE(1158), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(993), + [sym__bare_list_lit] = STATE(1192), + [sym_vec_lit] = STATE(993), + [sym_set_lit] = STATE(993), + [sym__bare_set_lit] = STATE(1201), + [sym_read_cond_lit] = STATE(993), + [sym_splicing_read_cond_lit] = STATE(993), + [sym_var_quoting_lit] = STATE(993), + [sym_quoting_lit] = STATE(993), + [sym_syn_quoting_lit] = STATE(993), + [sym_unquote_splicing_lit] = STATE(993), + [sym_unquoting_lit] = STATE(993), + [sym_defun] = STATE(1192), + [sym_loop_macro] = STATE(1192), + [sym_path_lit] = STATE(993), + [sym_package_lit] = STATE(993), + [sym_include_reader_macro] = STATE(993), + [sym_complex_num_lit] = STATE(993), + [aux_sym_dis_expr_repeat1] = STATE(532), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym_do_clause_repeat1] = STATE(20), + [sym__ws] = ACTIONS(670), + [sym_comment] = ACTIONS(670), + [anon_sym_POUND_] = ACTIONS(673), + [anon_sym_POUND] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(679), + [aux_sym_num_lit_token1] = ACTIONS(682), + [anon_sym_COLON] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(691), + [sym_nil_lit] = ACTIONS(679), + [aux_sym_sym_lit_token1] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(697), + [anon_sym_POUND_CARET] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_RPAREN] = ACTIONS(706), + [anon_sym_POUND0A] = ACTIONS(708), + [anon_sym_POUND0a] = ACTIONS(708), + [anon_sym_POUND_QMARK] = ACTIONS(711), + [anon_sym_POUND_QMARK_AT] = ACTIONS(714), + [anon_sym_POUND_SQUOTE] = ACTIONS(717), + [anon_sym_SQUOTE] = ACTIONS(720), + [anon_sym_BQUOTE] = ACTIONS(723), + [anon_sym_COMMA_AT] = ACTIONS(726), + [anon_sym_COMMA] = ACTIONS(729), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(745), - [anon_sym_cl] = ACTIONS(766), - [anon_sym_EQ] = ACTIONS(770), - [aux_sym_accumulation_verb_token1] = ACTIONS(772), - [anon_sym_for] = ACTIONS(772), - [anon_sym_and] = ACTIONS(772), - [anon_sym_as] = ACTIONS(772), - [anon_sym_with] = ACTIONS(772), - [anon_sym_do] = ACTIONS(772), - [anon_sym_while] = ACTIONS(772), - [anon_sym_until] = ACTIONS(772), - [anon_sym_repeat] = ACTIONS(772), - [anon_sym_when] = ACTIONS(772), - [anon_sym_if] = ACTIONS(772), - [anon_sym_unless] = ACTIONS(772), - [anon_sym_always] = ACTIONS(772), - [anon_sym_thereis] = ACTIONS(772), - [anon_sym_never] = ACTIONS(772), - [anon_sym_else] = ACTIONS(772), - [anon_sym_finally] = ACTIONS(772), - [anon_sym_return] = ACTIONS(772), - [anon_sym_initially] = ACTIONS(772), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(775), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(679), + [anon_sym_cl] = ACTIONS(732), + [aux_sym_accumulation_verb_token1] = ACTIONS(735), + [anon_sym_for] = ACTIONS(735), + [anon_sym_and] = ACTIONS(735), + [anon_sym_as] = ACTIONS(735), + [anon_sym_with] = ACTIONS(735), + [anon_sym_do] = ACTIONS(735), + [anon_sym_while] = ACTIONS(735), + [anon_sym_until] = ACTIONS(735), + [anon_sym_repeat] = ACTIONS(735), + [anon_sym_when] = ACTIONS(735), + [anon_sym_if] = ACTIONS(735), + [anon_sym_unless] = ACTIONS(735), + [anon_sym_always] = ACTIONS(735), + [anon_sym_thereis] = ACTIONS(735), + [anon_sym_never] = ACTIONS(735), + [anon_sym_else] = ACTIONS(735), + [anon_sym_finally] = ACTIONS(735), + [anon_sym_return] = ACTIONS(735), + [anon_sym_initially] = ACTIONS(735), + [anon_sym_POUNDP] = ACTIONS(737), + [anon_sym_POUNDp] = ACTIONS(737), + [sym_self_referential_reader_macro] = ACTIONS(740), + [anon_sym_POUND_PLUS] = ACTIONS(743), + [anon_sym_POUND_DASH] = ACTIONS(743), + [anon_sym_POUNDC] = ACTIONS(746), + [anon_sym_POUNDc] = ACTIONS(746), }, [21] = { - [sym__gap] = STATE(2), - [sym_dis_expr] = STATE(2), - [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(1062), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(19), - [sym__bare_list_lit] = STATE(1015), - [sym_vec_lit] = STATE(19), - [sym_set_lit] = STATE(19), - [sym__bare_set_lit] = STATE(1027), - [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(1015), - [sym_loop_macro] = STATE(1015), - [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(2), - [aux_sym_list_lit_repeat1] = STATE(2775), - [sym__ws] = ACTIONS(777), - [sym_comment] = ACTIONS(777), - [anon_sym_POUND_] = ACTIONS(156), - [anon_sym_POUND] = ACTIONS(65), - [anon_sym_DOT] = ACTIONS(780), - [aux_sym_num_lit_token1] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(782), - [anon_sym_COLON_COLON] = ACTIONS(74), - [anon_sym_DQUOTE] = ACTIONS(76), - [sym_nil_lit] = ACTIONS(780), - [aux_sym_sym_lit_token1] = ACTIONS(78), - [anon_sym_CARET] = ACTIONS(164), - [anon_sym_POUND_CARET] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(170), - [anon_sym_RPAREN] = ACTIONS(173), - [anon_sym_POUND0A] = ACTIONS(91), - [anon_sym_POUND0a] = ACTIONS(91), - [anon_sym_POUND_QMARK] = ACTIONS(93), - [anon_sym_POUND_QMARK_AT] = ACTIONS(95), - [anon_sym_POUND_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_BQUOTE] = ACTIONS(101), - [anon_sym_COMMA_AT] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(105), + [sym__gap] = STATE(22), + [sym_dis_expr] = STATE(22), + [sym__form] = STATE(15), + [sym_num_lit] = STATE(15), + [sym_kwd_lit] = STATE(15), + [sym_str_lit] = STATE(15), + [sym_char_lit] = STATE(15), + [sym_sym_lit] = STATE(1072), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(15), + [sym__bare_list_lit] = STATE(1070), + [sym_vec_lit] = STATE(15), + [sym_set_lit] = STATE(15), + [sym__bare_set_lit] = STATE(1069), + [sym_read_cond_lit] = STATE(15), + [sym_splicing_read_cond_lit] = STATE(15), + [sym_var_quoting_lit] = STATE(15), + [sym_quoting_lit] = STATE(15), + [sym_syn_quoting_lit] = STATE(15), + [sym_unquote_splicing_lit] = STATE(15), + [sym_unquoting_lit] = STATE(15), + [sym_defun] = STATE(1070), + [sym_loop_macro] = STATE(1070), + [sym_path_lit] = STATE(15), + [sym_package_lit] = STATE(15), + [sym_include_reader_macro] = STATE(15), + [sym_complex_num_lit] = STATE(15), + [aux_sym_dis_expr_repeat1] = STATE(22), + [aux_sym_list_lit_repeat1] = STATE(2797), + [sym__ws] = ACTIONS(749), + [sym_comment] = ACTIONS(749), + [anon_sym_POUND_] = ACTIONS(277), + [anon_sym_POUND] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(752), + [aux_sym_num_lit_token1] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(754), + [anon_sym_COLON_COLON] = ACTIONS(226), + [anon_sym_DQUOTE] = ACTIONS(228), + [sym_nil_lit] = ACTIONS(752), + [aux_sym_sym_lit_token1] = ACTIONS(230), + [anon_sym_CARET] = ACTIONS(285), + [anon_sym_POUND_CARET] = ACTIONS(288), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(294), + [anon_sym_POUND0A] = ACTIONS(243), + [anon_sym_POUND0a] = ACTIONS(243), + [anon_sym_POUND_QMARK] = ACTIONS(245), + [anon_sym_POUND_QMARK_AT] = ACTIONS(247), + [anon_sym_POUND_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_COMMA_AT] = ACTIONS(255), + [anon_sym_COMMA] = ACTIONS(257), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(780), - [anon_sym_cl] = ACTIONS(785), - [anon_sym_EQ] = ACTIONS(788), - [aux_sym_accumulation_verb_token1] = ACTIONS(180), - [anon_sym_for] = ACTIONS(180), - [anon_sym_and] = ACTIONS(180), - [anon_sym_as] = ACTIONS(180), - [anon_sym_with] = ACTIONS(180), - [anon_sym_do] = ACTIONS(180), - [anon_sym_while] = ACTIONS(180), - [anon_sym_until] = ACTIONS(180), - [anon_sym_repeat] = ACTIONS(180), - [anon_sym_when] = ACTIONS(180), - [anon_sym_if] = ACTIONS(180), - [anon_sym_unless] = ACTIONS(180), - [anon_sym_always] = ACTIONS(180), - [anon_sym_thereis] = ACTIONS(180), - [anon_sym_never] = ACTIONS(180), - [anon_sym_else] = ACTIONS(180), - [anon_sym_finally] = ACTIONS(180), - [anon_sym_return] = ACTIONS(180), - [anon_sym_initially] = ACTIONS(180), - [anon_sym_POUNDP] = ACTIONS(114), - [anon_sym_POUNDp] = ACTIONS(114), - [sym_self_referential_reader_macro] = ACTIONS(790), - [anon_sym_POUND_PLUS] = ACTIONS(118), - [anon_sym_POUND_DASH] = ACTIONS(118), - [anon_sym_POUNDC] = ACTIONS(120), - [anon_sym_POUNDc] = ACTIONS(120), + [sym_fancy_literal] = ACTIONS(752), + [anon_sym_cl] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(760), + [aux_sym_accumulation_verb_token1] = ACTIONS(301), + [anon_sym_for] = ACTIONS(301), + [anon_sym_and] = ACTIONS(301), + [anon_sym_as] = ACTIONS(301), + [anon_sym_with] = ACTIONS(301), + [anon_sym_do] = ACTIONS(301), + [anon_sym_while] = ACTIONS(301), + [anon_sym_until] = ACTIONS(301), + [anon_sym_repeat] = ACTIONS(301), + [anon_sym_when] = ACTIONS(301), + [anon_sym_if] = ACTIONS(301), + [anon_sym_unless] = ACTIONS(301), + [anon_sym_always] = ACTIONS(301), + [anon_sym_thereis] = ACTIONS(301), + [anon_sym_never] = ACTIONS(301), + [anon_sym_else] = ACTIONS(301), + [anon_sym_finally] = ACTIONS(301), + [anon_sym_return] = ACTIONS(301), + [anon_sym_initially] = ACTIONS(301), + [anon_sym_POUNDP] = ACTIONS(266), + [anon_sym_POUNDp] = ACTIONS(266), + [sym_self_referential_reader_macro] = ACTIONS(762), + [anon_sym_POUND_PLUS] = ACTIONS(270), + [anon_sym_POUND_DASH] = ACTIONS(270), + [anon_sym_POUNDC] = ACTIONS(272), + [anon_sym_POUNDc] = ACTIONS(272), }, [22] = { - [sym__gap] = STATE(10), - [sym_dis_expr] = STATE(10), - [sym__form] = STATE(9), - [sym_num_lit] = STATE(9), - [sym_kwd_lit] = STATE(9), - [sym_str_lit] = STATE(9), - [sym_char_lit] = STATE(9), - [sym_sym_lit] = STATE(1062), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(9), - [sym__bare_list_lit] = STATE(1015), - [sym_vec_lit] = STATE(9), - [sym_set_lit] = STATE(9), - [sym__bare_set_lit] = STATE(1027), - [sym_read_cond_lit] = STATE(9), - [sym_splicing_read_cond_lit] = STATE(9), - [sym_var_quoting_lit] = STATE(9), - [sym_quoting_lit] = STATE(9), - [sym_syn_quoting_lit] = STATE(9), - [sym_unquote_splicing_lit] = STATE(9), - [sym_unquoting_lit] = STATE(9), - [sym_defun] = STATE(1015), - [sym_loop_macro] = STATE(1015), - [sym_path_lit] = STATE(9), - [sym_package_lit] = STATE(9), - [sym_include_reader_macro] = STATE(9), - [sym_complex_num_lit] = STATE(9), - [aux_sym_dis_expr_repeat1] = STATE(10), - [aux_sym_list_lit_repeat1] = STATE(2775), - [sym__ws] = ACTIONS(792), - [sym_comment] = ACTIONS(792), - [anon_sym_POUND_] = ACTIONS(795), - [anon_sym_POUND] = ACTIONS(65), - [anon_sym_DOT] = ACTIONS(798), - [aux_sym_num_lit_token1] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_COLON_COLON] = ACTIONS(74), - [anon_sym_DQUOTE] = ACTIONS(76), - [sym_nil_lit] = ACTIONS(798), - [aux_sym_sym_lit_token1] = ACTIONS(78), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_POUND_CARET] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_RPAREN] = ACTIONS(812), - [anon_sym_POUND0A] = ACTIONS(91), - [anon_sym_POUND0a] = ACTIONS(91), - [anon_sym_POUND_QMARK] = ACTIONS(93), - [anon_sym_POUND_QMARK_AT] = ACTIONS(95), - [anon_sym_POUND_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_BQUOTE] = ACTIONS(101), - [anon_sym_COMMA_AT] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(105), + [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(1072), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2797), + [sym__ws] = ACTIONS(385), + [sym_comment] = ACTIONS(385), + [anon_sym_POUND_] = ACTIONS(388), + [anon_sym_POUND] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(764), + [aux_sym_num_lit_token1] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(766), + [anon_sym_COLON_COLON] = ACTIONS(226), + [anon_sym_DQUOTE] = ACTIONS(228), + [sym_nil_lit] = ACTIONS(764), + [aux_sym_sym_lit_token1] = ACTIONS(230), + [anon_sym_CARET] = ACTIONS(396), + [anon_sym_POUND_CARET] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(405), + [anon_sym_POUND0A] = ACTIONS(243), + [anon_sym_POUND0a] = ACTIONS(243), + [anon_sym_POUND_QMARK] = ACTIONS(245), + [anon_sym_POUND_QMARK_AT] = ACTIONS(247), + [anon_sym_POUND_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_COMMA_AT] = ACTIONS(255), + [anon_sym_COMMA] = ACTIONS(257), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(798), - [anon_sym_cl] = ACTIONS(814), - [anon_sym_EQ] = ACTIONS(817), - [aux_sym_accumulation_verb_token1] = ACTIONS(819), - [anon_sym_for] = ACTIONS(819), - [anon_sym_and] = ACTIONS(819), - [anon_sym_as] = ACTIONS(819), - [anon_sym_with] = ACTIONS(819), - [anon_sym_do] = ACTIONS(819), - [anon_sym_while] = ACTIONS(819), - [anon_sym_until] = ACTIONS(819), - [anon_sym_repeat] = ACTIONS(819), - [anon_sym_when] = ACTIONS(819), - [anon_sym_if] = ACTIONS(819), - [anon_sym_unless] = ACTIONS(819), - [anon_sym_always] = ACTIONS(819), - [anon_sym_thereis] = ACTIONS(819), - [anon_sym_never] = ACTIONS(819), - [anon_sym_else] = ACTIONS(819), - [anon_sym_finally] = ACTIONS(819), - [anon_sym_return] = ACTIONS(819), - [anon_sym_initially] = ACTIONS(819), - [anon_sym_POUNDP] = ACTIONS(114), - [anon_sym_POUNDp] = ACTIONS(114), - [sym_self_referential_reader_macro] = ACTIONS(821), - [anon_sym_POUND_PLUS] = ACTIONS(118), - [anon_sym_POUND_DASH] = ACTIONS(118), - [anon_sym_POUNDC] = ACTIONS(120), - [anon_sym_POUNDc] = ACTIONS(120), + [sym_fancy_literal] = ACTIONS(764), + [anon_sym_cl] = ACTIONS(769), + [anon_sym_EQ] = ACTIONS(772), + [aux_sym_accumulation_verb_token1] = ACTIONS(412), + [anon_sym_for] = ACTIONS(412), + [anon_sym_and] = ACTIONS(412), + [anon_sym_as] = ACTIONS(412), + [anon_sym_with] = ACTIONS(412), + [anon_sym_do] = ACTIONS(412), + [anon_sym_while] = ACTIONS(412), + [anon_sym_until] = ACTIONS(412), + [anon_sym_repeat] = ACTIONS(412), + [anon_sym_when] = ACTIONS(412), + [anon_sym_if] = ACTIONS(412), + [anon_sym_unless] = ACTIONS(412), + [anon_sym_always] = ACTIONS(412), + [anon_sym_thereis] = ACTIONS(412), + [anon_sym_never] = ACTIONS(412), + [anon_sym_else] = ACTIONS(412), + [anon_sym_finally] = ACTIONS(412), + [anon_sym_return] = ACTIONS(412), + [anon_sym_initially] = ACTIONS(412), + [anon_sym_POUNDP] = ACTIONS(266), + [anon_sym_POUNDp] = ACTIONS(266), + [sym_self_referential_reader_macro] = ACTIONS(774), + [anon_sym_POUND_PLUS] = ACTIONS(270), + [anon_sym_POUND_DASH] = ACTIONS(270), + [anon_sym_POUNDC] = ACTIONS(272), + [anon_sym_POUNDc] = ACTIONS(272), }, [23] = { - [sym__gap] = STATE(692), - [sym_dis_expr] = STATE(692), - [sym__form] = STATE(983), - [sym_num_lit] = STATE(983), - [sym_kwd_lit] = STATE(983), - [sym_str_lit] = STATE(983), - [sym_char_lit] = STATE(983), - [sym_sym_lit] = STATE(1129), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(983), - [sym__bare_list_lit] = STATE(1135), - [sym_vec_lit] = STATE(983), - [sym_set_lit] = STATE(983), - [sym__bare_set_lit] = STATE(1150), - [sym_read_cond_lit] = STATE(983), - [sym_splicing_read_cond_lit] = STATE(983), - [sym_var_quoting_lit] = STATE(983), - [sym_quoting_lit] = STATE(983), - [sym_syn_quoting_lit] = STATE(983), - [sym_unquote_splicing_lit] = STATE(983), - [sym_unquoting_lit] = STATE(983), - [sym_defun] = STATE(1135), - [sym_loop_macro] = STATE(1135), - [sym_path_lit] = STATE(983), - [sym_package_lit] = STATE(983), - [sym_include_reader_macro] = STATE(983), - [sym_complex_num_lit] = STATE(983), - [aux_sym_dis_expr_repeat1] = STATE(692), - [aux_sym_list_lit_repeat1] = STATE(2796), - [aux_sym_do_clause_repeat1] = STATE(15), - [sym__ws] = ACTIONS(823), - [sym_comment] = ACTIONS(823), - [anon_sym_POUND_] = ACTIONS(823), - [anon_sym_POUND] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(827), - [aux_sym_num_lit_token1] = ACTIONS(829), - [anon_sym_COLON] = ACTIONS(831), - [anon_sym_COLON_COLON] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym_nil_lit] = ACTIONS(827), - [aux_sym_sym_lit_token1] = ACTIONS(837), - [anon_sym_CARET] = ACTIONS(823), - [anon_sym_POUND_CARET] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_POUND0A] = ACTIONS(839), - [anon_sym_POUND0a] = ACTIONS(839), - [anon_sym_POUND_QMARK] = ACTIONS(841), - [anon_sym_POUND_QMARK_AT] = ACTIONS(843), - [anon_sym_POUND_SQUOTE] = ACTIONS(845), - [anon_sym_SQUOTE] = ACTIONS(847), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_COMMA_AT] = ACTIONS(851), - [anon_sym_COMMA] = ACTIONS(853), + [sym__gap] = STATE(32), + [sym_dis_expr] = STATE(32), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(32), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(776), + [sym_comment] = ACTIONS(776), + [anon_sym_POUND_] = ACTIONS(135), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(780), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(782), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(780), + [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(827), - [anon_sym_cl] = ACTIONS(831), - [aux_sym_accumulation_verb_token1] = ACTIONS(831), - [anon_sym_for] = ACTIONS(831), - [anon_sym_and] = ACTIONS(831), - [anon_sym_as] = ACTIONS(831), - [anon_sym_with] = ACTIONS(831), - [anon_sym_do] = ACTIONS(831), - [anon_sym_while] = ACTIONS(831), - [anon_sym_until] = ACTIONS(831), - [anon_sym_repeat] = ACTIONS(831), - [anon_sym_when] = ACTIONS(831), - [anon_sym_if] = ACTIONS(831), - [anon_sym_unless] = ACTIONS(831), - [anon_sym_always] = ACTIONS(831), - [anon_sym_thereis] = ACTIONS(831), - [anon_sym_never] = ACTIONS(831), - [anon_sym_else] = ACTIONS(831), - [anon_sym_finally] = ACTIONS(831), - [anon_sym_return] = ACTIONS(831), - [anon_sym_initially] = ACTIONS(831), - [anon_sym_POUNDP] = ACTIONS(855), - [anon_sym_POUNDp] = ACTIONS(855), - [sym_self_referential_reader_macro] = ACTIONS(857), - [anon_sym_POUND_PLUS] = ACTIONS(859), - [anon_sym_POUND_DASH] = ACTIONS(859), - [anon_sym_POUNDC] = ACTIONS(861), - [anon_sym_POUNDc] = ACTIONS(861), + [sym_fancy_literal] = ACTIONS(780), + [anon_sym_cl] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(790), + [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(792), + [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(5), - [sym_dis_expr] = STATE(5), - [sym__form] = STATE(6), - [sym_num_lit] = STATE(6), - [sym_kwd_lit] = STATE(6), - [sym_str_lit] = STATE(6), - [sym_char_lit] = STATE(6), - [sym_sym_lit] = STATE(1062), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(6), - [sym__bare_list_lit] = STATE(1015), - [sym_vec_lit] = STATE(6), - [sym_set_lit] = STATE(6), - [sym__bare_set_lit] = STATE(1027), - [sym_read_cond_lit] = STATE(6), - [sym_splicing_read_cond_lit] = STATE(6), - [sym_var_quoting_lit] = STATE(6), - [sym_quoting_lit] = STATE(6), - [sym_syn_quoting_lit] = STATE(6), - [sym_unquote_splicing_lit] = STATE(6), - [sym_unquoting_lit] = STATE(6), - [sym_defun] = STATE(1015), - [sym_loop_macro] = STATE(1015), - [sym_path_lit] = STATE(6), - [sym_package_lit] = STATE(6), - [sym_include_reader_macro] = STATE(6), - [sym_complex_num_lit] = STATE(6), - [aux_sym_dis_expr_repeat1] = STATE(5), - [aux_sym_list_lit_repeat1] = STATE(2775), - [sym__ws] = ACTIONS(863), - [sym_comment] = ACTIONS(863), - [anon_sym_POUND_] = ACTIONS(795), - [anon_sym_POUND] = ACTIONS(65), - [anon_sym_DOT] = ACTIONS(866), - [aux_sym_num_lit_token1] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(868), - [anon_sym_COLON_COLON] = ACTIONS(74), - [anon_sym_DQUOTE] = ACTIONS(76), - [sym_nil_lit] = ACTIONS(866), - [aux_sym_sym_lit_token1] = ACTIONS(78), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_POUND_CARET] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_RPAREN] = ACTIONS(812), - [anon_sym_POUND0A] = ACTIONS(91), - [anon_sym_POUND0a] = ACTIONS(91), - [anon_sym_POUND_QMARK] = ACTIONS(93), - [anon_sym_POUND_QMARK_AT] = ACTIONS(95), - [anon_sym_POUND_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_BQUOTE] = ACTIONS(101), - [anon_sym_COMMA_AT] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(105), + [sym__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(33), + [sym_num_lit] = STATE(33), + [sym_kwd_lit] = STATE(33), + [sym_str_lit] = STATE(33), + [sym_char_lit] = STATE(33), + [sym_sym_lit] = STATE(1072), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(33), + [sym__bare_list_lit] = STATE(1070), + [sym_vec_lit] = STATE(33), + [sym_set_lit] = STATE(33), + [sym__bare_set_lit] = STATE(1069), + [sym_read_cond_lit] = STATE(33), + [sym_splicing_read_cond_lit] = STATE(33), + [sym_var_quoting_lit] = STATE(33), + [sym_quoting_lit] = STATE(33), + [sym_syn_quoting_lit] = STATE(33), + [sym_unquote_splicing_lit] = STATE(33), + [sym_unquoting_lit] = STATE(33), + [sym_defun] = STATE(1070), + [sym_loop_macro] = STATE(1070), + [sym_path_lit] = STATE(33), + [sym_package_lit] = STATE(33), + [sym_include_reader_macro] = STATE(33), + [sym_complex_num_lit] = STATE(33), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2797), + [sym__ws] = ACTIONS(564), + [sym_comment] = ACTIONS(564), + [anon_sym_POUND_] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(794), + [aux_sym_num_lit_token1] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(796), + [anon_sym_COLON_COLON] = ACTIONS(226), + [anon_sym_DQUOTE] = ACTIONS(228), + [sym_nil_lit] = ACTIONS(794), + [aux_sym_sym_lit_token1] = ACTIONS(230), + [anon_sym_CARET] = ACTIONS(575), + [anon_sym_POUND_CARET] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(584), + [anon_sym_POUND0A] = ACTIONS(243), + [anon_sym_POUND0a] = ACTIONS(243), + [anon_sym_POUND_QMARK] = ACTIONS(245), + [anon_sym_POUND_QMARK_AT] = ACTIONS(247), + [anon_sym_POUND_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_COMMA_AT] = ACTIONS(255), + [anon_sym_COMMA] = ACTIONS(257), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(866), - [anon_sym_cl] = ACTIONS(871), - [anon_sym_EQ] = ACTIONS(874), - [aux_sym_accumulation_verb_token1] = ACTIONS(819), - [anon_sym_for] = ACTIONS(819), - [anon_sym_and] = ACTIONS(819), - [anon_sym_as] = ACTIONS(819), - [anon_sym_with] = ACTIONS(819), - [anon_sym_do] = ACTIONS(819), - [anon_sym_while] = ACTIONS(819), - [anon_sym_until] = ACTIONS(819), - [anon_sym_repeat] = ACTIONS(819), - [anon_sym_when] = ACTIONS(819), - [anon_sym_if] = ACTIONS(819), - [anon_sym_unless] = ACTIONS(819), - [anon_sym_always] = ACTIONS(819), - [anon_sym_thereis] = ACTIONS(819), - [anon_sym_never] = ACTIONS(819), - [anon_sym_else] = ACTIONS(819), - [anon_sym_finally] = ACTIONS(819), - [anon_sym_return] = ACTIONS(819), - [anon_sym_initially] = ACTIONS(819), - [anon_sym_POUNDP] = ACTIONS(114), - [anon_sym_POUNDp] = ACTIONS(114), - [sym_self_referential_reader_macro] = ACTIONS(876), - [anon_sym_POUND_PLUS] = ACTIONS(118), - [anon_sym_POUND_DASH] = ACTIONS(118), - [anon_sym_POUNDC] = ACTIONS(120), - [anon_sym_POUNDc] = ACTIONS(120), + [sym_fancy_literal] = ACTIONS(794), + [anon_sym_cl] = ACTIONS(799), + [anon_sym_EQ] = ACTIONS(802), + [aux_sym_accumulation_verb_token1] = ACTIONS(591), + [anon_sym_for] = ACTIONS(591), + [anon_sym_and] = ACTIONS(591), + [anon_sym_as] = ACTIONS(591), + [anon_sym_with] = ACTIONS(591), + [anon_sym_do] = ACTIONS(591), + [anon_sym_while] = ACTIONS(591), + [anon_sym_until] = ACTIONS(591), + [anon_sym_repeat] = ACTIONS(591), + [anon_sym_when] = ACTIONS(591), + [anon_sym_if] = ACTIONS(591), + [anon_sym_unless] = ACTIONS(591), + [anon_sym_always] = ACTIONS(591), + [anon_sym_thereis] = ACTIONS(591), + [anon_sym_never] = ACTIONS(591), + [anon_sym_else] = ACTIONS(591), + [anon_sym_finally] = ACTIONS(591), + [anon_sym_return] = ACTIONS(591), + [anon_sym_initially] = ACTIONS(591), + [anon_sym_POUNDP] = ACTIONS(266), + [anon_sym_POUNDp] = ACTIONS(266), + [sym_self_referential_reader_macro] = ACTIONS(804), + [anon_sym_POUND_PLUS] = ACTIONS(270), + [anon_sym_POUND_DASH] = ACTIONS(270), + [anon_sym_POUNDC] = ACTIONS(272), + [anon_sym_POUNDc] = ACTIONS(272), }, [25] = { - [sym__gap] = STATE(981), - [sym_dis_expr] = STATE(981), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2080), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2080), - [sym_set_lit] = STATE(2080), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(981), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(397), - [sym_comment] = ACTIONS(397), - [anon_sym_POUND_] = ACTIONS(401), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(878), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(880), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(878), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(411), - [anon_sym_POUND_CARET] = ACTIONS(415), - [anon_sym_LPAREN] = ACTIONS(419), - [anon_sym_RPAREN] = ACTIONS(423), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(35), + [sym_dis_expr] = STATE(35), + [sym__form] = STATE(34), + [sym_num_lit] = STATE(34), + [sym_kwd_lit] = STATE(34), + [sym_str_lit] = STATE(34), + [sym_char_lit] = STATE(34), + [sym_sym_lit] = STATE(1072), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(34), + [sym__bare_list_lit] = STATE(1070), + [sym_vec_lit] = STATE(34), + [sym_set_lit] = STATE(34), + [sym__bare_set_lit] = STATE(1069), + [sym_read_cond_lit] = STATE(34), + [sym_splicing_read_cond_lit] = STATE(34), + [sym_var_quoting_lit] = STATE(34), + [sym_quoting_lit] = STATE(34), + [sym_syn_quoting_lit] = STATE(34), + [sym_unquote_splicing_lit] = STATE(34), + [sym_unquoting_lit] = STATE(34), + [sym_defun] = STATE(1070), + [sym_loop_macro] = STATE(1070), + [sym_path_lit] = STATE(34), + [sym_package_lit] = STATE(34), + [sym_include_reader_macro] = STATE(34), + [sym_complex_num_lit] = STATE(34), + [aux_sym_dis_expr_repeat1] = STATE(35), + [aux_sym_list_lit_repeat1] = STATE(2797), + [sym__ws] = ACTIONS(806), + [sym_comment] = ACTIONS(806), + [anon_sym_POUND_] = ACTIONS(809), + [anon_sym_POUND] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(812), + [aux_sym_num_lit_token1] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(814), + [anon_sym_COLON_COLON] = ACTIONS(226), + [anon_sym_DQUOTE] = ACTIONS(228), + [sym_nil_lit] = ACTIONS(812), + [aux_sym_sym_lit_token1] = ACTIONS(230), + [anon_sym_CARET] = ACTIONS(817), + [anon_sym_POUND_CARET] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_POUND0A] = ACTIONS(243), + [anon_sym_POUND0a] = ACTIONS(243), + [anon_sym_POUND_QMARK] = ACTIONS(245), + [anon_sym_POUND_QMARK_AT] = ACTIONS(247), + [anon_sym_POUND_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_COMMA_AT] = ACTIONS(255), + [anon_sym_COMMA] = ACTIONS(257), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(878), - [anon_sym_cl] = ACTIONS(884), - [anon_sym_EQ] = ACTIONS(888), - [aux_sym_accumulation_verb_token1] = ACTIONS(432), - [anon_sym_for] = ACTIONS(432), - [anon_sym_and] = ACTIONS(432), - [anon_sym_as] = ACTIONS(432), - [anon_sym_with] = ACTIONS(432), - [anon_sym_do] = ACTIONS(432), - [anon_sym_while] = ACTIONS(432), - [anon_sym_until] = ACTIONS(432), - [anon_sym_repeat] = ACTIONS(432), - [anon_sym_when] = ACTIONS(432), - [anon_sym_if] = ACTIONS(432), - [anon_sym_unless] = ACTIONS(432), - [anon_sym_always] = ACTIONS(432), - [anon_sym_thereis] = ACTIONS(432), - [anon_sym_never] = ACTIONS(432), - [anon_sym_else] = ACTIONS(432), - [anon_sym_finally] = ACTIONS(432), - [anon_sym_return] = ACTIONS(432), - [anon_sym_initially] = ACTIONS(432), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(890), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(812), + [anon_sym_cl] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(831), + [aux_sym_accumulation_verb_token1] = ACTIONS(833), + [anon_sym_for] = ACTIONS(833), + [anon_sym_and] = ACTIONS(833), + [anon_sym_as] = ACTIONS(833), + [anon_sym_with] = ACTIONS(833), + [anon_sym_do] = ACTIONS(833), + [anon_sym_while] = ACTIONS(833), + [anon_sym_until] = ACTIONS(833), + [anon_sym_repeat] = ACTIONS(833), + [anon_sym_when] = ACTIONS(833), + [anon_sym_if] = ACTIONS(833), + [anon_sym_unless] = ACTIONS(833), + [anon_sym_always] = ACTIONS(833), + [anon_sym_thereis] = ACTIONS(833), + [anon_sym_never] = ACTIONS(833), + [anon_sym_else] = ACTIONS(833), + [anon_sym_finally] = ACTIONS(833), + [anon_sym_return] = ACTIONS(833), + [anon_sym_initially] = ACTIONS(833), + [anon_sym_POUNDP] = ACTIONS(266), + [anon_sym_POUNDp] = ACTIONS(266), + [sym_self_referential_reader_macro] = ACTIONS(835), + [anon_sym_POUND_PLUS] = ACTIONS(270), + [anon_sym_POUND_DASH] = ACTIONS(270), + [anon_sym_POUNDC] = ACTIONS(272), + [anon_sym_POUNDc] = ACTIONS(272), }, [26] = { - [sym__gap] = STATE(20), - [sym_dis_expr] = STATE(20), - [sym__form] = STATE(2084), - [sym_num_lit] = STATE(2084), - [sym_kwd_lit] = STATE(2084), - [sym_str_lit] = STATE(2084), - [sym_char_lit] = STATE(2084), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2084), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2084), - [sym_set_lit] = STATE(2084), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2084), - [sym_splicing_read_cond_lit] = STATE(2084), - [sym_var_quoting_lit] = STATE(2084), - [sym_quoting_lit] = STATE(2084), - [sym_syn_quoting_lit] = STATE(2084), - [sym_unquote_splicing_lit] = STATE(2084), - [sym_unquoting_lit] = STATE(2084), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2084), - [sym_package_lit] = STATE(2084), - [sym_include_reader_macro] = STATE(2084), - [sym_complex_num_lit] = STATE(2084), - [aux_sym_dis_expr_repeat1] = STATE(20), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(892), - [sym_comment] = ACTIONS(892), - [anon_sym_POUND_] = ACTIONS(441), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(896), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(896), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(451), - [anon_sym_POUND_CARET] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(459), - [anon_sym_RPAREN] = ACTIONS(463), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(837), + [sym_comment] = ACTIONS(837), + [anon_sym_POUND_] = ACTIONS(841), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(845), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(847), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(845), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(851), + [anon_sym_POUND_CARET] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_RPAREN] = ACTIONS(863), + [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(896), - [anon_sym_cl] = ACTIONS(902), - [anon_sym_EQ] = ACTIONS(906), - [aux_sym_accumulation_verb_token1] = ACTIONS(472), - [anon_sym_for] = ACTIONS(472), - [anon_sym_and] = ACTIONS(472), - [anon_sym_as] = ACTIONS(472), - [anon_sym_with] = ACTIONS(472), - [anon_sym_do] = ACTIONS(472), - [anon_sym_while] = ACTIONS(472), - [anon_sym_until] = ACTIONS(472), - [anon_sym_repeat] = ACTIONS(472), - [anon_sym_when] = ACTIONS(472), - [anon_sym_if] = ACTIONS(472), - [anon_sym_unless] = ACTIONS(472), - [anon_sym_always] = ACTIONS(472), - [anon_sym_thereis] = ACTIONS(472), - [anon_sym_never] = ACTIONS(472), - [anon_sym_else] = ACTIONS(472), - [anon_sym_finally] = ACTIONS(472), - [anon_sym_return] = ACTIONS(472), - [anon_sym_initially] = ACTIONS(472), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(908), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(845), + [anon_sym_cl] = ACTIONS(866), + [anon_sym_EQ] = ACTIONS(870), + [aux_sym_accumulation_verb_token1] = ACTIONS(872), + [anon_sym_for] = ACTIONS(872), + [anon_sym_and] = ACTIONS(872), + [anon_sym_as] = ACTIONS(872), + [anon_sym_with] = ACTIONS(872), + [anon_sym_do] = ACTIONS(872), + [anon_sym_while] = ACTIONS(872), + [anon_sym_until] = ACTIONS(872), + [anon_sym_repeat] = ACTIONS(872), + [anon_sym_when] = ACTIONS(872), + [anon_sym_if] = ACTIONS(872), + [anon_sym_unless] = ACTIONS(872), + [anon_sym_always] = ACTIONS(872), + [anon_sym_thereis] = ACTIONS(872), + [anon_sym_never] = ACTIONS(872), + [anon_sym_else] = ACTIONS(872), + [anon_sym_finally] = ACTIONS(872), + [anon_sym_return] = ACTIONS(872), + [anon_sym_initially] = ACTIONS(872), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(875), + [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(981), - [sym_dis_expr] = STATE(981), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2107), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2107), - [sym_set_lit] = STATE(2107), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(981), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(737), - [sym_comment] = ACTIONS(737), - [anon_sym_POUND_] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(910), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(912), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(910), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym_POUND_CARET] = ACTIONS(755), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_RPAREN] = ACTIONS(763), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(990), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(599), + [sym_comment] = ACTIONS(599), + [anon_sym_POUND_] = ACTIONS(603), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(877), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(879), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(877), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_POUND_CARET] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(625), + [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(910), - [anon_sym_cl] = ACTIONS(916), - [anon_sym_EQ] = ACTIONS(920), - [aux_sym_accumulation_verb_token1] = ACTIONS(772), - [anon_sym_for] = ACTIONS(772), - [anon_sym_and] = ACTIONS(772), - [anon_sym_as] = ACTIONS(772), - [anon_sym_with] = ACTIONS(772), - [anon_sym_do] = ACTIONS(772), - [anon_sym_while] = ACTIONS(772), - [anon_sym_until] = ACTIONS(772), - [anon_sym_repeat] = ACTIONS(772), - [anon_sym_when] = ACTIONS(772), - [anon_sym_if] = ACTIONS(772), - [anon_sym_unless] = ACTIONS(772), - [anon_sym_always] = ACTIONS(772), - [anon_sym_thereis] = ACTIONS(772), - [anon_sym_never] = ACTIONS(772), - [anon_sym_else] = ACTIONS(772), - [anon_sym_finally] = ACTIONS(772), - [anon_sym_return] = ACTIONS(772), - [anon_sym_initially] = ACTIONS(772), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(922), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(877), + [anon_sym_cl] = ACTIONS(883), + [anon_sym_EQ] = ACTIONS(887), + [aux_sym_accumulation_verb_token1] = ACTIONS(634), + [anon_sym_for] = ACTIONS(634), + [anon_sym_and] = ACTIONS(634), + [anon_sym_as] = ACTIONS(634), + [anon_sym_with] = ACTIONS(634), + [anon_sym_do] = ACTIONS(634), + [anon_sym_while] = ACTIONS(634), + [anon_sym_until] = ACTIONS(634), + [anon_sym_repeat] = ACTIONS(634), + [anon_sym_when] = ACTIONS(634), + [anon_sym_if] = ACTIONS(634), + [anon_sym_unless] = ACTIONS(634), + [anon_sym_always] = ACTIONS(634), + [anon_sym_thereis] = ACTIONS(634), + [anon_sym_never] = ACTIONS(634), + [anon_sym_else] = ACTIONS(634), + [anon_sym_finally] = ACTIONS(634), + [anon_sym_return] = ACTIONS(634), + [anon_sym_initially] = ACTIONS(634), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(889), + [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(981), - [sym_dis_expr] = STATE(981), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2113), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2113), - [sym_set_lit] = STATE(2113), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(981), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(924), - [sym_comment] = ACTIONS(924), - [anon_sym_POUND_] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(932), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(934), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(932), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(938), - [anon_sym_POUND_CARET] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(946), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(39), + [sym_dis_expr] = STATE(39), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(39), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(891), + [sym_comment] = ACTIONS(891), + [anon_sym_POUND_] = ACTIONS(63), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(895), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(897), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(895), + [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(932), - [anon_sym_cl] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(957), - [aux_sym_accumulation_verb_token1] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_with] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_until] = ACTIONS(959), - [anon_sym_repeat] = ACTIONS(959), - [anon_sym_when] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_unless] = ACTIONS(959), - [anon_sym_always] = ACTIONS(959), - [anon_sym_thereis] = ACTIONS(959), - [anon_sym_never] = ACTIONS(959), - [anon_sym_else] = ACTIONS(959), - [anon_sym_finally] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_initially] = ACTIONS(959), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(962), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(895), + [anon_sym_cl] = ACTIONS(901), + [anon_sym_EQ] = ACTIONS(905), + [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(907), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [29] = { - [sym__gap] = STATE(37), - [sym_dis_expr] = STATE(37), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2115), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2115), - [sym_set_lit] = STATE(2115), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(37), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(964), - [sym_comment] = ACTIONS(964), - [anon_sym_POUND_] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(972), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(974), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(972), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(978), - [anon_sym_POUND_CARET] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(990), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(990), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(909), + [sym_comment] = ACTIONS(909), + [anon_sym_POUND_] = ACTIONS(913), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(917), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(919), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(917), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym_POUND_CARET] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(935), + [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(972), - [anon_sym_cl] = ACTIONS(993), - [anon_sym_EQ] = ACTIONS(997), - [aux_sym_accumulation_verb_token1] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_as] = ACTIONS(999), - [anon_sym_with] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_until] = ACTIONS(999), - [anon_sym_repeat] = ACTIONS(999), - [anon_sym_when] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_unless] = ACTIONS(999), - [anon_sym_always] = ACTIONS(999), - [anon_sym_thereis] = ACTIONS(999), - [anon_sym_never] = ACTIONS(999), - [anon_sym_else] = ACTIONS(999), - [anon_sym_finally] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_initially] = ACTIONS(999), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1002), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(917), + [anon_sym_cl] = ACTIONS(938), + [anon_sym_EQ] = ACTIONS(942), + [aux_sym_accumulation_verb_token1] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_and] = ACTIONS(944), + [anon_sym_as] = ACTIONS(944), + [anon_sym_with] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_until] = ACTIONS(944), + [anon_sym_repeat] = ACTIONS(944), + [anon_sym_when] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_unless] = ACTIONS(944), + [anon_sym_always] = ACTIONS(944), + [anon_sym_thereis] = ACTIONS(944), + [anon_sym_never] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_finally] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_initially] = ACTIONS(944), + [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), }, [30] = { - [sym__gap] = STATE(692), - [sym_dis_expr] = STATE(692), - [sym__form] = STATE(983), - [sym_num_lit] = STATE(983), - [sym_kwd_lit] = STATE(983), - [sym_str_lit] = STATE(983), - [sym_char_lit] = STATE(983), - [sym_sym_lit] = STATE(1129), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(983), - [sym__bare_list_lit] = STATE(1135), - [sym_vec_lit] = STATE(983), - [sym_set_lit] = STATE(983), - [sym__bare_set_lit] = STATE(1150), - [sym_read_cond_lit] = STATE(983), - [sym_splicing_read_cond_lit] = STATE(983), - [sym_var_quoting_lit] = STATE(983), - [sym_quoting_lit] = STATE(983), - [sym_syn_quoting_lit] = STATE(983), - [sym_unquote_splicing_lit] = STATE(983), - [sym_unquoting_lit] = STATE(983), - [sym_defun] = STATE(1135), - [sym_loop_macro] = STATE(1135), - [sym_path_lit] = STATE(983), - [sym_package_lit] = STATE(983), - [sym_include_reader_macro] = STATE(983), - [sym_complex_num_lit] = STATE(983), - [aux_sym_dis_expr_repeat1] = STATE(692), - [aux_sym_list_lit_repeat1] = STATE(2796), - [aux_sym_do_clause_repeat1] = STATE(15), - [sym__ws] = ACTIONS(1004), - [sym_comment] = ACTIONS(1004), - [anon_sym_POUND_] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(827), - [aux_sym_num_lit_token1] = ACTIONS(829), - [anon_sym_COLON] = ACTIONS(1006), - [anon_sym_COLON_COLON] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym_nil_lit] = ACTIONS(827), - [aux_sym_sym_lit_token1] = ACTIONS(837), - [anon_sym_CARET] = ACTIONS(1004), - [anon_sym_POUND_CARET] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_RPAREN] = ACTIONS(1004), - [anon_sym_POUND0A] = ACTIONS(839), - [anon_sym_POUND0a] = ACTIONS(839), - [anon_sym_POUND_QMARK] = ACTIONS(841), - [anon_sym_POUND_QMARK_AT] = ACTIONS(843), - [anon_sym_POUND_SQUOTE] = ACTIONS(845), - [anon_sym_SQUOTE] = ACTIONS(847), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_COMMA_AT] = ACTIONS(851), - [anon_sym_COMMA] = ACTIONS(853), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(949), + [sym_comment] = ACTIONS(949), + [anon_sym_POUND_] = ACTIONS(953), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(957), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(959), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(957), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(963), + [anon_sym_POUND_CARET] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(975), + [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(827), - [anon_sym_cl] = ACTIONS(1006), - [aux_sym_accumulation_verb_token1] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_with] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_until] = ACTIONS(1006), - [anon_sym_repeat] = ACTIONS(1006), - [anon_sym_when] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_unless] = ACTIONS(1006), - [anon_sym_always] = ACTIONS(1006), - [anon_sym_thereis] = ACTIONS(1006), - [anon_sym_never] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_finally] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_initially] = ACTIONS(1006), - [anon_sym_POUNDP] = ACTIONS(855), - [anon_sym_POUNDp] = ACTIONS(855), - [sym_self_referential_reader_macro] = ACTIONS(857), - [anon_sym_POUND_PLUS] = ACTIONS(859), - [anon_sym_POUND_DASH] = ACTIONS(859), - [anon_sym_POUNDC] = ACTIONS(861), - [anon_sym_POUNDc] = ACTIONS(861), + [sym_fancy_literal] = ACTIONS(957), + [anon_sym_cl] = ACTIONS(978), + [anon_sym_EQ] = ACTIONS(982), + [aux_sym_accumulation_verb_token1] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_and] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_with] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_until] = ACTIONS(984), + [anon_sym_repeat] = ACTIONS(984), + [anon_sym_when] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_unless] = ACTIONS(984), + [anon_sym_always] = ACTIONS(984), + [anon_sym_thereis] = ACTIONS(984), + [anon_sym_never] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_finally] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_initially] = ACTIONS(984), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(987), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [31] = { - [sym__gap] = STATE(981), - [sym_dis_expr] = STATE(981), - [sym__form] = STATE(2121), - [sym_num_lit] = STATE(2121), - [sym_kwd_lit] = STATE(2121), - [sym_str_lit] = STATE(2121), - [sym_char_lit] = STATE(2121), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2121), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2121), - [sym_set_lit] = STATE(2121), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2121), - [sym_splicing_read_cond_lit] = STATE(2121), - [sym_var_quoting_lit] = STATE(2121), - [sym_quoting_lit] = STATE(2121), - [sym_syn_quoting_lit] = STATE(2121), - [sym_unquote_splicing_lit] = STATE(2121), - [sym_unquoting_lit] = STATE(2121), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2121), - [sym_package_lit] = STATE(2121), - [sym_include_reader_macro] = STATE(2121), - [sym_complex_num_lit] = STATE(2121), - [aux_sym_dis_expr_repeat1] = STATE(981), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(924), - [sym_comment] = ACTIONS(924), - [anon_sym_POUND_] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1008), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1010), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1008), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(938), - [anon_sym_POUND_CARET] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(946), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(36), + [sym_dis_expr] = STATE(36), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(36), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(989), + [sym_comment] = ACTIONS(989), + [anon_sym_POUND_] = ACTIONS(993), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(997), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(999), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(997), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_POUND_CARET] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1011), + [anon_sym_RPAREN] = ACTIONS(1015), + [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(1008), - [anon_sym_cl] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1018), - [aux_sym_accumulation_verb_token1] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_as] = ACTIONS(959), - [anon_sym_with] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_until] = ACTIONS(959), - [anon_sym_repeat] = ACTIONS(959), - [anon_sym_when] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_unless] = ACTIONS(959), - [anon_sym_always] = ACTIONS(959), - [anon_sym_thereis] = ACTIONS(959), - [anon_sym_never] = ACTIONS(959), - [anon_sym_else] = ACTIONS(959), - [anon_sym_finally] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_initially] = ACTIONS(959), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1020), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(997), + [anon_sym_cl] = ACTIONS(1018), + [anon_sym_EQ] = ACTIONS(1022), + [aux_sym_accumulation_verb_token1] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_with] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_until] = ACTIONS(1024), + [anon_sym_repeat] = ACTIONS(1024), + [anon_sym_when] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_unless] = ACTIONS(1024), + [anon_sym_always] = ACTIONS(1024), + [anon_sym_thereis] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_finally] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_initially] = ACTIONS(1024), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1027), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [32] = { - [sym__gap] = STATE(17), - [sym_dis_expr] = STATE(17), - [sym__form] = STATE(18), - [sym_num_lit] = STATE(18), - [sym_kwd_lit] = STATE(18), - [sym_str_lit] = STATE(18), - [sym_char_lit] = STATE(18), - [sym_sym_lit] = STATE(1062), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(18), - [sym__bare_list_lit] = STATE(1015), - [sym_vec_lit] = STATE(18), - [sym_set_lit] = STATE(18), - [sym__bare_set_lit] = STATE(1027), - [sym_read_cond_lit] = STATE(18), - [sym_splicing_read_cond_lit] = STATE(18), - [sym_var_quoting_lit] = STATE(18), - [sym_quoting_lit] = STATE(18), - [sym_syn_quoting_lit] = STATE(18), - [sym_unquote_splicing_lit] = STATE(18), - [sym_unquoting_lit] = STATE(18), - [sym_defun] = STATE(1015), - [sym_loop_macro] = STATE(1015), - [sym_path_lit] = STATE(18), - [sym_package_lit] = STATE(18), - [sym_include_reader_macro] = STATE(18), - [sym_complex_num_lit] = STATE(18), - [aux_sym_dis_expr_repeat1] = STATE(17), - [aux_sym_list_lit_repeat1] = STATE(2775), - [sym__ws] = ACTIONS(1022), - [sym_comment] = ACTIONS(1022), - [anon_sym_POUND_] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(65), - [anon_sym_DOT] = ACTIONS(1028), - [aux_sym_num_lit_token1] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(1030), - [anon_sym_COLON_COLON] = ACTIONS(74), - [anon_sym_DQUOTE] = ACTIONS(76), - [sym_nil_lit] = ACTIONS(1028), - [aux_sym_sym_lit_token1] = ACTIONS(78), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym_POUND_CARET] = ACTIONS(1036), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1042), - [anon_sym_POUND0A] = ACTIONS(91), - [anon_sym_POUND0a] = ACTIONS(91), - [anon_sym_POUND_QMARK] = ACTIONS(93), - [anon_sym_POUND_QMARK_AT] = ACTIONS(95), - [anon_sym_POUND_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_BQUOTE] = ACTIONS(101), - [anon_sym_COMMA_AT] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(105), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(949), + [sym_comment] = ACTIONS(949), + [anon_sym_POUND_] = ACTIONS(953), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1029), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1031), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1029), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(963), + [anon_sym_POUND_CARET] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(975), + [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(1028), - [anon_sym_cl] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1047), - [aux_sym_accumulation_verb_token1] = ACTIONS(1049), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_and] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_with] = ACTIONS(1049), - [anon_sym_do] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_until] = ACTIONS(1049), - [anon_sym_repeat] = ACTIONS(1049), - [anon_sym_when] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_unless] = ACTIONS(1049), - [anon_sym_always] = ACTIONS(1049), - [anon_sym_thereis] = ACTIONS(1049), - [anon_sym_never] = ACTIONS(1049), - [anon_sym_else] = ACTIONS(1049), - [anon_sym_finally] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_initially] = ACTIONS(1049), - [anon_sym_POUNDP] = ACTIONS(114), - [anon_sym_POUNDp] = ACTIONS(114), - [sym_self_referential_reader_macro] = ACTIONS(1051), - [anon_sym_POUND_PLUS] = ACTIONS(118), - [anon_sym_POUND_DASH] = ACTIONS(118), - [anon_sym_POUNDC] = ACTIONS(120), - [anon_sym_POUNDc] = ACTIONS(120), + [sym_fancy_literal] = ACTIONS(1029), + [anon_sym_cl] = ACTIONS(1035), + [anon_sym_EQ] = ACTIONS(1039), + [aux_sym_accumulation_verb_token1] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_and] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_with] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_until] = ACTIONS(984), + [anon_sym_repeat] = ACTIONS(984), + [anon_sym_when] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_unless] = ACTIONS(984), + [anon_sym_always] = ACTIONS(984), + [anon_sym_thereis] = ACTIONS(984), + [anon_sym_never] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_finally] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_initially] = ACTIONS(984), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1041), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [33] = { [sym__gap] = STATE(38), [sym_dis_expr] = STATE(38), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2123), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2123), - [sym_set_lit] = STATE(2123), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2123), - [sym_package_lit] = STATE(2123), - [sym_include_reader_macro] = STATE(2123), - [sym_complex_num_lit] = STATE(2123), + [sym__form] = STATE(2243), + [sym_num_lit] = STATE(2243), + [sym_kwd_lit] = STATE(2243), + [sym_str_lit] = STATE(2243), + [sym_char_lit] = STATE(2243), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2243), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2243), + [sym_set_lit] = STATE(2243), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2243), + [sym_splicing_read_cond_lit] = STATE(2243), + [sym_var_quoting_lit] = STATE(2243), + [sym_quoting_lit] = STATE(2243), + [sym_syn_quoting_lit] = STATE(2243), + [sym_unquote_splicing_lit] = STATE(2243), + [sym_unquoting_lit] = STATE(2243), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2243), + [sym_package_lit] = STATE(2243), + [sym_include_reader_macro] = STATE(2243), + [sym_complex_num_lit] = STATE(2243), [aux_sym_dis_expr_repeat1] = STATE(38), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1053), - [sym_comment] = ACTIONS(1053), - [anon_sym_POUND_] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1057), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1057), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(978), - [anon_sym_POUND_CARET] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(990), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1043), + [sym_comment] = ACTIONS(1043), + [anon_sym_POUND_] = ACTIONS(993), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1047), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1049), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1047), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_POUND_CARET] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1011), + [anon_sym_RPAREN] = ACTIONS(1015), + [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(1057), - [anon_sym_cl] = ACTIONS(1063), - [anon_sym_EQ] = ACTIONS(1067), - [aux_sym_accumulation_verb_token1] = ACTIONS(999), - [anon_sym_for] = ACTIONS(999), - [anon_sym_and] = ACTIONS(999), - [anon_sym_as] = ACTIONS(999), - [anon_sym_with] = ACTIONS(999), - [anon_sym_do] = ACTIONS(999), - [anon_sym_while] = ACTIONS(999), - [anon_sym_until] = ACTIONS(999), - [anon_sym_repeat] = ACTIONS(999), - [anon_sym_when] = ACTIONS(999), - [anon_sym_if] = ACTIONS(999), - [anon_sym_unless] = ACTIONS(999), - [anon_sym_always] = ACTIONS(999), - [anon_sym_thereis] = ACTIONS(999), - [anon_sym_never] = ACTIONS(999), - [anon_sym_else] = ACTIONS(999), - [anon_sym_finally] = ACTIONS(999), - [anon_sym_return] = ACTIONS(999), - [anon_sym_initially] = ACTIONS(999), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1069), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1047), + [anon_sym_cl] = ACTIONS(1053), + [anon_sym_EQ] = ACTIONS(1057), + [aux_sym_accumulation_verb_token1] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_with] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_until] = ACTIONS(1024), + [anon_sym_repeat] = ACTIONS(1024), + [anon_sym_when] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_unless] = ACTIONS(1024), + [anon_sym_always] = ACTIONS(1024), + [anon_sym_thereis] = ACTIONS(1024), + [anon_sym_never] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_finally] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_initially] = ACTIONS(1024), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1059), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [34] = { - [sym__gap] = STATE(39), - [sym_dis_expr] = STATE(39), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2128), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2128), - [sym_set_lit] = STATE(2128), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(39), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1071), - [sym_comment] = ACTIONS(1071), - [anon_sym_POUND_] = ACTIONS(1075), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1079), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1081), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1079), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1085), - [anon_sym_POUND_CARET] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_RPAREN] = ACTIONS(1097), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(40), + [sym_dis_expr] = STATE(40), + [sym__form] = STATE(2251), + [sym_num_lit] = STATE(2251), + [sym_kwd_lit] = STATE(2251), + [sym_str_lit] = STATE(2251), + [sym_char_lit] = STATE(2251), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2251), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2251), + [sym_set_lit] = STATE(2251), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2251), + [sym_splicing_read_cond_lit] = STATE(2251), + [sym_var_quoting_lit] = STATE(2251), + [sym_quoting_lit] = STATE(2251), + [sym_syn_quoting_lit] = STATE(2251), + [sym_unquote_splicing_lit] = STATE(2251), + [sym_unquoting_lit] = STATE(2251), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2251), + [sym_package_lit] = STATE(2251), + [sym_include_reader_macro] = STATE(2251), + [sym_complex_num_lit] = STATE(2251), + [aux_sym_dis_expr_repeat1] = STATE(40), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1061), + [sym_comment] = ACTIONS(1061), + [anon_sym_POUND_] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1069), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1069), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1075), + [anon_sym_POUND_CARET] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_RPAREN] = ACTIONS(1087), + [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(1079), - [anon_sym_cl] = ACTIONS(1100), - [anon_sym_EQ] = ACTIONS(1104), - [aux_sym_accumulation_verb_token1] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(1106), - [anon_sym_and] = ACTIONS(1106), - [anon_sym_as] = ACTIONS(1106), - [anon_sym_with] = ACTIONS(1106), - [anon_sym_do] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1106), - [anon_sym_until] = ACTIONS(1106), - [anon_sym_repeat] = ACTIONS(1106), - [anon_sym_when] = ACTIONS(1106), - [anon_sym_if] = ACTIONS(1106), - [anon_sym_unless] = ACTIONS(1106), - [anon_sym_always] = ACTIONS(1106), - [anon_sym_thereis] = ACTIONS(1106), - [anon_sym_never] = ACTIONS(1106), - [anon_sym_else] = ACTIONS(1106), - [anon_sym_finally] = ACTIONS(1106), - [anon_sym_return] = ACTIONS(1106), - [anon_sym_initially] = ACTIONS(1106), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1109), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1069), + [anon_sym_cl] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1094), + [aux_sym_accumulation_verb_token1] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_and] = ACTIONS(1096), + [anon_sym_as] = ACTIONS(1096), + [anon_sym_with] = ACTIONS(1096), + [anon_sym_do] = ACTIONS(1096), + [anon_sym_while] = ACTIONS(1096), + [anon_sym_until] = ACTIONS(1096), + [anon_sym_repeat] = ACTIONS(1096), + [anon_sym_when] = ACTIONS(1096), + [anon_sym_if] = ACTIONS(1096), + [anon_sym_unless] = ACTIONS(1096), + [anon_sym_always] = ACTIONS(1096), + [anon_sym_thereis] = ACTIONS(1096), + [anon_sym_never] = ACTIONS(1096), + [anon_sym_else] = ACTIONS(1096), + [anon_sym_finally] = ACTIONS(1096), + [anon_sym_return] = ACTIONS(1096), + [anon_sym_initially] = ACTIONS(1096), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1099), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [35] = { - [sym__gap] = STATE(981), - [sym_dis_expr] = STATE(981), - [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(1062), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(40), - [sym__bare_list_lit] = STATE(1015), - [sym_vec_lit] = STATE(40), - [sym_set_lit] = STATE(40), - [sym__bare_set_lit] = STATE(1027), - [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(1015), - [sym_loop_macro] = STATE(1015), - [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(981), - [aux_sym_list_lit_repeat1] = STATE(2775), - [sym__ws] = ACTIONS(1111), - [sym_comment] = ACTIONS(1111), - [anon_sym_POUND_] = ACTIONS(1114), - [anon_sym_POUND] = ACTIONS(65), - [anon_sym_DOT] = ACTIONS(1117), - [aux_sym_num_lit_token1] = ACTIONS(69), - [anon_sym_COLON] = ACTIONS(1119), - [anon_sym_COLON_COLON] = ACTIONS(74), - [anon_sym_DQUOTE] = ACTIONS(76), - [sym_nil_lit] = ACTIONS(1117), - [aux_sym_sym_lit_token1] = ACTIONS(78), - [anon_sym_CARET] = ACTIONS(1122), - [anon_sym_POUND_CARET] = ACTIONS(1125), - [anon_sym_LPAREN] = ACTIONS(1128), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_POUND0A] = ACTIONS(91), - [anon_sym_POUND0a] = ACTIONS(91), - [anon_sym_POUND_QMARK] = ACTIONS(93), - [anon_sym_POUND_QMARK_AT] = ACTIONS(95), - [anon_sym_POUND_SQUOTE] = ACTIONS(97), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_BQUOTE] = ACTIONS(101), - [anon_sym_COMMA_AT] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(105), + [sym__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(37), + [sym_num_lit] = STATE(37), + [sym_kwd_lit] = STATE(37), + [sym_str_lit] = STATE(37), + [sym_char_lit] = STATE(37), + [sym_sym_lit] = STATE(1072), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(37), + [sym__bare_list_lit] = STATE(1070), + [sym_vec_lit] = STATE(37), + [sym_set_lit] = STATE(37), + [sym__bare_set_lit] = STATE(1069), + [sym_read_cond_lit] = STATE(37), + [sym_splicing_read_cond_lit] = STATE(37), + [sym_var_quoting_lit] = STATE(37), + [sym_quoting_lit] = STATE(37), + [sym_syn_quoting_lit] = STATE(37), + [sym_unquote_splicing_lit] = STATE(37), + [sym_unquoting_lit] = STATE(37), + [sym_defun] = STATE(1070), + [sym_loop_macro] = STATE(1070), + [sym_path_lit] = STATE(37), + [sym_package_lit] = STATE(37), + [sym_include_reader_macro] = STATE(37), + [sym_complex_num_lit] = STATE(37), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2797), + [sym__ws] = ACTIONS(1101), + [sym_comment] = ACTIONS(1101), + [anon_sym_POUND_] = ACTIONS(1104), + [anon_sym_POUND] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(1107), + [aux_sym_num_lit_token1] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(1109), + [anon_sym_COLON_COLON] = ACTIONS(226), + [anon_sym_DQUOTE] = ACTIONS(228), + [sym_nil_lit] = ACTIONS(1107), + [aux_sym_sym_lit_token1] = ACTIONS(230), + [anon_sym_CARET] = ACTIONS(1112), + [anon_sym_POUND_CARET] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1118), + [anon_sym_RPAREN] = ACTIONS(1121), + [anon_sym_POUND0A] = ACTIONS(243), + [anon_sym_POUND0a] = ACTIONS(243), + [anon_sym_POUND_QMARK] = ACTIONS(245), + [anon_sym_POUND_QMARK_AT] = ACTIONS(247), + [anon_sym_POUND_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(253), + [anon_sym_COMMA_AT] = ACTIONS(255), + [anon_sym_COMMA] = ACTIONS(257), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1117), - [anon_sym_cl] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1136), - [aux_sym_accumulation_verb_token1] = ACTIONS(1138), - [anon_sym_for] = ACTIONS(1138), - [anon_sym_and] = ACTIONS(1138), - [anon_sym_as] = ACTIONS(1138), - [anon_sym_with] = ACTIONS(1138), - [anon_sym_do] = ACTIONS(1138), - [anon_sym_while] = ACTIONS(1138), - [anon_sym_until] = ACTIONS(1138), - [anon_sym_repeat] = ACTIONS(1138), - [anon_sym_when] = ACTIONS(1138), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_unless] = ACTIONS(1138), - [anon_sym_always] = ACTIONS(1138), - [anon_sym_thereis] = ACTIONS(1138), - [anon_sym_never] = ACTIONS(1138), - [anon_sym_else] = ACTIONS(1138), - [anon_sym_finally] = ACTIONS(1138), - [anon_sym_return] = ACTIONS(1138), - [anon_sym_initially] = ACTIONS(1138), - [anon_sym_POUNDP] = ACTIONS(114), - [anon_sym_POUNDp] = ACTIONS(114), - [sym_self_referential_reader_macro] = ACTIONS(1140), - [anon_sym_POUND_PLUS] = ACTIONS(118), - [anon_sym_POUND_DASH] = ACTIONS(118), - [anon_sym_POUNDC] = ACTIONS(120), - [anon_sym_POUNDc] = ACTIONS(120), + [sym_fancy_literal] = ACTIONS(1107), + [anon_sym_cl] = ACTIONS(1123), + [anon_sym_EQ] = ACTIONS(1126), + [aux_sym_accumulation_verb_token1] = ACTIONS(1128), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_and] = ACTIONS(1128), + [anon_sym_as] = ACTIONS(1128), + [anon_sym_with] = ACTIONS(1128), + [anon_sym_do] = ACTIONS(1128), + [anon_sym_while] = ACTIONS(1128), + [anon_sym_until] = ACTIONS(1128), + [anon_sym_repeat] = ACTIONS(1128), + [anon_sym_when] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1128), + [anon_sym_unless] = ACTIONS(1128), + [anon_sym_always] = ACTIONS(1128), + [anon_sym_thereis] = ACTIONS(1128), + [anon_sym_never] = ACTIONS(1128), + [anon_sym_else] = ACTIONS(1128), + [anon_sym_finally] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1128), + [anon_sym_initially] = ACTIONS(1128), + [anon_sym_POUNDP] = ACTIONS(266), + [anon_sym_POUNDp] = ACTIONS(266), + [sym_self_referential_reader_macro] = ACTIONS(1130), + [anon_sym_POUND_PLUS] = ACTIONS(270), + [anon_sym_POUND_DASH] = ACTIONS(270), + [anon_sym_POUNDC] = ACTIONS(272), + [anon_sym_POUNDc] = ACTIONS(272), }, [36] = { - [sym__gap] = STATE(981), - [sym_dis_expr] = STATE(981), - [sym__form] = STATE(2509), - [sym_num_lit] = STATE(2509), - [sym_kwd_lit] = STATE(2509), - [sym_str_lit] = STATE(2509), - [sym_char_lit] = STATE(2509), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2509), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2509), - [sym_set_lit] = STATE(2509), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2509), - [sym_splicing_read_cond_lit] = STATE(2509), - [sym_var_quoting_lit] = STATE(2509), - [sym_quoting_lit] = STATE(2509), - [sym_syn_quoting_lit] = STATE(2509), - [sym_unquote_splicing_lit] = STATE(2509), - [sym_unquoting_lit] = STATE(2509), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2509), - [sym_package_lit] = STATE(2509), - [sym_include_reader_macro] = STATE(2509), - [sym_complex_num_lit] = STATE(2509), - [aux_sym_dis_expr_repeat1] = STATE(981), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1142), - [sym_comment] = ACTIONS(1142), - [anon_sym_POUND_] = ACTIONS(1146), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1150), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1152), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1150), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1156), - [anon_sym_POUND_CARET] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(1168), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(1132), + [sym_comment] = ACTIONS(1132), + [anon_sym_POUND_] = ACTIONS(1136), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1140), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1142), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1140), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1146), + [anon_sym_POUND_CARET] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_RPAREN] = ACTIONS(1158), + [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(1150), - [anon_sym_cl] = ACTIONS(1171), - [anon_sym_EQ] = ACTIONS(1175), - [aux_sym_accumulation_verb_token1] = ACTIONS(1177), - [anon_sym_for] = ACTIONS(1177), - [anon_sym_and] = ACTIONS(1177), - [anon_sym_as] = ACTIONS(1177), - [anon_sym_with] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1177), - [anon_sym_while] = ACTIONS(1177), - [anon_sym_until] = ACTIONS(1177), - [anon_sym_repeat] = ACTIONS(1177), - [anon_sym_when] = ACTIONS(1177), - [anon_sym_if] = ACTIONS(1177), - [anon_sym_unless] = ACTIONS(1177), - [anon_sym_always] = ACTIONS(1177), - [anon_sym_thereis] = ACTIONS(1177), - [anon_sym_never] = ACTIONS(1177), - [anon_sym_else] = ACTIONS(1177), - [anon_sym_finally] = ACTIONS(1177), - [anon_sym_return] = ACTIONS(1177), - [anon_sym_initially] = ACTIONS(1177), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1180), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1140), + [anon_sym_cl] = ACTIONS(1161), + [anon_sym_EQ] = ACTIONS(1165), + [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(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1170), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [37] = { - [sym__gap] = STATE(981), - [sym_dis_expr] = STATE(981), - [sym__form] = STATE(2200), - [sym_num_lit] = STATE(2200), - [sym_kwd_lit] = STATE(2200), - [sym_str_lit] = STATE(2200), - [sym_char_lit] = STATE(2200), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2200), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2200), - [sym_set_lit] = STATE(2200), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2200), - [sym_splicing_read_cond_lit] = STATE(2200), - [sym_var_quoting_lit] = STATE(2200), - [sym_quoting_lit] = STATE(2200), - [sym_syn_quoting_lit] = STATE(2200), - [sym_unquote_splicing_lit] = STATE(2200), - [sym_unquoting_lit] = STATE(2200), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2200), - [sym_package_lit] = STATE(2200), - [sym_include_reader_macro] = STATE(2200), - [sym_complex_num_lit] = STATE(2200), - [aux_sym_dis_expr_repeat1] = STATE(981), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1182), - [sym_comment] = ACTIONS(1182), - [anon_sym_POUND_] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1190), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1192), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1190), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1196), - [anon_sym_POUND_CARET] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1204), - [anon_sym_RPAREN] = ACTIONS(1208), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(41), + [sym_dis_expr] = STATE(41), + [sym__form] = STATE(2193), + [sym_num_lit] = STATE(2193), + [sym_kwd_lit] = STATE(2193), + [sym_str_lit] = STATE(2193), + [sym_char_lit] = STATE(2193), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2193), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2193), + [sym_set_lit] = STATE(2193), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2193), + [sym_splicing_read_cond_lit] = STATE(2193), + [sym_var_quoting_lit] = STATE(2193), + [sym_quoting_lit] = STATE(2193), + [sym_syn_quoting_lit] = STATE(2193), + [sym_unquote_splicing_lit] = STATE(2193), + [sym_unquoting_lit] = STATE(2193), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2193), + [sym_package_lit] = STATE(2193), + [sym_include_reader_macro] = STATE(2193), + [sym_complex_num_lit] = STATE(2193), + [aux_sym_dis_expr_repeat1] = STATE(41), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1172), + [sym_comment] = ACTIONS(1172), + [anon_sym_POUND_] = ACTIONS(1176), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1180), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1182), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1180), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1186), + [anon_sym_POUND_CARET] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_RPAREN] = ACTIONS(1198), + [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(1190), - [anon_sym_cl] = ACTIONS(1211), - [anon_sym_EQ] = ACTIONS(1215), - [aux_sym_accumulation_verb_token1] = ACTIONS(1217), - [anon_sym_for] = ACTIONS(1217), - [anon_sym_and] = ACTIONS(1217), - [anon_sym_as] = ACTIONS(1217), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_do] = ACTIONS(1217), - [anon_sym_while] = ACTIONS(1217), - [anon_sym_until] = ACTIONS(1217), - [anon_sym_repeat] = ACTIONS(1217), - [anon_sym_when] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1217), - [anon_sym_unless] = ACTIONS(1217), - [anon_sym_always] = ACTIONS(1217), - [anon_sym_thereis] = ACTIONS(1217), - [anon_sym_never] = ACTIONS(1217), - [anon_sym_else] = ACTIONS(1217), - [anon_sym_finally] = ACTIONS(1217), - [anon_sym_return] = ACTIONS(1217), - [anon_sym_initially] = ACTIONS(1217), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1220), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1180), + [anon_sym_cl] = ACTIONS(1201), + [anon_sym_EQ] = ACTIONS(1205), + [aux_sym_accumulation_verb_token1] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_and] = ACTIONS(1207), + [anon_sym_as] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_until] = ACTIONS(1207), + [anon_sym_repeat] = ACTIONS(1207), + [anon_sym_when] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_unless] = ACTIONS(1207), + [anon_sym_always] = ACTIONS(1207), + [anon_sym_thereis] = ACTIONS(1207), + [anon_sym_never] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_finally] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_initially] = ACTIONS(1207), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1210), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [38] = { - [sym__gap] = STATE(981), - [sym_dis_expr] = STATE(981), - [sym__form] = STATE(2214), - [sym_num_lit] = STATE(2214), - [sym_kwd_lit] = STATE(2214), - [sym_str_lit] = STATE(2214), - [sym_char_lit] = STATE(2214), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2214), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2214), - [sym_set_lit] = STATE(2214), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2214), - [sym_splicing_read_cond_lit] = STATE(2214), - [sym_var_quoting_lit] = STATE(2214), - [sym_quoting_lit] = STATE(2214), - [sym_syn_quoting_lit] = STATE(2214), - [sym_unquote_splicing_lit] = STATE(2214), - [sym_unquoting_lit] = STATE(2214), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2214), - [sym_package_lit] = STATE(2214), - [sym_include_reader_macro] = STATE(2214), - [sym_complex_num_lit] = STATE(2214), - [aux_sym_dis_expr_repeat1] = STATE(981), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1182), - [sym_comment] = ACTIONS(1182), - [anon_sym_POUND_] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1222), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1224), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1222), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1196), - [anon_sym_POUND_CARET] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1204), - [anon_sym_RPAREN] = ACTIONS(1208), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(1132), + [sym_comment] = ACTIONS(1132), + [anon_sym_POUND_] = ACTIONS(1136), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1212), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1212), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1146), + [anon_sym_POUND_CARET] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_RPAREN] = ACTIONS(1158), + [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(1222), - [anon_sym_cl] = ACTIONS(1228), - [anon_sym_EQ] = ACTIONS(1232), - [aux_sym_accumulation_verb_token1] = ACTIONS(1217), - [anon_sym_for] = ACTIONS(1217), - [anon_sym_and] = ACTIONS(1217), - [anon_sym_as] = ACTIONS(1217), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_do] = ACTIONS(1217), - [anon_sym_while] = ACTIONS(1217), - [anon_sym_until] = ACTIONS(1217), - [anon_sym_repeat] = ACTIONS(1217), - [anon_sym_when] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1217), - [anon_sym_unless] = ACTIONS(1217), - [anon_sym_always] = ACTIONS(1217), - [anon_sym_thereis] = ACTIONS(1217), - [anon_sym_never] = ACTIONS(1217), - [anon_sym_else] = ACTIONS(1217), - [anon_sym_finally] = ACTIONS(1217), - [anon_sym_return] = ACTIONS(1217), - [anon_sym_initially] = ACTIONS(1217), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1234), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1212), + [anon_sym_cl] = ACTIONS(1218), + [anon_sym_EQ] = ACTIONS(1222), + [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(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1224), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [39] = { - [sym__gap] = STATE(981), - [sym_dis_expr] = STATE(981), - [sym__form] = STATE(2220), - [sym_num_lit] = STATE(2220), - [sym_kwd_lit] = STATE(2220), - [sym_str_lit] = STATE(2220), - [sym_char_lit] = STATE(2220), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2220), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2220), - [sym_set_lit] = STATE(2220), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2220), - [sym_splicing_read_cond_lit] = STATE(2220), - [sym_var_quoting_lit] = STATE(2220), - [sym_quoting_lit] = STATE(2220), - [sym_syn_quoting_lit] = STATE(2220), - [sym_unquote_splicing_lit] = STATE(2220), - [sym_unquoting_lit] = STATE(2220), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2220), - [sym_package_lit] = STATE(2220), - [sym_include_reader_macro] = STATE(2220), - [sym_complex_num_lit] = STATE(2220), - [aux_sym_dis_expr_repeat1] = STATE(981), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1236), - [sym_comment] = ACTIONS(1236), - [anon_sym_POUND_] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1244), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1246), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1244), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1250), - [anon_sym_POUND_CARET] = ACTIONS(1254), - [anon_sym_LPAREN] = ACTIONS(1258), - [anon_sym_RPAREN] = ACTIONS(1262), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(909), + [sym_comment] = ACTIONS(909), + [anon_sym_POUND_] = ACTIONS(913), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1226), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1228), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1226), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym_POUND_CARET] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(935), + [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(1244), - [anon_sym_cl] = ACTIONS(1265), - [anon_sym_EQ] = ACTIONS(1269), - [aux_sym_accumulation_verb_token1] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1271), - [anon_sym_and] = ACTIONS(1271), - [anon_sym_as] = ACTIONS(1271), - [anon_sym_with] = ACTIONS(1271), - [anon_sym_do] = ACTIONS(1271), - [anon_sym_while] = ACTIONS(1271), - [anon_sym_until] = ACTIONS(1271), - [anon_sym_repeat] = ACTIONS(1271), - [anon_sym_when] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1271), - [anon_sym_unless] = ACTIONS(1271), - [anon_sym_always] = ACTIONS(1271), - [anon_sym_thereis] = ACTIONS(1271), - [anon_sym_never] = ACTIONS(1271), - [anon_sym_else] = ACTIONS(1271), - [anon_sym_finally] = ACTIONS(1271), - [anon_sym_return] = ACTIONS(1271), - [anon_sym_initially] = ACTIONS(1271), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1274), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1226), + [anon_sym_cl] = ACTIONS(1232), + [anon_sym_EQ] = ACTIONS(1236), + [aux_sym_accumulation_verb_token1] = ACTIONS(944), + [anon_sym_for] = ACTIONS(944), + [anon_sym_and] = ACTIONS(944), + [anon_sym_as] = ACTIONS(944), + [anon_sym_with] = ACTIONS(944), + [anon_sym_do] = ACTIONS(944), + [anon_sym_while] = ACTIONS(944), + [anon_sym_until] = ACTIONS(944), + [anon_sym_repeat] = ACTIONS(944), + [anon_sym_when] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_unless] = ACTIONS(944), + [anon_sym_always] = ACTIONS(944), + [anon_sym_thereis] = ACTIONS(944), + [anon_sym_never] = ACTIONS(944), + [anon_sym_else] = ACTIONS(944), + [anon_sym_finally] = ACTIONS(944), + [anon_sym_return] = ACTIONS(944), + [anon_sym_initially] = ACTIONS(944), + [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__gap] = STATE(36), - [sym_dis_expr] = STATE(36), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2223), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2223), - [sym_set_lit] = STATE(2223), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(36), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1276), - [sym_comment] = ACTIONS(1276), - [anon_sym_POUND_] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1284), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1286), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1284), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1290), - [anon_sym_POUND_CARET] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(2067), + [sym_num_lit] = STATE(2067), + [sym_kwd_lit] = STATE(2067), + [sym_str_lit] = STATE(2067), + [sym_char_lit] = STATE(2067), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2067), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2067), + [sym_set_lit] = STATE(2067), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2067), + [sym_splicing_read_cond_lit] = STATE(2067), + [sym_var_quoting_lit] = STATE(2067), + [sym_quoting_lit] = STATE(2067), + [sym_syn_quoting_lit] = STATE(2067), + [sym_unquote_splicing_lit] = STATE(2067), + [sym_unquoting_lit] = STATE(2067), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2067), + [sym_package_lit] = STATE(2067), + [sym_include_reader_macro] = STATE(2067), + [sym_complex_num_lit] = STATE(2067), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2804), + [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(1284), - [anon_sym_cl] = ACTIONS(1305), - [anon_sym_EQ] = ACTIONS(1309), - [aux_sym_accumulation_verb_token1] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_and] = ACTIONS(1311), - [anon_sym_as] = ACTIONS(1311), - [anon_sym_with] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1311), - [anon_sym_repeat] = ACTIONS(1311), - [anon_sym_when] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_unless] = ACTIONS(1311), - [anon_sym_always] = ACTIONS(1311), - [anon_sym_thereis] = ACTIONS(1311), - [anon_sym_never] = ACTIONS(1311), - [anon_sym_else] = ACTIONS(1311), - [anon_sym_finally] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_initially] = ACTIONS(1311), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1314), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [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__gap] = STATE(692), - [sym_dis_expr] = STATE(692), - [sym__form] = STATE(983), - [sym_num_lit] = STATE(983), - [sym_kwd_lit] = STATE(983), - [sym_str_lit] = STATE(983), - [sym_char_lit] = STATE(983), - [sym_sym_lit] = STATE(1129), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(983), - [sym__bare_list_lit] = STATE(1135), - [sym_vec_lit] = STATE(983), - [sym_set_lit] = STATE(983), - [sym__bare_set_lit] = STATE(1150), - [sym_read_cond_lit] = STATE(983), - [sym_splicing_read_cond_lit] = STATE(983), - [sym_var_quoting_lit] = STATE(983), - [sym_quoting_lit] = STATE(983), - [sym_syn_quoting_lit] = STATE(983), - [sym_unquote_splicing_lit] = STATE(983), - [sym_unquoting_lit] = STATE(983), - [sym_defun] = STATE(1135), - [sym_loop_macro] = STATE(1135), - [sym_path_lit] = STATE(983), - [sym_package_lit] = STATE(983), - [sym_include_reader_macro] = STATE(983), - [sym_complex_num_lit] = STATE(983), - [aux_sym_dis_expr_repeat1] = STATE(692), - [aux_sym_list_lit_repeat1] = STATE(2796), - [aux_sym_do_clause_repeat1] = STATE(15), - [sym__ws] = ACTIONS(1316), - [sym_comment] = ACTIONS(1316), - [anon_sym_POUND_] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(827), - [aux_sym_num_lit_token1] = ACTIONS(829), - [anon_sym_COLON] = ACTIONS(1318), - [anon_sym_COLON_COLON] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym_nil_lit] = ACTIONS(827), - [aux_sym_sym_lit_token1] = ACTIONS(837), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_POUND_CARET] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_RPAREN] = ACTIONS(1316), - [anon_sym_POUND0A] = ACTIONS(839), - [anon_sym_POUND0a] = ACTIONS(839), - [anon_sym_POUND_QMARK] = ACTIONS(841), - [anon_sym_POUND_QMARK_AT] = ACTIONS(843), - [anon_sym_POUND_SQUOTE] = ACTIONS(845), - [anon_sym_SQUOTE] = ACTIONS(847), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_COMMA_AT] = ACTIONS(851), - [anon_sym_COMMA] = ACTIONS(853), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [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(827), - [anon_sym_cl] = ACTIONS(1318), - [aux_sym_accumulation_verb_token1] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_and] = ACTIONS(1318), - [anon_sym_as] = ACTIONS(1318), - [anon_sym_with] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_until] = ACTIONS(1318), - [anon_sym_repeat] = ACTIONS(1318), - [anon_sym_when] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_unless] = ACTIONS(1318), - [anon_sym_always] = ACTIONS(1318), - [anon_sym_thereis] = ACTIONS(1318), - [anon_sym_never] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_finally] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_initially] = ACTIONS(1318), - [anon_sym_POUNDP] = ACTIONS(855), - [anon_sym_POUNDp] = ACTIONS(855), - [sym_self_referential_reader_macro] = ACTIONS(857), - [anon_sym_POUND_PLUS] = ACTIONS(859), - [anon_sym_POUND_DASH] = ACTIONS(859), - [anon_sym_POUNDC] = ACTIONS(861), - [anon_sym_POUNDc] = ACTIONS(861), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2145), - [sym_num_lit] = STATE(2145), - [sym_kwd_lit] = STATE(2145), - [sym_str_lit] = STATE(2145), - [sym_char_lit] = STATE(2145), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2145), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2145), - [sym_set_lit] = STATE(2145), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2145), - [sym_splicing_read_cond_lit] = STATE(2145), - [sym_var_quoting_lit] = STATE(2145), - [sym_quoting_lit] = STATE(2145), - [sym_syn_quoting_lit] = STATE(2145), - [sym_unquote_splicing_lit] = STATE(2145), - [sym_unquoting_lit] = STATE(2145), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2145), - [sym_package_lit] = STATE(2145), - [sym_include_reader_macro] = STATE(2145), - [sym_complex_num_lit] = STATE(2145), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), + [sym__gap] = STATE(77), + [sym_dis_expr] = STATE(77), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(77), + [aux_sym_list_lit_repeat1] = STATE(2804), [sym__ws] = ACTIONS(1320), [sym_comment] = ACTIONS(1320), [anon_sym_POUND_] = ACTIONS(1323), - [anon_sym_POUND] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(67), [anon_sym_DOT] = ACTIONS(1326), - [aux_sym_num_lit_token1] = ACTIONS(227), + [aux_sym_num_lit_token1] = ACTIONS(71), [anon_sym_COLON] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), [sym_nil_lit] = ACTIONS(1326), - [aux_sym_sym_lit_token1] = ACTIONS(237), + [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(1326), [anon_sym_cl] = ACTIONS(1342), @@ -14130,70 +14150,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(1345), [anon_sym_return] = ACTIONS(1345), [anon_sym_initially] = ACTIONS(1345), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), [sym_self_referential_reader_macro] = ACTIONS(1347), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [43] = { - [sym__gap] = STATE(97), - [sym_dis_expr] = STATE(97), - [sym__form] = STATE(2204), - [sym_num_lit] = STATE(2204), - [sym_kwd_lit] = STATE(2204), - [sym_str_lit] = STATE(2204), - [sym_char_lit] = STATE(2204), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2204), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2204), - [sym_set_lit] = STATE(2204), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2204), - [sym_splicing_read_cond_lit] = STATE(2204), - [sym_var_quoting_lit] = STATE(2204), - [sym_quoting_lit] = STATE(2204), - [sym_syn_quoting_lit] = STATE(2204), - [sym_unquote_splicing_lit] = STATE(2204), - [sym_unquoting_lit] = STATE(2204), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2204), - [sym_package_lit] = STATE(2204), - [sym_include_reader_macro] = STATE(2204), - [sym_complex_num_lit] = STATE(2204), - [aux_sym_dis_expr_repeat1] = STATE(97), - [aux_sym_list_lit_repeat1] = STATE(2789), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2394), + [sym_num_lit] = STATE(2394), + [sym_kwd_lit] = STATE(2394), + [sym_str_lit] = STATE(2394), + [sym_char_lit] = STATE(2394), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2394), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2394), + [sym_set_lit] = STATE(2394), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2394), + [sym_splicing_read_cond_lit] = STATE(2394), + [sym_var_quoting_lit] = STATE(2394), + [sym_quoting_lit] = STATE(2394), + [sym_syn_quoting_lit] = STATE(2394), + [sym_unquote_splicing_lit] = STATE(2394), + [sym_unquoting_lit] = STATE(2394), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2394), + [sym_package_lit] = STATE(2394), + [sym_include_reader_macro] = STATE(2394), + [sym_complex_num_lit] = STATE(2394), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), [sym__ws] = ACTIONS(1349), [sym_comment] = ACTIONS(1349), [anon_sym_POUND_] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(67), [anon_sym_DOT] = ACTIONS(1355), - [aux_sym_num_lit_token1] = ACTIONS(227), + [aux_sym_num_lit_token1] = ACTIONS(71), [anon_sym_COLON] = ACTIONS(1357), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), [sym_nil_lit] = ACTIONS(1355), - [aux_sym_sym_lit_token1] = ACTIONS(237), + [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(1355), [anon_sym_cl] = ACTIONS(1371), @@ -14216,70 +14236,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(1374), [anon_sym_return] = ACTIONS(1374), [anon_sym_initially] = ACTIONS(1374), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), [sym_self_referential_reader_macro] = ACTIONS(1376), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [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(86), - [sym_dis_expr] = STATE(86), - [sym__form] = STATE(2344), - [sym_num_lit] = STATE(2344), - [sym_kwd_lit] = STATE(2344), - [sym_str_lit] = STATE(2344), - [sym_char_lit] = STATE(2344), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2344), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2344), - [sym_set_lit] = STATE(2344), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2344), - [sym_splicing_read_cond_lit] = STATE(2344), - [sym_var_quoting_lit] = STATE(2344), - [sym_quoting_lit] = STATE(2344), - [sym_syn_quoting_lit] = STATE(2344), - [sym_unquote_splicing_lit] = STATE(2344), - [sym_unquoting_lit] = STATE(2344), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2344), - [sym_package_lit] = STATE(2344), - [sym_include_reader_macro] = STATE(2344), - [sym_complex_num_lit] = STATE(2344), - [aux_sym_dis_expr_repeat1] = STATE(86), - [aux_sym_list_lit_repeat1] = STATE(2789), + [sym__gap] = STATE(84), + [sym_dis_expr] = STATE(84), + [sym__form] = STATE(2331), + [sym_num_lit] = STATE(2331), + [sym_kwd_lit] = STATE(2331), + [sym_str_lit] = STATE(2331), + [sym_char_lit] = STATE(2331), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2331), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2331), + [sym_set_lit] = STATE(2331), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2331), + [sym_splicing_read_cond_lit] = STATE(2331), + [sym_var_quoting_lit] = STATE(2331), + [sym_quoting_lit] = STATE(2331), + [sym_syn_quoting_lit] = STATE(2331), + [sym_unquote_splicing_lit] = STATE(2331), + [sym_unquoting_lit] = STATE(2331), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2331), + [sym_package_lit] = STATE(2331), + [sym_include_reader_macro] = STATE(2331), + [sym_complex_num_lit] = STATE(2331), + [aux_sym_dis_expr_repeat1] = STATE(84), + [aux_sym_list_lit_repeat1] = STATE(2804), [sym__ws] = ACTIONS(1378), [sym_comment] = ACTIONS(1378), [anon_sym_POUND_] = ACTIONS(1381), - [anon_sym_POUND] = ACTIONS(223), + [anon_sym_POUND] = ACTIONS(67), [anon_sym_DOT] = ACTIONS(1384), - [aux_sym_num_lit_token1] = ACTIONS(227), + [aux_sym_num_lit_token1] = ACTIONS(71), [anon_sym_COLON] = ACTIONS(1386), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), [sym_nil_lit] = ACTIONS(1384), - [aux_sym_sym_lit_token1] = ACTIONS(237), + [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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), @@ -14302,244 +14322,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(1403), [anon_sym_return] = ACTIONS(1403), [anon_sym_initially] = ACTIONS(1403), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), [sym_self_referential_reader_macro] = ACTIONS(1405), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2454), - [sym_num_lit] = STATE(2454), - [sym_kwd_lit] = STATE(2454), - [sym_str_lit] = STATE(2454), - [sym_char_lit] = STATE(2454), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2454), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2454), - [sym_set_lit] = STATE(2454), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2454), - [sym_splicing_read_cond_lit] = STATE(2454), - [sym_var_quoting_lit] = STATE(2454), - [sym_quoting_lit] = STATE(2454), - [sym_syn_quoting_lit] = STATE(2454), - [sym_unquote_splicing_lit] = STATE(2454), - [sym_unquoting_lit] = STATE(2454), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2454), - [sym_package_lit] = STATE(2454), - [sym_include_reader_macro] = STATE(2454), - [sym_complex_num_lit] = STATE(2454), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2329), + [sym_num_lit] = STATE(2329), + [sym_kwd_lit] = STATE(2329), + [sym_str_lit] = STATE(2329), + [sym_char_lit] = STATE(2329), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2329), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2329), + [sym_set_lit] = STATE(2329), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2329), + [sym_splicing_read_cond_lit] = STATE(2329), + [sym_var_quoting_lit] = STATE(2329), + [sym_quoting_lit] = STATE(2329), + [sym_syn_quoting_lit] = STATE(2329), + [sym_unquote_splicing_lit] = STATE(2329), + [sym_unquoting_lit] = STATE(2329), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2329), + [sym_package_lit] = STATE(2329), + [sym_include_reader_macro] = STATE(2329), + [sym_complex_num_lit] = STATE(2329), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), [sym__ws] = ACTIONS(1407), [sym_comment] = ACTIONS(1407), - [anon_sym_POUND_] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1413), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1415), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1413), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [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(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1434), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [46] = { - [sym__gap] = STATE(158), - [sym_dis_expr] = STATE(158), - [sym__form] = STATE(2458), - [sym_num_lit] = STATE(2458), - [sym_kwd_lit] = STATE(2458), - [sym_str_lit] = STATE(2458), - [sym_char_lit] = STATE(2458), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2458), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2458), - [sym_set_lit] = STATE(2458), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2458), - [sym_splicing_read_cond_lit] = STATE(2458), - [sym_var_quoting_lit] = STATE(2458), - [sym_quoting_lit] = STATE(2458), - [sym_syn_quoting_lit] = STATE(2458), - [sym_unquote_splicing_lit] = STATE(2458), - [sym_unquoting_lit] = STATE(2458), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2458), - [sym_package_lit] = STATE(2458), - [sym_include_reader_macro] = STATE(2458), - [sym_complex_num_lit] = STATE(2458), - [aux_sym_dis_expr_repeat1] = STATE(158), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1436), - [sym_comment] = ACTIONS(1436), - [anon_sym_POUND_] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1439), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1415), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1439), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1439), - [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(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1441), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [47] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2342), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2342), - [sym_set_lit] = STATE(2342), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1443), - [sym_comment] = ACTIONS(1443), [anon_sym_POUND_] = ACTIONS(1381), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1446), - [aux_sym_num_lit_token1] = ACTIONS(227), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1410), + [aux_sym_num_lit_token1] = ACTIONS(71), [anon_sym_COLON] = ACTIONS(1386), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1446), - [aux_sym_sym_lit_token1] = ACTIONS(237), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1410), + [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(1446), + [sym_fancy_literal] = ACTIONS(1410), [anon_sym_cl] = ACTIONS(1400), [aux_sym_accumulation_verb_token1] = ACTIONS(1403), [anon_sym_for] = ACTIONS(1403), @@ -14560,5232 +14408,5404 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(1403), [anon_sym_return] = ACTIONS(1403), [anon_sym_initially] = ACTIONS(1403), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1448), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1412), + [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(167), + [sym_dis_expr] = STATE(167), + [sym__form] = STATE(2340), + [sym_num_lit] = STATE(2340), + [sym_kwd_lit] = STATE(2340), + [sym_str_lit] = STATE(2340), + [sym_char_lit] = STATE(2340), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2340), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2340), + [sym_set_lit] = STATE(2340), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2340), + [sym_splicing_read_cond_lit] = STATE(2340), + [sym_var_quoting_lit] = STATE(2340), + [sym_quoting_lit] = STATE(2340), + [sym_syn_quoting_lit] = STATE(2340), + [sym_unquote_splicing_lit] = STATE(2340), + [sym_unquoting_lit] = STATE(2340), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2340), + [sym_package_lit] = STATE(2340), + [sym_include_reader_macro] = STATE(2340), + [sym_complex_num_lit] = STATE(2340), + [aux_sym_dis_expr_repeat1] = STATE(167), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1414), + [sym_comment] = ACTIONS(1414), + [anon_sym_POUND_] = ACTIONS(1417), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1420), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1422), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1420), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym_POUND_CARET] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1434), + [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(1420), + [anon_sym_cl] = ACTIONS(1436), + [aux_sym_accumulation_verb_token1] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_and] = ACTIONS(1439), + [anon_sym_as] = ACTIONS(1439), + [anon_sym_with] = ACTIONS(1439), + [anon_sym_do] = ACTIONS(1439), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_until] = ACTIONS(1439), + [anon_sym_repeat] = ACTIONS(1439), + [anon_sym_when] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_unless] = ACTIONS(1439), + [anon_sym_always] = ACTIONS(1439), + [anon_sym_thereis] = ACTIONS(1439), + [anon_sym_never] = ACTIONS(1439), + [anon_sym_else] = ACTIONS(1439), + [anon_sym_finally] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1439), + [anon_sym_initially] = ACTIONS(1439), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1441), + [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(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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(1443), + [sym_comment] = ACTIONS(1443), + [anon_sym_POUND_] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1449), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1451), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1449), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym_POUND_CARET] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1460), + [anon_sym_RPAREN] = ACTIONS(1463), + [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(1449), + [anon_sym_cl] = ACTIONS(1465), + [aux_sym_accumulation_verb_token1] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_and] = ACTIONS(1468), + [anon_sym_as] = ACTIONS(1468), + [anon_sym_with] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_until] = ACTIONS(1468), + [anon_sym_repeat] = ACTIONS(1468), + [anon_sym_when] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_unless] = ACTIONS(1468), + [anon_sym_always] = ACTIONS(1468), + [anon_sym_thereis] = ACTIONS(1468), + [anon_sym_never] = ACTIONS(1468), + [anon_sym_else] = ACTIONS(1468), + [anon_sym_finally] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_initially] = ACTIONS(1468), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1470), + [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(154), - [sym_dis_expr] = STATE(154), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2460), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2460), - [sym_set_lit] = STATE(2460), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(154), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1450), - [sym_comment] = ACTIONS(1450), - [anon_sym_POUND_] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1453), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1415), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1453), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2336), + [sym_num_lit] = STATE(2336), + [sym_kwd_lit] = STATE(2336), + [sym_str_lit] = STATE(2336), + [sym_char_lit] = STATE(2336), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2336), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2336), + [sym_set_lit] = STATE(2336), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2336), + [sym_splicing_read_cond_lit] = STATE(2336), + [sym_var_quoting_lit] = STATE(2336), + [sym_quoting_lit] = STATE(2336), + [sym_syn_quoting_lit] = STATE(2336), + [sym_unquote_splicing_lit] = STATE(2336), + [sym_unquoting_lit] = STATE(2336), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2336), + [sym_package_lit] = STATE(2336), + [sym_include_reader_macro] = STATE(2336), + [sym_complex_num_lit] = STATE(2336), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1472), + [sym_comment] = ACTIONS(1472), + [anon_sym_POUND_] = ACTIONS(1417), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1475), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1422), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1475), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym_POUND_CARET] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1434), + [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(1453), - [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(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1455), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1475), + [anon_sym_cl] = ACTIONS(1436), + [aux_sym_accumulation_verb_token1] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_and] = ACTIONS(1439), + [anon_sym_as] = ACTIONS(1439), + [anon_sym_with] = ACTIONS(1439), + [anon_sym_do] = ACTIONS(1439), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_until] = ACTIONS(1439), + [anon_sym_repeat] = ACTIONS(1439), + [anon_sym_when] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_unless] = ACTIONS(1439), + [anon_sym_always] = ACTIONS(1439), + [anon_sym_thereis] = ACTIONS(1439), + [anon_sym_never] = ACTIONS(1439), + [anon_sym_else] = ACTIONS(1439), + [anon_sym_finally] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1439), + [anon_sym_initially] = ACTIONS(1439), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1477), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2466), - [sym_num_lit] = STATE(2466), - [sym_kwd_lit] = STATE(2466), - [sym_str_lit] = STATE(2466), - [sym_char_lit] = STATE(2466), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2466), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2466), - [sym_set_lit] = STATE(2466), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2466), - [sym_splicing_read_cond_lit] = STATE(2466), - [sym_var_quoting_lit] = STATE(2466), - [sym_quoting_lit] = STATE(2466), - [sym_syn_quoting_lit] = STATE(2466), - [sym_unquote_splicing_lit] = STATE(2466), - [sym_unquoting_lit] = STATE(2466), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2466), - [sym_package_lit] = STATE(2466), - [sym_include_reader_macro] = STATE(2466), - [sym_complex_num_lit] = STATE(2466), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1407), - [sym_comment] = ACTIONS(1407), - [anon_sym_POUND_] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1457), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1415), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1457), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1479), + [sym_comment] = ACTIONS(1479), + [anon_sym_POUND_] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1485), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1487), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1485), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym_POUND_CARET] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1499), + [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(1457), - [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(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1459), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1485), + [anon_sym_cl] = ACTIONS(1501), + [aux_sym_accumulation_verb_token1] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_and] = ACTIONS(1504), + [anon_sym_as] = ACTIONS(1504), + [anon_sym_with] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_until] = ACTIONS(1504), + [anon_sym_repeat] = ACTIONS(1504), + [anon_sym_when] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_unless] = ACTIONS(1504), + [anon_sym_always] = ACTIONS(1504), + [anon_sym_thereis] = ACTIONS(1504), + [anon_sym_never] = ACTIONS(1504), + [anon_sym_else] = ACTIONS(1504), + [anon_sym_finally] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_initially] = ACTIONS(1504), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1506), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2468), - [sym_num_lit] = STATE(2468), - [sym_kwd_lit] = STATE(2468), - [sym_str_lit] = STATE(2468), - [sym_char_lit] = STATE(2468), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2468), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2468), - [sym_set_lit] = STATE(2468), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2468), - [sym_splicing_read_cond_lit] = STATE(2468), - [sym_var_quoting_lit] = STATE(2468), - [sym_quoting_lit] = STATE(2468), - [sym_syn_quoting_lit] = STATE(2468), - [sym_unquote_splicing_lit] = STATE(2468), - [sym_unquoting_lit] = STATE(2468), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2468), - [sym_package_lit] = STATE(2468), - [sym_include_reader_macro] = STATE(2468), - [sym_complex_num_lit] = STATE(2468), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1461), - [sym_comment] = ACTIONS(1461), - [anon_sym_POUND_] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1467), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1469), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1467), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1472), - [anon_sym_POUND_CARET] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(1481), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(171), + [sym_dis_expr] = STATE(171), + [sym__form] = STATE(2277), + [sym_num_lit] = STATE(2277), + [sym_kwd_lit] = STATE(2277), + [sym_str_lit] = STATE(2277), + [sym_char_lit] = STATE(2277), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2277), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2277), + [sym_set_lit] = STATE(2277), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2277), + [sym_splicing_read_cond_lit] = STATE(2277), + [sym_var_quoting_lit] = STATE(2277), + [sym_quoting_lit] = STATE(2277), + [sym_syn_quoting_lit] = STATE(2277), + [sym_unquote_splicing_lit] = STATE(2277), + [sym_unquoting_lit] = STATE(2277), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2277), + [sym_package_lit] = STATE(2277), + [sym_include_reader_macro] = STATE(2277), + [sym_complex_num_lit] = STATE(2277), + [aux_sym_dis_expr_repeat1] = STATE(171), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1508), + [sym_comment] = ACTIONS(1508), + [anon_sym_POUND_] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1511), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1487), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1511), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym_POUND_CARET] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1499), + [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(1467), - [anon_sym_cl] = ACTIONS(1483), - [aux_sym_accumulation_verb_token1] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_as] = ACTIONS(1486), - [anon_sym_with] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_until] = ACTIONS(1486), - [anon_sym_repeat] = ACTIONS(1486), - [anon_sym_when] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_unless] = ACTIONS(1486), - [anon_sym_always] = ACTIONS(1486), - [anon_sym_thereis] = ACTIONS(1486), - [anon_sym_never] = ACTIONS(1486), - [anon_sym_else] = ACTIONS(1486), - [anon_sym_finally] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_initially] = ACTIONS(1486), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1488), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1511), + [anon_sym_cl] = ACTIONS(1501), + [aux_sym_accumulation_verb_token1] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_and] = ACTIONS(1504), + [anon_sym_as] = ACTIONS(1504), + [anon_sym_with] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_until] = ACTIONS(1504), + [anon_sym_repeat] = ACTIONS(1504), + [anon_sym_when] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_unless] = ACTIONS(1504), + [anon_sym_always] = ACTIONS(1504), + [anon_sym_thereis] = ACTIONS(1504), + [anon_sym_never] = ACTIONS(1504), + [anon_sym_else] = ACTIONS(1504), + [anon_sym_finally] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_initially] = ACTIONS(1504), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1513), + [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(42), - [sym_dis_expr] = STATE(42), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2071), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2071), - [sym_set_lit] = STATE(2071), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(42), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1490), - [sym_comment] = ACTIONS(1490), - [anon_sym_POUND_] = ACTIONS(1493), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1496), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1498), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1496), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_POUND_CARET] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(172), + [sym_dis_expr] = STATE(172), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(172), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1515), + [sym_comment] = ACTIONS(1515), + [anon_sym_POUND_] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1521), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1523), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1521), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1526), + [anon_sym_POUND_CARET] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1535), + [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(1496), - [anon_sym_cl] = ACTIONS(1512), - [aux_sym_accumulation_verb_token1] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_and] = ACTIONS(1515), - [anon_sym_as] = ACTIONS(1515), - [anon_sym_with] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_until] = ACTIONS(1515), - [anon_sym_repeat] = ACTIONS(1515), - [anon_sym_when] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_unless] = ACTIONS(1515), - [anon_sym_always] = ACTIONS(1515), - [anon_sym_thereis] = ACTIONS(1515), - [anon_sym_never] = ACTIONS(1515), - [anon_sym_else] = ACTIONS(1515), - [anon_sym_finally] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_initially] = ACTIONS(1515), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1517), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1521), + [anon_sym_cl] = ACTIONS(1537), + [aux_sym_accumulation_verb_token1] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_as] = ACTIONS(1540), + [anon_sym_with] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_until] = ACTIONS(1540), + [anon_sym_repeat] = ACTIONS(1540), + [anon_sym_when] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_unless] = ACTIONS(1540), + [anon_sym_always] = ACTIONS(1540), + [anon_sym_thereis] = ACTIONS(1540), + [anon_sym_never] = ACTIONS(1540), + [anon_sym_else] = ACTIONS(1540), + [anon_sym_finally] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_initially] = ACTIONS(1540), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1542), + [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(131), - [sym_dis_expr] = STATE(131), - [sym__form] = STATE(2472), - [sym_num_lit] = STATE(2472), - [sym_kwd_lit] = STATE(2472), - [sym_str_lit] = STATE(2472), - [sym_char_lit] = STATE(2472), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2472), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2472), - [sym_set_lit] = STATE(2472), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2472), - [sym_splicing_read_cond_lit] = STATE(2472), - [sym_var_quoting_lit] = STATE(2472), - [sym_quoting_lit] = STATE(2472), - [sym_syn_quoting_lit] = STATE(2472), - [sym_unquote_splicing_lit] = STATE(2472), - [sym_unquoting_lit] = STATE(2472), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2472), - [sym_package_lit] = STATE(2472), - [sym_include_reader_macro] = STATE(2472), - [sym_complex_num_lit] = STATE(2472), - [aux_sym_dis_expr_repeat1] = STATE(131), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1519), - [sym_comment] = ACTIONS(1519), - [anon_sym_POUND_] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1525), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1527), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1525), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1530), - [anon_sym_POUND_CARET] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_RPAREN] = ACTIONS(1539), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(79), + [sym_dis_expr] = STATE(79), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(79), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1544), + [sym_comment] = ACTIONS(1544), + [anon_sym_POUND_] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1550), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1550), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_POUND_CARET] = ACTIONS(1558), + [anon_sym_LPAREN] = ACTIONS(1561), + [anon_sym_RPAREN] = ACTIONS(1564), + [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(1525), - [anon_sym_cl] = ACTIONS(1541), - [aux_sym_accumulation_verb_token1] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_as] = ACTIONS(1544), - [anon_sym_with] = ACTIONS(1544), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_until] = ACTIONS(1544), - [anon_sym_repeat] = ACTIONS(1544), - [anon_sym_when] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_unless] = ACTIONS(1544), - [anon_sym_always] = ACTIONS(1544), - [anon_sym_thereis] = ACTIONS(1544), - [anon_sym_never] = ACTIONS(1544), - [anon_sym_else] = ACTIONS(1544), - [anon_sym_finally] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_initially] = ACTIONS(1544), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1546), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1550), + [anon_sym_cl] = ACTIONS(1566), + [aux_sym_accumulation_verb_token1] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_and] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_with] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_until] = ACTIONS(1569), + [anon_sym_repeat] = ACTIONS(1569), + [anon_sym_when] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_unless] = ACTIONS(1569), + [anon_sym_always] = ACTIONS(1569), + [anon_sym_thereis] = ACTIONS(1569), + [anon_sym_never] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_finally] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_initially] = ACTIONS(1569), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2473), - [sym_num_lit] = STATE(2473), - [sym_kwd_lit] = STATE(2473), - [sym_str_lit] = STATE(2473), - [sym_char_lit] = STATE(2473), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2473), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2473), - [sym_set_lit] = STATE(2473), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2473), - [sym_splicing_read_cond_lit] = STATE(2473), - [sym_var_quoting_lit] = STATE(2473), - [sym_quoting_lit] = STATE(2473), - [sym_syn_quoting_lit] = STATE(2473), - [sym_unquote_splicing_lit] = STATE(2473), - [sym_unquoting_lit] = STATE(2473), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2473), - [sym_package_lit] = STATE(2473), - [sym_include_reader_macro] = STATE(2473), - [sym_complex_num_lit] = STATE(2473), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1548), - [sym_comment] = ACTIONS(1548), - [anon_sym_POUND_] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1551), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1527), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1551), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1530), - [anon_sym_POUND_CARET] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_RPAREN] = ACTIONS(1539), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2314), + [sym_num_lit] = STATE(2314), + [sym_kwd_lit] = STATE(2314), + [sym_str_lit] = STATE(2314), + [sym_char_lit] = STATE(2314), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2314), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2314), + [sym_set_lit] = STATE(2314), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2314), + [sym_splicing_read_cond_lit] = STATE(2314), + [sym_var_quoting_lit] = STATE(2314), + [sym_quoting_lit] = STATE(2314), + [sym_syn_quoting_lit] = STATE(2314), + [sym_unquote_splicing_lit] = STATE(2314), + [sym_unquoting_lit] = STATE(2314), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2314), + [sym_package_lit] = STATE(2314), + [sym_include_reader_macro] = STATE(2314), + [sym_complex_num_lit] = STATE(2314), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1573), + [sym_comment] = ACTIONS(1573), + [anon_sym_POUND_] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1576), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1552), + [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(1555), + [anon_sym_POUND_CARET] = ACTIONS(1558), + [anon_sym_LPAREN] = ACTIONS(1561), + [anon_sym_RPAREN] = ACTIONS(1564), + [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(1551), - [anon_sym_cl] = ACTIONS(1541), - [aux_sym_accumulation_verb_token1] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_as] = ACTIONS(1544), - [anon_sym_with] = ACTIONS(1544), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_until] = ACTIONS(1544), - [anon_sym_repeat] = ACTIONS(1544), - [anon_sym_when] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_unless] = ACTIONS(1544), - [anon_sym_always] = ACTIONS(1544), - [anon_sym_thereis] = ACTIONS(1544), - [anon_sym_never] = ACTIONS(1544), - [anon_sym_else] = ACTIONS(1544), - [anon_sym_finally] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_initially] = ACTIONS(1544), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1553), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1576), + [anon_sym_cl] = ACTIONS(1566), + [aux_sym_accumulation_verb_token1] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_and] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_with] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_until] = ACTIONS(1569), + [anon_sym_repeat] = ACTIONS(1569), + [anon_sym_when] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_unless] = ACTIONS(1569), + [anon_sym_always] = ACTIONS(1569), + [anon_sym_thereis] = ACTIONS(1569), + [anon_sym_never] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_finally] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_initially] = ACTIONS(1569), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2475), - [sym_num_lit] = STATE(2475), - [sym_kwd_lit] = STATE(2475), - [sym_str_lit] = STATE(2475), - [sym_char_lit] = STATE(2475), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2475), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2475), - [sym_set_lit] = STATE(2475), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2475), - [sym_splicing_read_cond_lit] = STATE(2475), - [sym_var_quoting_lit] = STATE(2475), - [sym_quoting_lit] = STATE(2475), - [sym_syn_quoting_lit] = STATE(2475), - [sym_unquote_splicing_lit] = STATE(2475), - [sym_unquoting_lit] = STATE(2475), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2475), - [sym_package_lit] = STATE(2475), - [sym_include_reader_macro] = STATE(2475), - [sym_complex_num_lit] = STATE(2475), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1548), - [sym_comment] = ACTIONS(1548), - [anon_sym_POUND_] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1555), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1527), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1555), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1530), - [anon_sym_POUND_CARET] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_RPAREN] = ACTIONS(1539), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1580), + [sym_comment] = ACTIONS(1580), + [anon_sym_POUND_] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1583), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1523), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1583), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1526), + [anon_sym_POUND_CARET] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1535), + [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(1541), - [aux_sym_accumulation_verb_token1] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_as] = ACTIONS(1544), - [anon_sym_with] = ACTIONS(1544), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_until] = ACTIONS(1544), - [anon_sym_repeat] = ACTIONS(1544), - [anon_sym_when] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_unless] = ACTIONS(1544), - [anon_sym_always] = ACTIONS(1544), - [anon_sym_thereis] = ACTIONS(1544), - [anon_sym_never] = ACTIONS(1544), - [anon_sym_else] = ACTIONS(1544), - [anon_sym_finally] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_initially] = ACTIONS(1544), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1557), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1583), + [anon_sym_cl] = ACTIONS(1537), + [aux_sym_accumulation_verb_token1] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_as] = ACTIONS(1540), + [anon_sym_with] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_until] = ACTIONS(1540), + [anon_sym_repeat] = ACTIONS(1540), + [anon_sym_when] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_unless] = ACTIONS(1540), + [anon_sym_always] = ACTIONS(1540), + [anon_sym_thereis] = ACTIONS(1540), + [anon_sym_never] = ACTIONS(1540), + [anon_sym_else] = ACTIONS(1540), + [anon_sym_finally] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_initially] = ACTIONS(1540), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1585), + [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(129), - [sym_dis_expr] = STATE(129), - [sym__form] = STATE(2481), - [sym_num_lit] = STATE(2481), - [sym_kwd_lit] = STATE(2481), - [sym_str_lit] = STATE(2481), - [sym_char_lit] = STATE(2481), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2481), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2481), - [sym_set_lit] = STATE(2481), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2481), - [sym_splicing_read_cond_lit] = STATE(2481), - [sym_var_quoting_lit] = STATE(2481), - [sym_quoting_lit] = STATE(2481), - [sym_syn_quoting_lit] = STATE(2481), - [sym_unquote_splicing_lit] = STATE(2481), - [sym_unquoting_lit] = STATE(2481), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2481), - [sym_package_lit] = STATE(2481), - [sym_include_reader_macro] = STATE(2481), - [sym_complex_num_lit] = STATE(2481), - [aux_sym_dis_expr_repeat1] = STATE(129), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1559), - [sym_comment] = ACTIONS(1559), - [anon_sym_POUND_] = ACTIONS(1562), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1565), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1567), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1565), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1570), - [anon_sym_POUND_CARET] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_RPAREN] = ACTIONS(1579), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2202), + [sym_num_lit] = STATE(2202), + [sym_kwd_lit] = STATE(2202), + [sym_str_lit] = STATE(2202), + [sym_char_lit] = STATE(2202), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2202), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2202), + [sym_set_lit] = STATE(2202), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2202), + [sym_splicing_read_cond_lit] = STATE(2202), + [sym_var_quoting_lit] = STATE(2202), + [sym_quoting_lit] = STATE(2202), + [sym_syn_quoting_lit] = STATE(2202), + [sym_unquote_splicing_lit] = STATE(2202), + [sym_unquoting_lit] = STATE(2202), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2202), + [sym_package_lit] = STATE(2202), + [sym_include_reader_macro] = STATE(2202), + [sym_complex_num_lit] = STATE(2202), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1573), + [sym_comment] = ACTIONS(1573), + [anon_sym_POUND_] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1587), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1587), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_POUND_CARET] = ACTIONS(1558), + [anon_sym_LPAREN] = ACTIONS(1561), + [anon_sym_RPAREN] = ACTIONS(1564), + [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(1565), - [anon_sym_cl] = ACTIONS(1581), - [aux_sym_accumulation_verb_token1] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_and] = ACTIONS(1584), - [anon_sym_as] = ACTIONS(1584), - [anon_sym_with] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_until] = ACTIONS(1584), - [anon_sym_repeat] = ACTIONS(1584), - [anon_sym_when] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_unless] = ACTIONS(1584), - [anon_sym_always] = ACTIONS(1584), - [anon_sym_thereis] = ACTIONS(1584), - [anon_sym_never] = ACTIONS(1584), - [anon_sym_else] = ACTIONS(1584), - [anon_sym_finally] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_initially] = ACTIONS(1584), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1586), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1587), + [anon_sym_cl] = ACTIONS(1566), + [aux_sym_accumulation_verb_token1] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_and] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_with] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_until] = ACTIONS(1569), + [anon_sym_repeat] = ACTIONS(1569), + [anon_sym_when] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_unless] = ACTIONS(1569), + [anon_sym_always] = ACTIONS(1569), + [anon_sym_thereis] = ACTIONS(1569), + [anon_sym_never] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_finally] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_initially] = ACTIONS(1569), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1589), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2482), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2482), - [sym_set_lit] = STATE(2482), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1588), - [sym_comment] = ACTIONS(1588), - [anon_sym_POUND_] = ACTIONS(1562), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1591), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1567), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1591), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1570), - [anon_sym_POUND_CARET] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_RPAREN] = ACTIONS(1579), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(176), + [sym_dis_expr] = STATE(176), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(176), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1591), + [sym_comment] = ACTIONS(1591), + [anon_sym_POUND_] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1594), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1523), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1594), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1526), + [anon_sym_POUND_CARET] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1535), + [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(1591), - [anon_sym_cl] = ACTIONS(1581), - [aux_sym_accumulation_verb_token1] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_and] = ACTIONS(1584), - [anon_sym_as] = ACTIONS(1584), - [anon_sym_with] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_until] = ACTIONS(1584), - [anon_sym_repeat] = ACTIONS(1584), - [anon_sym_when] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_unless] = ACTIONS(1584), - [anon_sym_always] = ACTIONS(1584), - [anon_sym_thereis] = ACTIONS(1584), - [anon_sym_never] = ACTIONS(1584), - [anon_sym_else] = ACTIONS(1584), - [anon_sym_finally] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_initially] = ACTIONS(1584), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1593), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1594), + [anon_sym_cl] = ACTIONS(1537), + [aux_sym_accumulation_verb_token1] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_as] = ACTIONS(1540), + [anon_sym_with] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_until] = ACTIONS(1540), + [anon_sym_repeat] = ACTIONS(1540), + [anon_sym_when] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_unless] = ACTIONS(1540), + [anon_sym_always] = ACTIONS(1540), + [anon_sym_thereis] = ACTIONS(1540), + [anon_sym_never] = ACTIONS(1540), + [anon_sym_else] = ACTIONS(1540), + [anon_sym_finally] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_initially] = ACTIONS(1540), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1596), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [57] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2484), - [sym_num_lit] = STATE(2484), - [sym_kwd_lit] = STATE(2484), - [sym_str_lit] = STATE(2484), - [sym_char_lit] = STATE(2484), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2484), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2484), - [sym_set_lit] = STATE(2484), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2484), - [sym_splicing_read_cond_lit] = STATE(2484), - [sym_var_quoting_lit] = STATE(2484), - [sym_quoting_lit] = STATE(2484), - [sym_syn_quoting_lit] = STATE(2484), - [sym_unquote_splicing_lit] = STATE(2484), - [sym_unquoting_lit] = STATE(2484), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2484), - [sym_package_lit] = STATE(2484), - [sym_include_reader_macro] = STATE(2484), - [sym_complex_num_lit] = STATE(2484), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1588), - [sym_comment] = ACTIONS(1588), - [anon_sym_POUND_] = ACTIONS(1562), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1595), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1567), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1595), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1570), - [anon_sym_POUND_CARET] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_RPAREN] = ACTIONS(1579), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1598), + [sym_comment] = ACTIONS(1598), + [anon_sym_POUND_] = ACTIONS(1601), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1604), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1606), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1604), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1609), + [anon_sym_POUND_CARET] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_RPAREN] = ACTIONS(1618), + [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(1595), - [anon_sym_cl] = ACTIONS(1581), - [aux_sym_accumulation_verb_token1] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_and] = ACTIONS(1584), - [anon_sym_as] = ACTIONS(1584), - [anon_sym_with] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_until] = ACTIONS(1584), - [anon_sym_repeat] = ACTIONS(1584), - [anon_sym_when] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_unless] = ACTIONS(1584), - [anon_sym_always] = ACTIONS(1584), - [anon_sym_thereis] = ACTIONS(1584), - [anon_sym_never] = ACTIONS(1584), - [anon_sym_else] = ACTIONS(1584), - [anon_sym_finally] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_initially] = ACTIONS(1584), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1597), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1604), + [anon_sym_cl] = ACTIONS(1620), + [aux_sym_accumulation_verb_token1] = ACTIONS(1623), + [anon_sym_for] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_as] = ACTIONS(1623), + [anon_sym_with] = ACTIONS(1623), + [anon_sym_do] = ACTIONS(1623), + [anon_sym_while] = ACTIONS(1623), + [anon_sym_until] = ACTIONS(1623), + [anon_sym_repeat] = ACTIONS(1623), + [anon_sym_when] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1623), + [anon_sym_unless] = ACTIONS(1623), + [anon_sym_always] = ACTIONS(1623), + [anon_sym_thereis] = ACTIONS(1623), + [anon_sym_never] = ACTIONS(1623), + [anon_sym_else] = ACTIONS(1623), + [anon_sym_finally] = ACTIONS(1623), + [anon_sym_return] = ACTIONS(1623), + [anon_sym_initially] = ACTIONS(1623), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1625), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2492), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2492), - [sym_set_lit] = STATE(2492), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1599), - [sym_comment] = ACTIONS(1599), - [anon_sym_POUND_] = ACTIONS(1602), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1605), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1607), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1605), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1610), - [anon_sym_POUND_CARET] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_RPAREN] = ACTIONS(1619), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(72), + [sym_dis_expr] = STATE(72), + [sym__form] = STATE(2060), + [sym_num_lit] = STATE(2060), + [sym_kwd_lit] = STATE(2060), + [sym_str_lit] = STATE(2060), + [sym_char_lit] = STATE(2060), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2060), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2060), + [sym_set_lit] = STATE(2060), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2060), + [sym_splicing_read_cond_lit] = STATE(2060), + [sym_var_quoting_lit] = STATE(2060), + [sym_quoting_lit] = STATE(2060), + [sym_syn_quoting_lit] = STATE(2060), + [sym_unquote_splicing_lit] = STATE(2060), + [sym_unquoting_lit] = STATE(2060), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2060), + [sym_package_lit] = STATE(2060), + [sym_include_reader_macro] = STATE(2060), + [sym_complex_num_lit] = STATE(2060), + [aux_sym_dis_expr_repeat1] = STATE(72), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1627), + [sym_comment] = ACTIONS(1627), + [anon_sym_POUND_] = ACTIONS(1630), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1633), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1635), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1633), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_POUND_CARET] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1647), + [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(1605), - [anon_sym_cl] = ACTIONS(1621), - [aux_sym_accumulation_verb_token1] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1624), - [anon_sym_and] = ACTIONS(1624), - [anon_sym_as] = ACTIONS(1624), - [anon_sym_with] = ACTIONS(1624), - [anon_sym_do] = ACTIONS(1624), - [anon_sym_while] = ACTIONS(1624), - [anon_sym_until] = ACTIONS(1624), - [anon_sym_repeat] = ACTIONS(1624), - [anon_sym_when] = ACTIONS(1624), - [anon_sym_if] = ACTIONS(1624), - [anon_sym_unless] = ACTIONS(1624), - [anon_sym_always] = ACTIONS(1624), - [anon_sym_thereis] = ACTIONS(1624), - [anon_sym_never] = ACTIONS(1624), - [anon_sym_else] = ACTIONS(1624), - [anon_sym_finally] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_initially] = ACTIONS(1624), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1626), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1633), + [anon_sym_cl] = ACTIONS(1649), + [aux_sym_accumulation_verb_token1] = ACTIONS(1652), + [anon_sym_for] = ACTIONS(1652), + [anon_sym_and] = ACTIONS(1652), + [anon_sym_as] = ACTIONS(1652), + [anon_sym_with] = ACTIONS(1652), + [anon_sym_do] = ACTIONS(1652), + [anon_sym_while] = ACTIONS(1652), + [anon_sym_until] = ACTIONS(1652), + [anon_sym_repeat] = ACTIONS(1652), + [anon_sym_when] = ACTIONS(1652), + [anon_sym_if] = ACTIONS(1652), + [anon_sym_unless] = ACTIONS(1652), + [anon_sym_always] = ACTIONS(1652), + [anon_sym_thereis] = ACTIONS(1652), + [anon_sym_never] = ACTIONS(1652), + [anon_sym_else] = ACTIONS(1652), + [anon_sym_finally] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_initially] = ACTIONS(1652), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1654), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2336), - [sym_num_lit] = STATE(2336), - [sym_kwd_lit] = STATE(2336), - [sym_str_lit] = STATE(2336), - [sym_char_lit] = STATE(2336), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2336), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2336), - [sym_set_lit] = STATE(2336), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2336), - [sym_splicing_read_cond_lit] = STATE(2336), - [sym_var_quoting_lit] = STATE(2336), - [sym_quoting_lit] = STATE(2336), - [sym_syn_quoting_lit] = STATE(2336), - [sym_unquote_splicing_lit] = STATE(2336), - [sym_unquoting_lit] = STATE(2336), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2336), - [sym_package_lit] = STATE(2336), - [sym_include_reader_macro] = STATE(2336), - [sym_complex_num_lit] = STATE(2336), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1628), - [sym_comment] = ACTIONS(1628), - [anon_sym_POUND_] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1634), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1636), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1634), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_POUND_CARET] = ACTIONS(1642), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1648), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(177), + [sym_dis_expr] = STATE(177), + [sym__form] = STATE(2154), + [sym_num_lit] = STATE(2154), + [sym_kwd_lit] = STATE(2154), + [sym_str_lit] = STATE(2154), + [sym_char_lit] = STATE(2154), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2154), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2154), + [sym_set_lit] = STATE(2154), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2154), + [sym_splicing_read_cond_lit] = STATE(2154), + [sym_var_quoting_lit] = STATE(2154), + [sym_quoting_lit] = STATE(2154), + [sym_syn_quoting_lit] = STATE(2154), + [sym_unquote_splicing_lit] = STATE(2154), + [sym_unquoting_lit] = STATE(2154), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2154), + [sym_package_lit] = STATE(2154), + [sym_include_reader_macro] = STATE(2154), + [sym_complex_num_lit] = STATE(2154), + [aux_sym_dis_expr_repeat1] = STATE(177), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1656), + [sym_comment] = ACTIONS(1656), + [anon_sym_POUND_] = ACTIONS(1601), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1659), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1606), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1659), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1609), + [anon_sym_POUND_CARET] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_RPAREN] = ACTIONS(1618), + [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(1634), - [anon_sym_cl] = ACTIONS(1650), - [aux_sym_accumulation_verb_token1] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_and] = ACTIONS(1653), - [anon_sym_as] = ACTIONS(1653), - [anon_sym_with] = ACTIONS(1653), - [anon_sym_do] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_until] = ACTIONS(1653), - [anon_sym_repeat] = ACTIONS(1653), - [anon_sym_when] = ACTIONS(1653), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_unless] = ACTIONS(1653), - [anon_sym_always] = ACTIONS(1653), - [anon_sym_thereis] = ACTIONS(1653), - [anon_sym_never] = ACTIONS(1653), - [anon_sym_else] = ACTIONS(1653), - [anon_sym_finally] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_initially] = ACTIONS(1653), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1655), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1659), + [anon_sym_cl] = ACTIONS(1620), + [aux_sym_accumulation_verb_token1] = ACTIONS(1623), + [anon_sym_for] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_as] = ACTIONS(1623), + [anon_sym_with] = ACTIONS(1623), + [anon_sym_do] = ACTIONS(1623), + [anon_sym_while] = ACTIONS(1623), + [anon_sym_until] = ACTIONS(1623), + [anon_sym_repeat] = ACTIONS(1623), + [anon_sym_when] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1623), + [anon_sym_unless] = ACTIONS(1623), + [anon_sym_always] = ACTIONS(1623), + [anon_sym_thereis] = ACTIONS(1623), + [anon_sym_never] = ACTIONS(1623), + [anon_sym_else] = ACTIONS(1623), + [anon_sym_finally] = ACTIONS(1623), + [anon_sym_return] = ACTIONS(1623), + [anon_sym_initially] = ACTIONS(1623), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1661), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2498), - [sym_num_lit] = STATE(2498), - [sym_kwd_lit] = STATE(2498), - [sym_str_lit] = STATE(2498), - [sym_char_lit] = STATE(2498), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2498), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2498), - [sym_set_lit] = STATE(2498), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2498), - [sym_splicing_read_cond_lit] = STATE(2498), - [sym_var_quoting_lit] = STATE(2498), - [sym_quoting_lit] = STATE(2498), - [sym_syn_quoting_lit] = STATE(2498), - [sym_unquote_splicing_lit] = STATE(2498), - [sym_unquoting_lit] = STATE(2498), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2498), - [sym_package_lit] = STATE(2498), - [sym_include_reader_macro] = STATE(2498), - [sym_complex_num_lit] = STATE(2498), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1657), - [sym_comment] = ACTIONS(1657), - [anon_sym_POUND_] = ACTIONS(1660), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1663), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1663), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1668), - [anon_sym_POUND_CARET] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(178), + [sym_dis_expr] = STATE(178), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(178), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1663), + [sym_comment] = ACTIONS(1663), + [anon_sym_POUND_] = ACTIONS(1666), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1669), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1671), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1669), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_POUND_CARET] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_RPAREN] = ACTIONS(1683), + [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(1663), - [anon_sym_cl] = ACTIONS(1679), - [aux_sym_accumulation_verb_token1] = ACTIONS(1682), - [anon_sym_for] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_as] = ACTIONS(1682), - [anon_sym_with] = ACTIONS(1682), - [anon_sym_do] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1682), - [anon_sym_until] = ACTIONS(1682), - [anon_sym_repeat] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(1682), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_unless] = ACTIONS(1682), - [anon_sym_always] = ACTIONS(1682), - [anon_sym_thereis] = ACTIONS(1682), - [anon_sym_never] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1682), - [anon_sym_finally] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_initially] = ACTIONS(1682), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1684), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1669), + [anon_sym_cl] = ACTIONS(1685), + [aux_sym_accumulation_verb_token1] = ACTIONS(1688), + [anon_sym_for] = ACTIONS(1688), + [anon_sym_and] = ACTIONS(1688), + [anon_sym_as] = ACTIONS(1688), + [anon_sym_with] = ACTIONS(1688), + [anon_sym_do] = ACTIONS(1688), + [anon_sym_while] = ACTIONS(1688), + [anon_sym_until] = ACTIONS(1688), + [anon_sym_repeat] = ACTIONS(1688), + [anon_sym_when] = ACTIONS(1688), + [anon_sym_if] = ACTIONS(1688), + [anon_sym_unless] = ACTIONS(1688), + [anon_sym_always] = ACTIONS(1688), + [anon_sym_thereis] = ACTIONS(1688), + [anon_sym_never] = ACTIONS(1688), + [anon_sym_else] = ACTIONS(1688), + [anon_sym_finally] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1688), + [anon_sym_initially] = ACTIONS(1688), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1690), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [61] = { - [sym__gap] = STATE(229), - [sym_dis_expr] = STATE(229), - [sym__form] = STATE(2500), - [sym_num_lit] = STATE(2500), - [sym_kwd_lit] = STATE(2500), - [sym_str_lit] = STATE(2500), - [sym_char_lit] = STATE(2500), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2500), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2500), - [sym_set_lit] = STATE(2500), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2500), - [sym_splicing_read_cond_lit] = STATE(2500), - [sym_var_quoting_lit] = STATE(2500), - [sym_quoting_lit] = STATE(2500), - [sym_syn_quoting_lit] = STATE(2500), - [sym_unquote_splicing_lit] = STATE(2500), - [sym_unquoting_lit] = STATE(2500), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2500), - [sym_package_lit] = STATE(2500), - [sym_include_reader_macro] = STATE(2500), - [sym_complex_num_lit] = STATE(2500), - [aux_sym_dis_expr_repeat1] = STATE(229), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1686), - [sym_comment] = ACTIONS(1686), - [anon_sym_POUND_] = ACTIONS(1660), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1689), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1689), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1668), - [anon_sym_POUND_CARET] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(63), + [sym_dis_expr] = STATE(63), + [sym__form] = STATE(2079), + [sym_num_lit] = STATE(2079), + [sym_kwd_lit] = STATE(2079), + [sym_str_lit] = STATE(2079), + [sym_char_lit] = STATE(2079), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2079), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2079), + [sym_set_lit] = STATE(2079), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2079), + [sym_splicing_read_cond_lit] = STATE(2079), + [sym_var_quoting_lit] = STATE(2079), + [sym_quoting_lit] = STATE(2079), + [sym_syn_quoting_lit] = STATE(2079), + [sym_unquote_splicing_lit] = STATE(2079), + [sym_unquoting_lit] = STATE(2079), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2079), + [sym_package_lit] = STATE(2079), + [sym_include_reader_macro] = STATE(2079), + [sym_complex_num_lit] = STATE(2079), + [aux_sym_dis_expr_repeat1] = STATE(63), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1692), + [sym_comment] = ACTIONS(1692), + [anon_sym_POUND_] = ACTIONS(1695), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1698), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1700), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1698), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1703), + [anon_sym_POUND_CARET] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_RPAREN] = ACTIONS(1712), + [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(1689), - [anon_sym_cl] = ACTIONS(1679), - [aux_sym_accumulation_verb_token1] = ACTIONS(1682), - [anon_sym_for] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_as] = ACTIONS(1682), - [anon_sym_with] = ACTIONS(1682), - [anon_sym_do] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1682), - [anon_sym_until] = ACTIONS(1682), - [anon_sym_repeat] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(1682), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_unless] = ACTIONS(1682), - [anon_sym_always] = ACTIONS(1682), - [anon_sym_thereis] = ACTIONS(1682), - [anon_sym_never] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1682), - [anon_sym_finally] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_initially] = ACTIONS(1682), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1691), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1698), + [anon_sym_cl] = ACTIONS(1714), + [aux_sym_accumulation_verb_token1] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_and] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1717), + [anon_sym_with] = ACTIONS(1717), + [anon_sym_do] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [anon_sym_until] = ACTIONS(1717), + [anon_sym_repeat] = ACTIONS(1717), + [anon_sym_when] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_unless] = ACTIONS(1717), + [anon_sym_always] = ACTIONS(1717), + [anon_sym_thereis] = ACTIONS(1717), + [anon_sym_never] = ACTIONS(1717), + [anon_sym_else] = ACTIONS(1717), + [anon_sym_finally] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_initially] = ACTIONS(1717), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1719), + [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(67), - [sym_dis_expr] = STATE(67), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2502), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2502), - [sym_set_lit] = STATE(2502), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(67), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1693), - [sym_comment] = ACTIONS(1693), - [anon_sym_POUND_] = ACTIONS(1660), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1696), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1696), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1668), - [anon_sym_POUND_CARET] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1721), + [sym_comment] = ACTIONS(1721), + [anon_sym_POUND_] = ACTIONS(1630), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1724), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1635), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1724), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_POUND_CARET] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1647), + [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(1696), - [anon_sym_cl] = ACTIONS(1679), - [aux_sym_accumulation_verb_token1] = ACTIONS(1682), - [anon_sym_for] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_as] = ACTIONS(1682), - [anon_sym_with] = ACTIONS(1682), - [anon_sym_do] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1682), - [anon_sym_until] = ACTIONS(1682), - [anon_sym_repeat] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(1682), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_unless] = ACTIONS(1682), - [anon_sym_always] = ACTIONS(1682), - [anon_sym_thereis] = ACTIONS(1682), - [anon_sym_never] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1682), - [anon_sym_finally] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_initially] = ACTIONS(1682), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1698), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1724), + [anon_sym_cl] = ACTIONS(1649), + [aux_sym_accumulation_verb_token1] = ACTIONS(1652), + [anon_sym_for] = ACTIONS(1652), + [anon_sym_and] = ACTIONS(1652), + [anon_sym_as] = ACTIONS(1652), + [anon_sym_with] = ACTIONS(1652), + [anon_sym_do] = ACTIONS(1652), + [anon_sym_while] = ACTIONS(1652), + [anon_sym_until] = ACTIONS(1652), + [anon_sym_repeat] = ACTIONS(1652), + [anon_sym_when] = ACTIONS(1652), + [anon_sym_if] = ACTIONS(1652), + [anon_sym_unless] = ACTIONS(1652), + [anon_sym_always] = ACTIONS(1652), + [anon_sym_thereis] = ACTIONS(1652), + [anon_sym_never] = ACTIONS(1652), + [anon_sym_else] = ACTIONS(1652), + [anon_sym_finally] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_initially] = ACTIONS(1652), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1726), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2503), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2503), - [sym_set_lit] = STATE(2503), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1657), - [sym_comment] = ACTIONS(1657), - [anon_sym_POUND_] = ACTIONS(1660), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1700), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1700), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1668), - [anon_sym_POUND_CARET] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(1728), + [sym_comment] = ACTIONS(1728), + [anon_sym_POUND_] = ACTIONS(1666), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1731), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1671), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1731), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_POUND_CARET] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_RPAREN] = ACTIONS(1683), + [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(1700), - [anon_sym_cl] = ACTIONS(1679), - [aux_sym_accumulation_verb_token1] = ACTIONS(1682), - [anon_sym_for] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_as] = ACTIONS(1682), - [anon_sym_with] = ACTIONS(1682), - [anon_sym_do] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1682), - [anon_sym_until] = ACTIONS(1682), - [anon_sym_repeat] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(1682), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_unless] = ACTIONS(1682), - [anon_sym_always] = ACTIONS(1682), - [anon_sym_thereis] = ACTIONS(1682), - [anon_sym_never] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1682), - [anon_sym_finally] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_initially] = ACTIONS(1682), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1702), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1731), + [anon_sym_cl] = ACTIONS(1685), + [aux_sym_accumulation_verb_token1] = ACTIONS(1688), + [anon_sym_for] = ACTIONS(1688), + [anon_sym_and] = ACTIONS(1688), + [anon_sym_as] = ACTIONS(1688), + [anon_sym_with] = ACTIONS(1688), + [anon_sym_do] = ACTIONS(1688), + [anon_sym_while] = ACTIONS(1688), + [anon_sym_until] = ACTIONS(1688), + [anon_sym_repeat] = ACTIONS(1688), + [anon_sym_when] = ACTIONS(1688), + [anon_sym_if] = ACTIONS(1688), + [anon_sym_unless] = ACTIONS(1688), + [anon_sym_always] = ACTIONS(1688), + [anon_sym_thereis] = ACTIONS(1688), + [anon_sym_never] = ACTIONS(1688), + [anon_sym_else] = ACTIONS(1688), + [anon_sym_finally] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1688), + [anon_sym_initially] = ACTIONS(1688), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1733), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2505), - [sym_num_lit] = STATE(2505), - [sym_kwd_lit] = STATE(2505), - [sym_str_lit] = STATE(2505), - [sym_char_lit] = STATE(2505), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2505), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2505), - [sym_set_lit] = STATE(2505), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2505), - [sym_splicing_read_cond_lit] = STATE(2505), - [sym_var_quoting_lit] = STATE(2505), - [sym_quoting_lit] = STATE(2505), - [sym_syn_quoting_lit] = STATE(2505), - [sym_unquote_splicing_lit] = STATE(2505), - [sym_unquoting_lit] = STATE(2505), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2505), - [sym_package_lit] = STATE(2505), - [sym_include_reader_macro] = STATE(2505), - [sym_complex_num_lit] = STATE(2505), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1704), - [sym_comment] = ACTIONS(1704), - [anon_sym_POUND_] = ACTIONS(1707), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1710), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1710), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_POUND_CARET] = ACTIONS(1718), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_RPAREN] = ACTIONS(1724), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(57), + [sym_dis_expr] = STATE(57), + [sym__form] = STATE(2133), + [sym_num_lit] = STATE(2133), + [sym_kwd_lit] = STATE(2133), + [sym_str_lit] = STATE(2133), + [sym_char_lit] = STATE(2133), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2133), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2133), + [sym_set_lit] = STATE(2133), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2133), + [sym_splicing_read_cond_lit] = STATE(2133), + [sym_var_quoting_lit] = STATE(2133), + [sym_quoting_lit] = STATE(2133), + [sym_syn_quoting_lit] = STATE(2133), + [sym_unquote_splicing_lit] = STATE(2133), + [sym_unquoting_lit] = STATE(2133), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2133), + [sym_package_lit] = STATE(2133), + [sym_include_reader_macro] = STATE(2133), + [sym_complex_num_lit] = STATE(2133), + [aux_sym_dis_expr_repeat1] = STATE(57), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1735), + [sym_comment] = ACTIONS(1735), + [anon_sym_POUND_] = ACTIONS(1630), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1738), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1635), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1738), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_POUND_CARET] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1647), + [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(1710), - [anon_sym_cl] = ACTIONS(1726), - [aux_sym_accumulation_verb_token1] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_and] = ACTIONS(1729), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_with] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_until] = ACTIONS(1729), - [anon_sym_repeat] = ACTIONS(1729), - [anon_sym_when] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_unless] = ACTIONS(1729), - [anon_sym_always] = ACTIONS(1729), - [anon_sym_thereis] = ACTIONS(1729), - [anon_sym_never] = ACTIONS(1729), - [anon_sym_else] = ACTIONS(1729), - [anon_sym_finally] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_initially] = ACTIONS(1729), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1731), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1738), + [anon_sym_cl] = ACTIONS(1649), + [aux_sym_accumulation_verb_token1] = ACTIONS(1652), + [anon_sym_for] = ACTIONS(1652), + [anon_sym_and] = ACTIONS(1652), + [anon_sym_as] = ACTIONS(1652), + [anon_sym_with] = ACTIONS(1652), + [anon_sym_do] = ACTIONS(1652), + [anon_sym_while] = ACTIONS(1652), + [anon_sym_until] = ACTIONS(1652), + [anon_sym_repeat] = ACTIONS(1652), + [anon_sym_when] = ACTIONS(1652), + [anon_sym_if] = ACTIONS(1652), + [anon_sym_unless] = ACTIONS(1652), + [anon_sym_always] = ACTIONS(1652), + [anon_sym_thereis] = ACTIONS(1652), + [anon_sym_never] = ACTIONS(1652), + [anon_sym_else] = ACTIONS(1652), + [anon_sym_finally] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_initially] = ACTIONS(1652), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1740), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2330), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2330), - [sym_set_lit] = STATE(2330), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1733), - [sym_comment] = ACTIONS(1733), - [anon_sym_POUND_] = ACTIONS(1736), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1739), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1741), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1739), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1744), - [anon_sym_POUND_CARET] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_RPAREN] = ACTIONS(1753), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(252), + [sym_dis_expr] = STATE(252), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(252), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1742), + [sym_comment] = ACTIONS(1742), + [anon_sym_POUND_] = ACTIONS(1745), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1748), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1748), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(232), + [anon_sym_POUND_CARET] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(241), + [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(1739), - [anon_sym_cl] = ACTIONS(1755), - [aux_sym_accumulation_verb_token1] = ACTIONS(1758), - [anon_sym_for] = ACTIONS(1758), - [anon_sym_and] = ACTIONS(1758), - [anon_sym_as] = ACTIONS(1758), - [anon_sym_with] = ACTIONS(1758), - [anon_sym_do] = ACTIONS(1758), - [anon_sym_while] = ACTIONS(1758), - [anon_sym_until] = ACTIONS(1758), - [anon_sym_repeat] = ACTIONS(1758), - [anon_sym_when] = ACTIONS(1758), - [anon_sym_if] = ACTIONS(1758), - [anon_sym_unless] = ACTIONS(1758), - [anon_sym_always] = ACTIONS(1758), - [anon_sym_thereis] = ACTIONS(1758), - [anon_sym_never] = ACTIONS(1758), - [anon_sym_else] = ACTIONS(1758), - [anon_sym_finally] = ACTIONS(1758), - [anon_sym_return] = ACTIONS(1758), - [anon_sym_initially] = ACTIONS(1758), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1760), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1748), + [anon_sym_cl] = ACTIONS(1756), + [aux_sym_accumulation_verb_token1] = ACTIONS(264), + [anon_sym_for] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_as] = ACTIONS(264), + [anon_sym_with] = ACTIONS(264), + [anon_sym_do] = ACTIONS(264), + [anon_sym_while] = ACTIONS(264), + [anon_sym_until] = ACTIONS(264), + [anon_sym_repeat] = ACTIONS(264), + [anon_sym_when] = ACTIONS(264), + [anon_sym_if] = ACTIONS(264), + [anon_sym_unless] = ACTIONS(264), + [anon_sym_always] = ACTIONS(264), + [anon_sym_thereis] = ACTIONS(264), + [anon_sym_never] = ACTIONS(264), + [anon_sym_else] = ACTIONS(264), + [anon_sym_finally] = ACTIONS(264), + [anon_sym_return] = ACTIONS(264), + [anon_sym_initially] = ACTIONS(264), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1759), + [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(149), - [sym_dis_expr] = STATE(149), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2124), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2124), - [sym_set_lit] = STATE(2124), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(149), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1762), - [sym_comment] = ACTIONS(1762), - [anon_sym_POUND_] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1768), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1768), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1122), - [anon_sym_POUND_CARET] = ACTIONS(1125), - [anon_sym_LPAREN] = ACTIONS(1773), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(54), + [sym_dis_expr] = STATE(54), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(54), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1761), + [sym_comment] = ACTIONS(1761), + [anon_sym_POUND_] = ACTIONS(1764), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1767), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1769), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1767), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1772), + [anon_sym_POUND_CARET] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(1781), + [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(1768), - [anon_sym_cl] = ACTIONS(1776), - [aux_sym_accumulation_verb_token1] = ACTIONS(1138), - [anon_sym_for] = ACTIONS(1138), - [anon_sym_and] = ACTIONS(1138), - [anon_sym_as] = ACTIONS(1138), - [anon_sym_with] = ACTIONS(1138), - [anon_sym_do] = ACTIONS(1138), - [anon_sym_while] = ACTIONS(1138), - [anon_sym_until] = ACTIONS(1138), - [anon_sym_repeat] = ACTIONS(1138), - [anon_sym_when] = ACTIONS(1138), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_unless] = ACTIONS(1138), - [anon_sym_always] = ACTIONS(1138), - [anon_sym_thereis] = ACTIONS(1138), - [anon_sym_never] = ACTIONS(1138), - [anon_sym_else] = ACTIONS(1138), - [anon_sym_finally] = ACTIONS(1138), - [anon_sym_return] = ACTIONS(1138), - [anon_sym_initially] = ACTIONS(1138), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1779), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1767), + [anon_sym_cl] = ACTIONS(1783), + [aux_sym_accumulation_verb_token1] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1786), + [anon_sym_and] = ACTIONS(1786), + [anon_sym_as] = ACTIONS(1786), + [anon_sym_with] = ACTIONS(1786), + [anon_sym_do] = ACTIONS(1786), + [anon_sym_while] = ACTIONS(1786), + [anon_sym_until] = ACTIONS(1786), + [anon_sym_repeat] = ACTIONS(1786), + [anon_sym_when] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1786), + [anon_sym_unless] = ACTIONS(1786), + [anon_sym_always] = ACTIONS(1786), + [anon_sym_thereis] = ACTIONS(1786), + [anon_sym_never] = ACTIONS(1786), + [anon_sym_else] = ACTIONS(1786), + [anon_sym_finally] = ACTIONS(1786), + [anon_sym_return] = ACTIONS(1786), + [anon_sym_initially] = ACTIONS(1786), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1788), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2393), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2393), - [sym_set_lit] = STATE(2393), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1588), - [sym_comment] = ACTIONS(1588), - [anon_sym_POUND_] = ACTIONS(1562), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1781), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1567), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1781), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1570), - [anon_sym_POUND_CARET] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_RPAREN] = ACTIONS(1579), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(185), + [sym_dis_expr] = STATE(185), + [sym__form] = STATE(2263), + [sym_num_lit] = STATE(2263), + [sym_kwd_lit] = STATE(2263), + [sym_str_lit] = STATE(2263), + [sym_char_lit] = STATE(2263), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2263), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2263), + [sym_set_lit] = STATE(2263), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2263), + [sym_splicing_read_cond_lit] = STATE(2263), + [sym_var_quoting_lit] = STATE(2263), + [sym_quoting_lit] = STATE(2263), + [sym_syn_quoting_lit] = STATE(2263), + [sym_unquote_splicing_lit] = STATE(2263), + [sym_unquoting_lit] = STATE(2263), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2263), + [sym_package_lit] = STATE(2263), + [sym_include_reader_macro] = STATE(2263), + [sym_complex_num_lit] = STATE(2263), + [aux_sym_dis_expr_repeat1] = STATE(185), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1790), + [sym_comment] = ACTIONS(1790), + [anon_sym_POUND_] = ACTIONS(1666), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1793), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1671), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1793), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_POUND_CARET] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_RPAREN] = ACTIONS(1683), + [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(1781), - [anon_sym_cl] = ACTIONS(1581), - [aux_sym_accumulation_verb_token1] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_and] = ACTIONS(1584), - [anon_sym_as] = ACTIONS(1584), - [anon_sym_with] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_until] = ACTIONS(1584), - [anon_sym_repeat] = ACTIONS(1584), - [anon_sym_when] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_unless] = ACTIONS(1584), - [anon_sym_always] = ACTIONS(1584), - [anon_sym_thereis] = ACTIONS(1584), - [anon_sym_never] = ACTIONS(1584), - [anon_sym_else] = ACTIONS(1584), - [anon_sym_finally] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_initially] = ACTIONS(1584), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1783), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1793), + [anon_sym_cl] = ACTIONS(1685), + [aux_sym_accumulation_verb_token1] = ACTIONS(1688), + [anon_sym_for] = ACTIONS(1688), + [anon_sym_and] = ACTIONS(1688), + [anon_sym_as] = ACTIONS(1688), + [anon_sym_with] = ACTIONS(1688), + [anon_sym_do] = ACTIONS(1688), + [anon_sym_while] = ACTIONS(1688), + [anon_sym_until] = ACTIONS(1688), + [anon_sym_repeat] = ACTIONS(1688), + [anon_sym_when] = ACTIONS(1688), + [anon_sym_if] = ACTIONS(1688), + [anon_sym_unless] = ACTIONS(1688), + [anon_sym_always] = ACTIONS(1688), + [anon_sym_thereis] = ACTIONS(1688), + [anon_sym_never] = ACTIONS(1688), + [anon_sym_else] = ACTIONS(1688), + [anon_sym_finally] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1688), + [anon_sym_initially] = ACTIONS(1688), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1795), + [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(91), - [sym_dis_expr] = STATE(91), - [sym__form] = STATE(2513), - [sym_num_lit] = STATE(2513), - [sym_kwd_lit] = STATE(2513), - [sym_str_lit] = STATE(2513), - [sym_char_lit] = STATE(2513), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2513), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2513), - [sym_set_lit] = STATE(2513), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2513), - [sym_splicing_read_cond_lit] = STATE(2513), - [sym_var_quoting_lit] = STATE(2513), - [sym_quoting_lit] = STATE(2513), - [sym_syn_quoting_lit] = STATE(2513), - [sym_unquote_splicing_lit] = STATE(2513), - [sym_unquoting_lit] = STATE(2513), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2513), - [sym_package_lit] = STATE(2513), - [sym_include_reader_macro] = STATE(2513), - [sym_complex_num_lit] = STATE(2513), - [aux_sym_dis_expr_repeat1] = STATE(91), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1785), - [sym_comment] = ACTIONS(1785), - [anon_sym_POUND_] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1791), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1793), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1791), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_POUND_CARET] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(1797), + [sym_comment] = ACTIONS(1797), + [anon_sym_POUND_] = ACTIONS(1800), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1803), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1805), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1803), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1808), + [anon_sym_POUND_CARET] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1814), + [anon_sym_RPAREN] = ACTIONS(1817), + [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(1791), - [anon_sym_cl] = ACTIONS(1807), - [aux_sym_accumulation_verb_token1] = ACTIONS(1810), - [anon_sym_for] = ACTIONS(1810), - [anon_sym_and] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1810), - [anon_sym_with] = ACTIONS(1810), - [anon_sym_do] = ACTIONS(1810), - [anon_sym_while] = ACTIONS(1810), - [anon_sym_until] = ACTIONS(1810), - [anon_sym_repeat] = ACTIONS(1810), - [anon_sym_when] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1810), - [anon_sym_unless] = ACTIONS(1810), - [anon_sym_always] = ACTIONS(1810), - [anon_sym_thereis] = ACTIONS(1810), - [anon_sym_never] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1810), - [anon_sym_finally] = ACTIONS(1810), - [anon_sym_return] = ACTIONS(1810), - [anon_sym_initially] = ACTIONS(1810), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1812), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1803), + [anon_sym_cl] = ACTIONS(1819), + [aux_sym_accumulation_verb_token1] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_with] = ACTIONS(1822), + [anon_sym_do] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_until] = ACTIONS(1822), + [anon_sym_repeat] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_unless] = ACTIONS(1822), + [anon_sym_always] = ACTIONS(1822), + [anon_sym_thereis] = ACTIONS(1822), + [anon_sym_never] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_finally] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_initially] = ACTIONS(1822), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1824), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2514), - [sym_num_lit] = STATE(2514), - [sym_kwd_lit] = STATE(2514), - [sym_str_lit] = STATE(2514), - [sym_char_lit] = STATE(2514), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2514), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2514), - [sym_set_lit] = STATE(2514), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2514), - [sym_splicing_read_cond_lit] = STATE(2514), - [sym_var_quoting_lit] = STATE(2514), - [sym_quoting_lit] = STATE(2514), - [sym_syn_quoting_lit] = STATE(2514), - [sym_unquote_splicing_lit] = STATE(2514), - [sym_unquoting_lit] = STATE(2514), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2514), - [sym_package_lit] = STATE(2514), - [sym_include_reader_macro] = STATE(2514), - [sym_complex_num_lit] = STATE(2514), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1814), - [sym_comment] = ACTIONS(1814), - [anon_sym_POUND_] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1817), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1793), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1817), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_POUND_CARET] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(188), + [sym_dis_expr] = STATE(188), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(188), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1826), + [sym_comment] = ACTIONS(1826), + [anon_sym_POUND_] = ACTIONS(1601), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1829), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1606), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1829), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1609), + [anon_sym_POUND_CARET] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_RPAREN] = ACTIONS(1618), + [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(1807), - [aux_sym_accumulation_verb_token1] = ACTIONS(1810), - [anon_sym_for] = ACTIONS(1810), - [anon_sym_and] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1810), - [anon_sym_with] = ACTIONS(1810), - [anon_sym_do] = ACTIONS(1810), - [anon_sym_while] = ACTIONS(1810), - [anon_sym_until] = ACTIONS(1810), - [anon_sym_repeat] = ACTIONS(1810), - [anon_sym_when] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1810), - [anon_sym_unless] = ACTIONS(1810), - [anon_sym_always] = ACTIONS(1810), - [anon_sym_thereis] = ACTIONS(1810), - [anon_sym_never] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1810), - [anon_sym_finally] = ACTIONS(1810), - [anon_sym_return] = ACTIONS(1810), - [anon_sym_initially] = ACTIONS(1810), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1819), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1829), + [anon_sym_cl] = ACTIONS(1620), + [aux_sym_accumulation_verb_token1] = ACTIONS(1623), + [anon_sym_for] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_as] = ACTIONS(1623), + [anon_sym_with] = ACTIONS(1623), + [anon_sym_do] = ACTIONS(1623), + [anon_sym_while] = ACTIONS(1623), + [anon_sym_until] = ACTIONS(1623), + [anon_sym_repeat] = ACTIONS(1623), + [anon_sym_when] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1623), + [anon_sym_unless] = ACTIONS(1623), + [anon_sym_always] = ACTIONS(1623), + [anon_sym_thereis] = ACTIONS(1623), + [anon_sym_never] = ACTIONS(1623), + [anon_sym_else] = ACTIONS(1623), + [anon_sym_finally] = ACTIONS(1623), + [anon_sym_return] = ACTIONS(1623), + [anon_sym_initially] = ACTIONS(1623), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1831), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [70] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2516), - [sym_num_lit] = STATE(2516), - [sym_kwd_lit] = STATE(2516), - [sym_str_lit] = STATE(2516), - [sym_char_lit] = STATE(2516), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2516), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2516), - [sym_set_lit] = STATE(2516), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2516), - [sym_splicing_read_cond_lit] = STATE(2516), - [sym_var_quoting_lit] = STATE(2516), - [sym_quoting_lit] = STATE(2516), - [sym_syn_quoting_lit] = STATE(2516), - [sym_unquote_splicing_lit] = STATE(2516), - [sym_unquoting_lit] = STATE(2516), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2516), - [sym_package_lit] = STATE(2516), - [sym_include_reader_macro] = STATE(2516), - [sym_complex_num_lit] = STATE(2516), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1814), - [sym_comment] = ACTIONS(1814), - [anon_sym_POUND_] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1821), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1793), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1821), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_POUND_CARET] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(49), + [sym_dis_expr] = STATE(49), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(49), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1833), + [sym_comment] = ACTIONS(1833), + [anon_sym_POUND_] = ACTIONS(1800), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1836), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1805), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1836), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1808), + [anon_sym_POUND_CARET] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1814), + [anon_sym_RPAREN] = ACTIONS(1817), + [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(1821), - [anon_sym_cl] = ACTIONS(1807), - [aux_sym_accumulation_verb_token1] = ACTIONS(1810), - [anon_sym_for] = ACTIONS(1810), - [anon_sym_and] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1810), - [anon_sym_with] = ACTIONS(1810), - [anon_sym_do] = ACTIONS(1810), - [anon_sym_while] = ACTIONS(1810), - [anon_sym_until] = ACTIONS(1810), - [anon_sym_repeat] = ACTIONS(1810), - [anon_sym_when] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1810), - [anon_sym_unless] = ACTIONS(1810), - [anon_sym_always] = ACTIONS(1810), - [anon_sym_thereis] = ACTIONS(1810), - [anon_sym_never] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1810), - [anon_sym_finally] = ACTIONS(1810), - [anon_sym_return] = ACTIONS(1810), - [anon_sym_initially] = ACTIONS(1810), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1823), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1836), + [anon_sym_cl] = ACTIONS(1819), + [aux_sym_accumulation_verb_token1] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_with] = ACTIONS(1822), + [anon_sym_do] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_until] = ACTIONS(1822), + [anon_sym_repeat] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_unless] = ACTIONS(1822), + [anon_sym_always] = ACTIONS(1822), + [anon_sym_thereis] = ACTIONS(1822), + [anon_sym_never] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_finally] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_initially] = ACTIONS(1822), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1838), + [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(128), - [sym_dis_expr] = STATE(128), - [sym__form] = STATE(2523), - [sym_num_lit] = STATE(2523), - [sym_kwd_lit] = STATE(2523), - [sym_str_lit] = STATE(2523), - [sym_char_lit] = STATE(2523), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2523), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2523), - [sym_set_lit] = STATE(2523), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2523), - [sym_splicing_read_cond_lit] = STATE(2523), - [sym_var_quoting_lit] = STATE(2523), - [sym_quoting_lit] = STATE(2523), - [sym_syn_quoting_lit] = STATE(2523), - [sym_unquote_splicing_lit] = STATE(2523), - [sym_unquoting_lit] = STATE(2523), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2523), - [sym_package_lit] = STATE(2523), - [sym_include_reader_macro] = STATE(2523), - [sym_complex_num_lit] = STATE(2523), - [aux_sym_dis_expr_repeat1] = STATE(128), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1825), - [sym_comment] = ACTIONS(1825), - [anon_sym_POUND_] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1831), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1833), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1831), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1836), - [anon_sym_POUND_CARET] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1845), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(48), + [sym_dis_expr] = STATE(48), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(48), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1840), + [sym_comment] = ACTIONS(1840), + [anon_sym_POUND_] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1846), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1848), + [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(1851), + [anon_sym_POUND_CARET] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1860), + [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(1831), - [anon_sym_cl] = ACTIONS(1847), - [aux_sym_accumulation_verb_token1] = ACTIONS(1850), - [anon_sym_for] = ACTIONS(1850), - [anon_sym_and] = ACTIONS(1850), - [anon_sym_as] = ACTIONS(1850), - [anon_sym_with] = ACTIONS(1850), - [anon_sym_do] = ACTIONS(1850), - [anon_sym_while] = ACTIONS(1850), - [anon_sym_until] = ACTIONS(1850), - [anon_sym_repeat] = ACTIONS(1850), - [anon_sym_when] = ACTIONS(1850), - [anon_sym_if] = ACTIONS(1850), - [anon_sym_unless] = ACTIONS(1850), - [anon_sym_always] = ACTIONS(1850), - [anon_sym_thereis] = ACTIONS(1850), - [anon_sym_never] = ACTIONS(1850), - [anon_sym_else] = ACTIONS(1850), - [anon_sym_finally] = ACTIONS(1850), - [anon_sym_return] = ACTIONS(1850), - [anon_sym_initially] = ACTIONS(1850), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1852), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1846), + [anon_sym_cl] = ACTIONS(1862), + [aux_sym_accumulation_verb_token1] = ACTIONS(1865), + [anon_sym_for] = ACTIONS(1865), + [anon_sym_and] = ACTIONS(1865), + [anon_sym_as] = ACTIONS(1865), + [anon_sym_with] = ACTIONS(1865), + [anon_sym_do] = ACTIONS(1865), + [anon_sym_while] = ACTIONS(1865), + [anon_sym_until] = ACTIONS(1865), + [anon_sym_repeat] = ACTIONS(1865), + [anon_sym_when] = ACTIONS(1865), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_unless] = ACTIONS(1865), + [anon_sym_always] = ACTIONS(1865), + [anon_sym_thereis] = ACTIONS(1865), + [anon_sym_never] = ACTIONS(1865), + [anon_sym_else] = ACTIONS(1865), + [anon_sym_finally] = ACTIONS(1865), + [anon_sym_return] = ACTIONS(1865), + [anon_sym_initially] = ACTIONS(1865), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1867), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2524), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2524), - [sym_set_lit] = STATE(2524), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1854), - [sym_comment] = ACTIONS(1854), - [anon_sym_POUND_] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1857), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1833), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1857), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1836), - [anon_sym_POUND_CARET] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1845), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(1598), + [sym_comment] = ACTIONS(1598), + [anon_sym_POUND_] = ACTIONS(1601), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1869), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1606), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1869), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1609), + [anon_sym_POUND_CARET] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_RPAREN] = ACTIONS(1618), + [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(1857), - [anon_sym_cl] = ACTIONS(1847), - [aux_sym_accumulation_verb_token1] = ACTIONS(1850), - [anon_sym_for] = ACTIONS(1850), - [anon_sym_and] = ACTIONS(1850), - [anon_sym_as] = ACTIONS(1850), - [anon_sym_with] = ACTIONS(1850), - [anon_sym_do] = ACTIONS(1850), - [anon_sym_while] = ACTIONS(1850), - [anon_sym_until] = ACTIONS(1850), - [anon_sym_repeat] = ACTIONS(1850), - [anon_sym_when] = ACTIONS(1850), - [anon_sym_if] = ACTIONS(1850), - [anon_sym_unless] = ACTIONS(1850), - [anon_sym_always] = ACTIONS(1850), - [anon_sym_thereis] = ACTIONS(1850), - [anon_sym_never] = ACTIONS(1850), - [anon_sym_else] = ACTIONS(1850), - [anon_sym_finally] = ACTIONS(1850), - [anon_sym_return] = ACTIONS(1850), - [anon_sym_initially] = ACTIONS(1850), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1859), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1869), + [anon_sym_cl] = ACTIONS(1620), + [aux_sym_accumulation_verb_token1] = ACTIONS(1623), + [anon_sym_for] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_as] = ACTIONS(1623), + [anon_sym_with] = ACTIONS(1623), + [anon_sym_do] = ACTIONS(1623), + [anon_sym_while] = ACTIONS(1623), + [anon_sym_until] = ACTIONS(1623), + [anon_sym_repeat] = ACTIONS(1623), + [anon_sym_when] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1623), + [anon_sym_unless] = ACTIONS(1623), + [anon_sym_always] = ACTIONS(1623), + [anon_sym_thereis] = ACTIONS(1623), + [anon_sym_never] = ACTIONS(1623), + [anon_sym_else] = ACTIONS(1623), + [anon_sym_finally] = ACTIONS(1623), + [anon_sym_return] = ACTIONS(1623), + [anon_sym_initially] = ACTIONS(1623), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1871), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2526), - [sym_num_lit] = STATE(2526), - [sym_kwd_lit] = STATE(2526), - [sym_str_lit] = STATE(2526), - [sym_char_lit] = STATE(2526), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2526), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2526), - [sym_set_lit] = STATE(2526), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2526), - [sym_splicing_read_cond_lit] = STATE(2526), - [sym_var_quoting_lit] = STATE(2526), - [sym_quoting_lit] = STATE(2526), - [sym_syn_quoting_lit] = STATE(2526), - [sym_unquote_splicing_lit] = STATE(2526), - [sym_unquoting_lit] = STATE(2526), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2526), - [sym_package_lit] = STATE(2526), - [sym_include_reader_macro] = STATE(2526), - [sym_complex_num_lit] = STATE(2526), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1854), - [sym_comment] = ACTIONS(1854), - [anon_sym_POUND_] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1861), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1833), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1861), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1836), - [anon_sym_POUND_CARET] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1845), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(1873), + [sym_comment] = ACTIONS(1873), + [anon_sym_POUND_] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1876), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1876), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_POUND_CARET] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1860), + [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(1861), - [anon_sym_cl] = ACTIONS(1847), - [aux_sym_accumulation_verb_token1] = ACTIONS(1850), - [anon_sym_for] = ACTIONS(1850), - [anon_sym_and] = ACTIONS(1850), - [anon_sym_as] = ACTIONS(1850), - [anon_sym_with] = ACTIONS(1850), - [anon_sym_do] = ACTIONS(1850), - [anon_sym_while] = ACTIONS(1850), - [anon_sym_until] = ACTIONS(1850), - [anon_sym_repeat] = ACTIONS(1850), - [anon_sym_when] = ACTIONS(1850), - [anon_sym_if] = ACTIONS(1850), - [anon_sym_unless] = ACTIONS(1850), - [anon_sym_always] = ACTIONS(1850), - [anon_sym_thereis] = ACTIONS(1850), - [anon_sym_never] = ACTIONS(1850), - [anon_sym_else] = ACTIONS(1850), - [anon_sym_finally] = ACTIONS(1850), - [anon_sym_return] = ACTIONS(1850), - [anon_sym_initially] = ACTIONS(1850), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1863), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1876), + [anon_sym_cl] = ACTIONS(1862), + [aux_sym_accumulation_verb_token1] = ACTIONS(1865), + [anon_sym_for] = ACTIONS(1865), + [anon_sym_and] = ACTIONS(1865), + [anon_sym_as] = ACTIONS(1865), + [anon_sym_with] = ACTIONS(1865), + [anon_sym_do] = ACTIONS(1865), + [anon_sym_while] = ACTIONS(1865), + [anon_sym_until] = ACTIONS(1865), + [anon_sym_repeat] = ACTIONS(1865), + [anon_sym_when] = ACTIONS(1865), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_unless] = ACTIONS(1865), + [anon_sym_always] = ACTIONS(1865), + [anon_sym_thereis] = ACTIONS(1865), + [anon_sym_never] = ACTIONS(1865), + [anon_sym_else] = ACTIONS(1865), + [anon_sym_finally] = ACTIONS(1865), + [anon_sym_return] = ACTIONS(1865), + [anon_sym_initially] = ACTIONS(1865), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1878), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2325), - [sym_num_lit] = STATE(2325), - [sym_kwd_lit] = STATE(2325), - [sym_str_lit] = STATE(2325), - [sym_char_lit] = STATE(2325), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2325), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2325), - [sym_set_lit] = STATE(2325), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2325), - [sym_splicing_read_cond_lit] = STATE(2325), - [sym_var_quoting_lit] = STATE(2325), - [sym_quoting_lit] = STATE(2325), - [sym_syn_quoting_lit] = STATE(2325), - [sym_unquote_splicing_lit] = STATE(2325), - [sym_unquoting_lit] = STATE(2325), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2325), - [sym_package_lit] = STATE(2325), - [sym_include_reader_macro] = STATE(2325), - [sym_complex_num_lit] = STATE(2325), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1733), - [sym_comment] = ACTIONS(1733), - [anon_sym_POUND_] = ACTIONS(1736), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1865), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1741), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1865), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1744), - [anon_sym_POUND_CARET] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_RPAREN] = ACTIONS(1753), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(215), + [sym_dis_expr] = STATE(215), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(215), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1880), + [sym_comment] = ACTIONS(1880), + [anon_sym_POUND_] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1886), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1888), + [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(1891), + [anon_sym_POUND_CARET] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(1900), + [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(1865), - [anon_sym_cl] = ACTIONS(1755), - [aux_sym_accumulation_verb_token1] = ACTIONS(1758), - [anon_sym_for] = ACTIONS(1758), - [anon_sym_and] = ACTIONS(1758), - [anon_sym_as] = ACTIONS(1758), - [anon_sym_with] = ACTIONS(1758), - [anon_sym_do] = ACTIONS(1758), - [anon_sym_while] = ACTIONS(1758), - [anon_sym_until] = ACTIONS(1758), - [anon_sym_repeat] = ACTIONS(1758), - [anon_sym_when] = ACTIONS(1758), - [anon_sym_if] = ACTIONS(1758), - [anon_sym_unless] = ACTIONS(1758), - [anon_sym_always] = ACTIONS(1758), - [anon_sym_thereis] = ACTIONS(1758), - [anon_sym_never] = ACTIONS(1758), - [anon_sym_else] = ACTIONS(1758), - [anon_sym_finally] = ACTIONS(1758), - [anon_sym_return] = ACTIONS(1758), - [anon_sym_initially] = ACTIONS(1758), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1867), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1886), + [anon_sym_cl] = ACTIONS(1902), + [aux_sym_accumulation_verb_token1] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1905), + [anon_sym_and] = ACTIONS(1905), + [anon_sym_as] = ACTIONS(1905), + [anon_sym_with] = ACTIONS(1905), + [anon_sym_do] = ACTIONS(1905), + [anon_sym_while] = ACTIONS(1905), + [anon_sym_until] = ACTIONS(1905), + [anon_sym_repeat] = ACTIONS(1905), + [anon_sym_when] = ACTIONS(1905), + [anon_sym_if] = ACTIONS(1905), + [anon_sym_unless] = ACTIONS(1905), + [anon_sym_always] = ACTIONS(1905), + [anon_sym_thereis] = ACTIONS(1905), + [anon_sym_never] = ACTIONS(1905), + [anon_sym_else] = ACTIONS(1905), + [anon_sym_finally] = ACTIONS(1905), + [anon_sym_return] = ACTIONS(1905), + [anon_sym_initially] = ACTIONS(1905), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1907), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2531), - [sym_num_lit] = STATE(2531), - [sym_kwd_lit] = STATE(2531), - [sym_str_lit] = STATE(2531), - [sym_char_lit] = STATE(2531), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2531), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2531), - [sym_set_lit] = STATE(2531), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2531), - [sym_splicing_read_cond_lit] = STATE(2531), - [sym_var_quoting_lit] = STATE(2531), - [sym_quoting_lit] = STATE(2531), - [sym_syn_quoting_lit] = STATE(2531), - [sym_unquote_splicing_lit] = STATE(2531), - [sym_unquoting_lit] = STATE(2531), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2531), - [sym_package_lit] = STATE(2531), - [sym_include_reader_macro] = STATE(2531), - [sym_complex_num_lit] = STATE(2531), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1869), - [sym_comment] = ACTIONS(1869), - [anon_sym_POUND_] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1875), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1877), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1875), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_POUND_CARET] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(136), + [sym_dis_expr] = STATE(136), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(136), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1909), + [sym_comment] = ACTIONS(1909), + [anon_sym_POUND_] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1912), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1912), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_POUND_CARET] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1860), + [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(1875), - [anon_sym_cl] = ACTIONS(1891), - [aux_sym_accumulation_verb_token1] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_and] = ACTIONS(1894), - [anon_sym_as] = ACTIONS(1894), - [anon_sym_with] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_until] = ACTIONS(1894), - [anon_sym_repeat] = ACTIONS(1894), - [anon_sym_when] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_unless] = ACTIONS(1894), - [anon_sym_always] = ACTIONS(1894), - [anon_sym_thereis] = ACTIONS(1894), - [anon_sym_never] = ACTIONS(1894), - [anon_sym_else] = ACTIONS(1894), - [anon_sym_finally] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_initially] = ACTIONS(1894), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1896), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1912), + [anon_sym_cl] = ACTIONS(1862), + [aux_sym_accumulation_verb_token1] = ACTIONS(1865), + [anon_sym_for] = ACTIONS(1865), + [anon_sym_and] = ACTIONS(1865), + [anon_sym_as] = ACTIONS(1865), + [anon_sym_with] = ACTIONS(1865), + [anon_sym_do] = ACTIONS(1865), + [anon_sym_while] = ACTIONS(1865), + [anon_sym_until] = ACTIONS(1865), + [anon_sym_repeat] = ACTIONS(1865), + [anon_sym_when] = ACTIONS(1865), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_unless] = ACTIONS(1865), + [anon_sym_always] = ACTIONS(1865), + [anon_sym_thereis] = ACTIONS(1865), + [anon_sym_never] = ACTIONS(1865), + [anon_sym_else] = ACTIONS(1865), + [anon_sym_finally] = ACTIONS(1865), + [anon_sym_return] = ACTIONS(1865), + [anon_sym_initially] = ACTIONS(1865), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1914), + [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(212), - [sym_dis_expr] = STATE(212), - [sym__form] = STATE(2487), - [sym_num_lit] = STATE(2487), - [sym_kwd_lit] = STATE(2487), - [sym_str_lit] = STATE(2487), - [sym_char_lit] = STATE(2487), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2487), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2487), - [sym_set_lit] = STATE(2487), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2487), - [sym_splicing_read_cond_lit] = STATE(2487), - [sym_var_quoting_lit] = STATE(2487), - [sym_quoting_lit] = STATE(2487), - [sym_syn_quoting_lit] = STATE(2487), - [sym_unquote_splicing_lit] = STATE(2487), - [sym_unquoting_lit] = STATE(2487), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2487), - [sym_package_lit] = STATE(2487), - [sym_include_reader_macro] = STATE(2487), - [sym_complex_num_lit] = STATE(2487), - [aux_sym_dis_expr_repeat1] = STATE(212), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1898), - [sym_comment] = ACTIONS(1898), - [anon_sym_POUND_] = ACTIONS(1901), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1904), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1906), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1904), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1909), - [anon_sym_POUND_CARET] = ACTIONS(1912), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_RPAREN] = ACTIONS(1918), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(139), + [sym_dis_expr] = STATE(139), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(139), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1916), + [sym_comment] = ACTIONS(1916), + [anon_sym_POUND_] = ACTIONS(1800), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1919), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1805), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1919), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1808), + [anon_sym_POUND_CARET] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1814), + [anon_sym_RPAREN] = ACTIONS(1817), + [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(1904), - [anon_sym_cl] = ACTIONS(1920), - [aux_sym_accumulation_verb_token1] = ACTIONS(1923), - [anon_sym_for] = ACTIONS(1923), - [anon_sym_and] = ACTIONS(1923), - [anon_sym_as] = ACTIONS(1923), - [anon_sym_with] = ACTIONS(1923), - [anon_sym_do] = ACTIONS(1923), - [anon_sym_while] = ACTIONS(1923), - [anon_sym_until] = ACTIONS(1923), - [anon_sym_repeat] = ACTIONS(1923), - [anon_sym_when] = ACTIONS(1923), - [anon_sym_if] = ACTIONS(1923), - [anon_sym_unless] = ACTIONS(1923), - [anon_sym_always] = ACTIONS(1923), - [anon_sym_thereis] = ACTIONS(1923), - [anon_sym_never] = ACTIONS(1923), - [anon_sym_else] = ACTIONS(1923), - [anon_sym_finally] = ACTIONS(1923), - [anon_sym_return] = ACTIONS(1923), - [anon_sym_initially] = ACTIONS(1923), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1925), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1919), + [anon_sym_cl] = ACTIONS(1819), + [aux_sym_accumulation_verb_token1] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_with] = ACTIONS(1822), + [anon_sym_do] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_until] = ACTIONS(1822), + [anon_sym_repeat] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_unless] = ACTIONS(1822), + [anon_sym_always] = ACTIONS(1822), + [anon_sym_thereis] = ACTIONS(1822), + [anon_sym_never] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_finally] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_initially] = ACTIONS(1822), + [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), }, [77] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2321), - [sym_num_lit] = STATE(2321), - [sym_kwd_lit] = STATE(2321), - [sym_str_lit] = STATE(2321), - [sym_char_lit] = STATE(2321), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2321), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2321), - [sym_set_lit] = STATE(2321), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2321), - [sym_splicing_read_cond_lit] = STATE(2321), - [sym_var_quoting_lit] = STATE(2321), - [sym_quoting_lit] = STATE(2321), - [sym_syn_quoting_lit] = STATE(2321), - [sym_unquote_splicing_lit] = STATE(2321), - [sym_unquoting_lit] = STATE(2321), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2321), - [sym_package_lit] = STATE(2321), - [sym_include_reader_macro] = STATE(2321), - [sym_complex_num_lit] = STATE(2321), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1927), - [sym_comment] = ACTIONS(1927), - [anon_sym_POUND_] = ACTIONS(1930), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1933), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1935), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1933), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1938), - [anon_sym_POUND_CARET] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1944), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(1797), + [sym_comment] = ACTIONS(1797), + [anon_sym_POUND_] = ACTIONS(1800), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1923), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1805), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1923), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1808), + [anon_sym_POUND_CARET] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1814), + [anon_sym_RPAREN] = ACTIONS(1817), + [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(1949), - [aux_sym_accumulation_verb_token1] = ACTIONS(1952), - [anon_sym_for] = ACTIONS(1952), - [anon_sym_and] = ACTIONS(1952), - [anon_sym_as] = ACTIONS(1952), - [anon_sym_with] = ACTIONS(1952), - [anon_sym_do] = ACTIONS(1952), - [anon_sym_while] = ACTIONS(1952), - [anon_sym_until] = ACTIONS(1952), - [anon_sym_repeat] = ACTIONS(1952), - [anon_sym_when] = ACTIONS(1952), - [anon_sym_if] = ACTIONS(1952), - [anon_sym_unless] = ACTIONS(1952), - [anon_sym_always] = ACTIONS(1952), - [anon_sym_thereis] = ACTIONS(1952), - [anon_sym_never] = ACTIONS(1952), - [anon_sym_else] = ACTIONS(1952), - [anon_sym_finally] = ACTIONS(1952), - [anon_sym_return] = ACTIONS(1952), - [anon_sym_initially] = ACTIONS(1952), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1954), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1923), + [anon_sym_cl] = ACTIONS(1819), + [aux_sym_accumulation_verb_token1] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_with] = ACTIONS(1822), + [anon_sym_do] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_until] = ACTIONS(1822), + [anon_sym_repeat] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_unless] = ACTIONS(1822), + [anon_sym_always] = ACTIONS(1822), + [anon_sym_thereis] = ACTIONS(1822), + [anon_sym_never] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_finally] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_initially] = ACTIONS(1822), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1925), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2506), - [sym_num_lit] = STATE(2506), - [sym_kwd_lit] = STATE(2506), - [sym_str_lit] = STATE(2506), - [sym_char_lit] = STATE(2506), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2506), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2506), - [sym_set_lit] = STATE(2506), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2506), - [sym_splicing_read_cond_lit] = STATE(2506), - [sym_var_quoting_lit] = STATE(2506), - [sym_quoting_lit] = STATE(2506), - [sym_syn_quoting_lit] = STATE(2506), - [sym_unquote_splicing_lit] = STATE(2506), - [sym_unquoting_lit] = STATE(2506), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2506), - [sym_package_lit] = STATE(2506), - [sym_include_reader_macro] = STATE(2506), - [sym_complex_num_lit] = STATE(2506), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1956), - [sym_comment] = ACTIONS(1956), - [anon_sym_POUND_] = ACTIONS(1959), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1962), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1964), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1962), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_POUND_CARET] = ACTIONS(1970), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(1976), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(157), + [sym_dis_expr] = STATE(157), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(157), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1927), + [sym_comment] = ACTIONS(1927), + [anon_sym_POUND_] = ACTIONS(1764), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1930), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1769), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1930), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1772), + [anon_sym_POUND_CARET] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(1781), + [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(1962), - [anon_sym_cl] = ACTIONS(1978), - [aux_sym_accumulation_verb_token1] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1981), - [anon_sym_and] = ACTIONS(1981), - [anon_sym_as] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1981), - [anon_sym_do] = ACTIONS(1981), - [anon_sym_while] = ACTIONS(1981), - [anon_sym_until] = ACTIONS(1981), - [anon_sym_repeat] = ACTIONS(1981), - [anon_sym_when] = ACTIONS(1981), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_unless] = ACTIONS(1981), - [anon_sym_always] = ACTIONS(1981), - [anon_sym_thereis] = ACTIONS(1981), - [anon_sym_never] = ACTIONS(1981), - [anon_sym_else] = ACTIONS(1981), - [anon_sym_finally] = ACTIONS(1981), - [anon_sym_return] = ACTIONS(1981), - [anon_sym_initially] = ACTIONS(1981), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1983), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1930), + [anon_sym_cl] = ACTIONS(1783), + [aux_sym_accumulation_verb_token1] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1786), + [anon_sym_and] = ACTIONS(1786), + [anon_sym_as] = ACTIONS(1786), + [anon_sym_with] = ACTIONS(1786), + [anon_sym_do] = ACTIONS(1786), + [anon_sym_while] = ACTIONS(1786), + [anon_sym_until] = ACTIONS(1786), + [anon_sym_repeat] = ACTIONS(1786), + [anon_sym_when] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1786), + [anon_sym_unless] = ACTIONS(1786), + [anon_sym_always] = ACTIONS(1786), + [anon_sym_thereis] = ACTIONS(1786), + [anon_sym_never] = ACTIONS(1786), + [anon_sym_else] = ACTIONS(1786), + [anon_sym_finally] = ACTIONS(1786), + [anon_sym_return] = ACTIONS(1786), + [anon_sym_initially] = ACTIONS(1786), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1932), + [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(233), - [sym_dis_expr] = STATE(233), - [sym__form] = STATE(2495), - [sym_num_lit] = STATE(2495), - [sym_kwd_lit] = STATE(2495), - [sym_str_lit] = STATE(2495), - [sym_char_lit] = STATE(2495), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2495), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2495), - [sym_set_lit] = STATE(2495), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2495), - [sym_splicing_read_cond_lit] = STATE(2495), - [sym_var_quoting_lit] = STATE(2495), - [sym_quoting_lit] = STATE(2495), - [sym_syn_quoting_lit] = STATE(2495), - [sym_unquote_splicing_lit] = STATE(2495), - [sym_unquoting_lit] = STATE(2495), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2495), - [sym_package_lit] = STATE(2495), - [sym_include_reader_macro] = STATE(2495), - [sym_complex_num_lit] = STATE(2495), - [aux_sym_dis_expr_repeat1] = STATE(233), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1985), - [sym_comment] = ACTIONS(1985), - [anon_sym_POUND_] = ACTIONS(1959), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1988), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1964), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1988), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_POUND_CARET] = ACTIONS(1970), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(1976), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(1934), + [sym_comment] = ACTIONS(1934), + [anon_sym_POUND_] = ACTIONS(1937), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1940), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1942), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1940), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_POUND_CARET] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1951), + [anon_sym_RPAREN] = ACTIONS(1954), + [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(1988), - [anon_sym_cl] = ACTIONS(1978), - [aux_sym_accumulation_verb_token1] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1981), - [anon_sym_and] = ACTIONS(1981), - [anon_sym_as] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1981), - [anon_sym_do] = ACTIONS(1981), - [anon_sym_while] = ACTIONS(1981), - [anon_sym_until] = ACTIONS(1981), - [anon_sym_repeat] = ACTIONS(1981), - [anon_sym_when] = ACTIONS(1981), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_unless] = ACTIONS(1981), - [anon_sym_always] = ACTIONS(1981), - [anon_sym_thereis] = ACTIONS(1981), - [anon_sym_never] = ACTIONS(1981), - [anon_sym_else] = ACTIONS(1981), - [anon_sym_finally] = ACTIONS(1981), - [anon_sym_return] = ACTIONS(1981), - [anon_sym_initially] = ACTIONS(1981), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(1990), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1940), + [anon_sym_cl] = ACTIONS(1956), + [aux_sym_accumulation_verb_token1] = ACTIONS(1959), + [anon_sym_for] = ACTIONS(1959), + [anon_sym_and] = ACTIONS(1959), + [anon_sym_as] = ACTIONS(1959), + [anon_sym_with] = ACTIONS(1959), + [anon_sym_do] = ACTIONS(1959), + [anon_sym_while] = ACTIONS(1959), + [anon_sym_until] = ACTIONS(1959), + [anon_sym_repeat] = ACTIONS(1959), + [anon_sym_when] = ACTIONS(1959), + [anon_sym_if] = ACTIONS(1959), + [anon_sym_unless] = ACTIONS(1959), + [anon_sym_always] = ACTIONS(1959), + [anon_sym_thereis] = ACTIONS(1959), + [anon_sym_never] = ACTIONS(1959), + [anon_sym_else] = ACTIONS(1959), + [anon_sym_finally] = ACTIONS(1959), + [anon_sym_return] = ACTIONS(1959), + [anon_sym_initially] = ACTIONS(1959), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1961), + [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(237), - [sym_dis_expr] = STATE(237), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2490), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2490), - [sym_set_lit] = STATE(2490), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(237), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1992), - [sym_comment] = ACTIONS(1992), - [anon_sym_POUND_] = ACTIONS(1995), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(1998), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2000), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(1998), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2003), - [anon_sym_POUND_CARET] = ACTIONS(2006), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_RPAREN] = ACTIONS(2012), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(1797), + [sym_comment] = ACTIONS(1797), + [anon_sym_POUND_] = ACTIONS(1800), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1963), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1805), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1963), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1808), + [anon_sym_POUND_CARET] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1814), + [anon_sym_RPAREN] = ACTIONS(1817), + [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(1998), - [anon_sym_cl] = ACTIONS(2014), - [aux_sym_accumulation_verb_token1] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_and] = ACTIONS(2017), - [anon_sym_as] = ACTIONS(2017), - [anon_sym_with] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_until] = ACTIONS(2017), - [anon_sym_repeat] = ACTIONS(2017), - [anon_sym_when] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_unless] = ACTIONS(2017), - [anon_sym_always] = ACTIONS(2017), - [anon_sym_thereis] = ACTIONS(2017), - [anon_sym_never] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_finally] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_initially] = ACTIONS(2017), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2019), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1963), + [anon_sym_cl] = ACTIONS(1819), + [aux_sym_accumulation_verb_token1] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_with] = ACTIONS(1822), + [anon_sym_do] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_until] = ACTIONS(1822), + [anon_sym_repeat] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_unless] = ACTIONS(1822), + [anon_sym_always] = ACTIONS(1822), + [anon_sym_thereis] = ACTIONS(1822), + [anon_sym_never] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_finally] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_initially] = ACTIONS(1822), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1965), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2489), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2489), - [sym_set_lit] = STATE(2489), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2021), - [sym_comment] = ACTIONS(2021), - [anon_sym_POUND_] = ACTIONS(1995), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2024), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2000), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2024), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2003), - [anon_sym_POUND_CARET] = ACTIONS(2006), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_RPAREN] = ACTIONS(2012), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(222), + [sym_dis_expr] = STATE(222), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(222), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1967), + [sym_comment] = ACTIONS(1967), + [anon_sym_POUND_] = ACTIONS(1800), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1970), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1805), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1970), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1808), + [anon_sym_POUND_CARET] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1814), + [anon_sym_RPAREN] = ACTIONS(1817), + [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(2024), - [anon_sym_cl] = ACTIONS(2014), - [aux_sym_accumulation_verb_token1] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_and] = ACTIONS(2017), - [anon_sym_as] = ACTIONS(2017), - [anon_sym_with] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_until] = ACTIONS(2017), - [anon_sym_repeat] = ACTIONS(2017), - [anon_sym_when] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_unless] = ACTIONS(2017), - [anon_sym_always] = ACTIONS(2017), - [anon_sym_thereis] = ACTIONS(2017), - [anon_sym_never] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_finally] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_initially] = ACTIONS(2017), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2026), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1970), + [anon_sym_cl] = ACTIONS(1819), + [aux_sym_accumulation_verb_token1] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_with] = ACTIONS(1822), + [anon_sym_do] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_until] = ACTIONS(1822), + [anon_sym_repeat] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_unless] = ACTIONS(1822), + [anon_sym_always] = ACTIONS(1822), + [anon_sym_thereis] = ACTIONS(1822), + [anon_sym_never] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_finally] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_initially] = ACTIONS(1822), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1972), + [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(146), - [sym_dis_expr] = STATE(146), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2476), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2476), - [sym_set_lit] = STATE(2476), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(146), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2028), - [sym_comment] = ACTIONS(2028), - [anon_sym_POUND_] = ACTIONS(1995), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2031), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2000), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2031), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2003), - [anon_sym_POUND_CARET] = ACTIONS(2006), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_RPAREN] = ACTIONS(2012), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(233), + [sym_dis_expr] = STATE(233), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(233), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1974), + [sym_comment] = ACTIONS(1974), + [anon_sym_POUND_] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1977), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1848), + [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(1851), + [anon_sym_POUND_CARET] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1860), + [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(2031), - [anon_sym_cl] = ACTIONS(2014), - [aux_sym_accumulation_verb_token1] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_and] = ACTIONS(2017), - [anon_sym_as] = ACTIONS(2017), - [anon_sym_with] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_until] = ACTIONS(2017), - [anon_sym_repeat] = ACTIONS(2017), - [anon_sym_when] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_unless] = ACTIONS(2017), - [anon_sym_always] = ACTIONS(2017), - [anon_sym_thereis] = ACTIONS(2017), - [anon_sym_never] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_finally] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_initially] = ACTIONS(2017), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2033), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1977), + [anon_sym_cl] = ACTIONS(1862), + [aux_sym_accumulation_verb_token1] = ACTIONS(1865), + [anon_sym_for] = ACTIONS(1865), + [anon_sym_and] = ACTIONS(1865), + [anon_sym_as] = ACTIONS(1865), + [anon_sym_with] = ACTIONS(1865), + [anon_sym_do] = ACTIONS(1865), + [anon_sym_while] = ACTIONS(1865), + [anon_sym_until] = ACTIONS(1865), + [anon_sym_repeat] = ACTIONS(1865), + [anon_sym_when] = ACTIONS(1865), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_unless] = ACTIONS(1865), + [anon_sym_always] = ACTIONS(1865), + [anon_sym_thereis] = ACTIONS(1865), + [anon_sym_never] = ACTIONS(1865), + [anon_sym_else] = ACTIONS(1865), + [anon_sym_finally] = ACTIONS(1865), + [anon_sym_return] = ACTIONS(1865), + [anon_sym_initially] = ACTIONS(1865), + [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), }, [83] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2317), - [sym_num_lit] = STATE(2317), - [sym_kwd_lit] = STATE(2317), - [sym_str_lit] = STATE(2317), - [sym_char_lit] = STATE(2317), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2317), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2317), - [sym_set_lit] = STATE(2317), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2317), - [sym_splicing_read_cond_lit] = STATE(2317), - [sym_var_quoting_lit] = STATE(2317), - [sym_quoting_lit] = STATE(2317), - [sym_syn_quoting_lit] = STATE(2317), - [sym_unquote_splicing_lit] = STATE(2317), - [sym_unquoting_lit] = STATE(2317), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2317), - [sym_package_lit] = STATE(2317), - [sym_include_reader_macro] = STATE(2317), - [sym_complex_num_lit] = STATE(2317), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2035), - [sym_comment] = ACTIONS(2035), - [anon_sym_POUND_] = ACTIONS(2038), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2041), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2043), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2041), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_POUND_CARET] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2052), - [anon_sym_RPAREN] = ACTIONS(2055), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2166), + [sym_num_lit] = STATE(2166), + [sym_kwd_lit] = STATE(2166), + [sym_str_lit] = STATE(2166), + [sym_char_lit] = STATE(2166), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2166), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2166), + [sym_set_lit] = STATE(2166), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2166), + [sym_splicing_read_cond_lit] = STATE(2166), + [sym_var_quoting_lit] = STATE(2166), + [sym_quoting_lit] = STATE(2166), + [sym_syn_quoting_lit] = STATE(2166), + [sym_unquote_splicing_lit] = STATE(2166), + [sym_unquoting_lit] = STATE(2166), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2166), + [sym_package_lit] = STATE(2166), + [sym_include_reader_macro] = STATE(2166), + [sym_complex_num_lit] = STATE(2166), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1873), + [sym_comment] = ACTIONS(1873), + [anon_sym_POUND_] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1981), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1981), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_POUND_CARET] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1860), + [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(2041), - [anon_sym_cl] = ACTIONS(2057), - [aux_sym_accumulation_verb_token1] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_and] = ACTIONS(2060), - [anon_sym_as] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_until] = ACTIONS(2060), - [anon_sym_repeat] = ACTIONS(2060), - [anon_sym_when] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_unless] = ACTIONS(2060), - [anon_sym_always] = ACTIONS(2060), - [anon_sym_thereis] = ACTIONS(2060), - [anon_sym_never] = ACTIONS(2060), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_finally] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_initially] = ACTIONS(2060), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2062), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1981), + [anon_sym_cl] = ACTIONS(1862), + [aux_sym_accumulation_verb_token1] = ACTIONS(1865), + [anon_sym_for] = ACTIONS(1865), + [anon_sym_and] = ACTIONS(1865), + [anon_sym_as] = ACTIONS(1865), + [anon_sym_with] = ACTIONS(1865), + [anon_sym_do] = ACTIONS(1865), + [anon_sym_while] = ACTIONS(1865), + [anon_sym_until] = ACTIONS(1865), + [anon_sym_repeat] = ACTIONS(1865), + [anon_sym_when] = ACTIONS(1865), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_unless] = ACTIONS(1865), + [anon_sym_always] = ACTIONS(1865), + [anon_sym_thereis] = ACTIONS(1865), + [anon_sym_never] = ACTIONS(1865), + [anon_sym_else] = ACTIONS(1865), + [anon_sym_finally] = ACTIONS(1865), + [anon_sym_return] = ACTIONS(1865), + [anon_sym_initially] = ACTIONS(1865), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1983), + [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(201), - [sym_dis_expr] = STATE(201), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2464), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2464), - [sym_set_lit] = STATE(2464), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(201), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2064), - [sym_comment] = ACTIONS(2064), - [anon_sym_POUND_] = ACTIONS(1959), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2067), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1964), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2067), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_POUND_CARET] = ACTIONS(1970), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(1976), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2426), + [sym_num_lit] = STATE(2426), + [sym_kwd_lit] = STATE(2426), + [sym_str_lit] = STATE(2426), + [sym_char_lit] = STATE(2426), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2426), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2426), + [sym_set_lit] = STATE(2426), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2426), + [sym_splicing_read_cond_lit] = STATE(2426), + [sym_var_quoting_lit] = STATE(2426), + [sym_quoting_lit] = STATE(2426), + [sym_syn_quoting_lit] = STATE(2426), + [sym_unquote_splicing_lit] = STATE(2426), + [sym_unquoting_lit] = STATE(2426), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2426), + [sym_package_lit] = STATE(2426), + [sym_include_reader_macro] = STATE(2426), + [sym_complex_num_lit] = STATE(2426), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1985), + [sym_comment] = ACTIONS(1985), + [anon_sym_POUND_] = ACTIONS(1988), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1991), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1993), + [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(1996), + [anon_sym_POUND_CARET] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(2002), + [anon_sym_RPAREN] = ACTIONS(2005), + [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(2067), - [anon_sym_cl] = ACTIONS(1978), - [aux_sym_accumulation_verb_token1] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1981), - [anon_sym_and] = ACTIONS(1981), - [anon_sym_as] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1981), - [anon_sym_do] = ACTIONS(1981), - [anon_sym_while] = ACTIONS(1981), - [anon_sym_until] = ACTIONS(1981), - [anon_sym_repeat] = ACTIONS(1981), - [anon_sym_when] = ACTIONS(1981), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_unless] = ACTIONS(1981), - [anon_sym_always] = ACTIONS(1981), - [anon_sym_thereis] = ACTIONS(1981), - [anon_sym_never] = ACTIONS(1981), - [anon_sym_else] = ACTIONS(1981), - [anon_sym_finally] = ACTIONS(1981), - [anon_sym_return] = ACTIONS(1981), - [anon_sym_initially] = ACTIONS(1981), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2069), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(1991), + [anon_sym_cl] = ACTIONS(2007), + [aux_sym_accumulation_verb_token1] = ACTIONS(2010), + [anon_sym_for] = ACTIONS(2010), + [anon_sym_and] = ACTIONS(2010), + [anon_sym_as] = ACTIONS(2010), + [anon_sym_with] = ACTIONS(2010), + [anon_sym_do] = ACTIONS(2010), + [anon_sym_while] = ACTIONS(2010), + [anon_sym_until] = ACTIONS(2010), + [anon_sym_repeat] = ACTIONS(2010), + [anon_sym_when] = ACTIONS(2010), + [anon_sym_if] = ACTIONS(2010), + [anon_sym_unless] = ACTIONS(2010), + [anon_sym_always] = ACTIONS(2010), + [anon_sym_thereis] = ACTIONS(2010), + [anon_sym_never] = ACTIONS(2010), + [anon_sym_else] = ACTIONS(2010), + [anon_sym_finally] = ACTIONS(2010), + [anon_sym_return] = ACTIONS(2010), + [anon_sym_initially] = ACTIONS(2010), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2012), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2463), - [sym_num_lit] = STATE(2463), - [sym_kwd_lit] = STATE(2463), - [sym_str_lit] = STATE(2463), - [sym_char_lit] = STATE(2463), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2463), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2463), - [sym_set_lit] = STATE(2463), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2463), - [sym_splicing_read_cond_lit] = STATE(2463), - [sym_var_quoting_lit] = STATE(2463), - [sym_quoting_lit] = STATE(2463), - [sym_syn_quoting_lit] = STATE(2463), - [sym_unquote_splicing_lit] = STATE(2463), - [sym_unquoting_lit] = STATE(2463), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2463), - [sym_package_lit] = STATE(2463), - [sym_include_reader_macro] = STATE(2463), - [sym_complex_num_lit] = STATE(2463), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1956), - [sym_comment] = ACTIONS(1956), - [anon_sym_POUND_] = ACTIONS(1959), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2071), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1964), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2071), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_POUND_CARET] = ACTIONS(1970), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(1976), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(260), + [sym_dis_expr] = STATE(260), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(260), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2014), + [sym_comment] = ACTIONS(2014), + [anon_sym_POUND_] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2017), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1848), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2017), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_POUND_CARET] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1860), + [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(2071), - [anon_sym_cl] = ACTIONS(1978), - [aux_sym_accumulation_verb_token1] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1981), - [anon_sym_and] = ACTIONS(1981), - [anon_sym_as] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1981), - [anon_sym_do] = ACTIONS(1981), - [anon_sym_while] = ACTIONS(1981), - [anon_sym_until] = ACTIONS(1981), - [anon_sym_repeat] = ACTIONS(1981), - [anon_sym_when] = ACTIONS(1981), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_unless] = ACTIONS(1981), - [anon_sym_always] = ACTIONS(1981), - [anon_sym_thereis] = ACTIONS(1981), - [anon_sym_never] = ACTIONS(1981), - [anon_sym_else] = ACTIONS(1981), - [anon_sym_finally] = ACTIONS(1981), - [anon_sym_return] = ACTIONS(1981), - [anon_sym_initially] = ACTIONS(1981), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2073), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2017), + [anon_sym_cl] = ACTIONS(1862), + [aux_sym_accumulation_verb_token1] = ACTIONS(1865), + [anon_sym_for] = ACTIONS(1865), + [anon_sym_and] = ACTIONS(1865), + [anon_sym_as] = ACTIONS(1865), + [anon_sym_with] = ACTIONS(1865), + [anon_sym_do] = ACTIONS(1865), + [anon_sym_while] = ACTIONS(1865), + [anon_sym_until] = ACTIONS(1865), + [anon_sym_repeat] = ACTIONS(1865), + [anon_sym_when] = ACTIONS(1865), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_unless] = ACTIONS(1865), + [anon_sym_always] = ACTIONS(1865), + [anon_sym_thereis] = ACTIONS(1865), + [anon_sym_never] = ACTIONS(1865), + [anon_sym_else] = ACTIONS(1865), + [anon_sym_finally] = ACTIONS(1865), + [anon_sym_return] = ACTIONS(1865), + [anon_sym_initially] = ACTIONS(1865), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2019), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2315), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2315), - [sym_set_lit] = STATE(2315), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2035), - [sym_comment] = ACTIONS(2035), - [anon_sym_POUND_] = ACTIONS(2038), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2075), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2043), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2075), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_POUND_CARET] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2052), - [anon_sym_RPAREN] = ACTIONS(2055), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(242), + [sym_dis_expr] = STATE(242), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(242), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2021), + [sym_comment] = ACTIONS(2021), + [anon_sym_POUND_] = ACTIONS(1800), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2024), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1805), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2024), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1808), + [anon_sym_POUND_CARET] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1814), + [anon_sym_RPAREN] = ACTIONS(1817), + [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(2075), - [anon_sym_cl] = ACTIONS(2057), - [aux_sym_accumulation_verb_token1] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_and] = ACTIONS(2060), - [anon_sym_as] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_until] = ACTIONS(2060), - [anon_sym_repeat] = ACTIONS(2060), - [anon_sym_when] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_unless] = ACTIONS(2060), - [anon_sym_always] = ACTIONS(2060), - [anon_sym_thereis] = ACTIONS(2060), - [anon_sym_never] = ACTIONS(2060), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_finally] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_initially] = ACTIONS(2060), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2077), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2024), + [anon_sym_cl] = ACTIONS(1819), + [aux_sym_accumulation_verb_token1] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_with] = ACTIONS(1822), + [anon_sym_do] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_until] = ACTIONS(1822), + [anon_sym_repeat] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_unless] = ACTIONS(1822), + [anon_sym_always] = ACTIONS(1822), + [anon_sym_thereis] = ACTIONS(1822), + [anon_sym_never] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_finally] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_initially] = ACTIONS(1822), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2026), + [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(250), - [sym_dis_expr] = STATE(250), - [sym__form] = STATE(2456), - [sym_num_lit] = STATE(2456), - [sym_kwd_lit] = STATE(2456), - [sym_str_lit] = STATE(2456), - [sym_char_lit] = STATE(2456), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2456), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2456), - [sym_set_lit] = STATE(2456), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2456), - [sym_splicing_read_cond_lit] = STATE(2456), - [sym_var_quoting_lit] = STATE(2456), - [sym_quoting_lit] = STATE(2456), - [sym_syn_quoting_lit] = STATE(2456), - [sym_unquote_splicing_lit] = STATE(2456), - [sym_unquoting_lit] = STATE(2456), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2456), - [sym_package_lit] = STATE(2456), - [sym_include_reader_macro] = STATE(2456), - [sym_complex_num_lit] = STATE(2456), - [aux_sym_dis_expr_repeat1] = STATE(250), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2079), - [sym_comment] = ACTIONS(2079), - [anon_sym_POUND_] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2085), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2087), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2085), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2090), - [anon_sym_POUND_CARET] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_RPAREN] = ACTIONS(2099), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(1797), + [sym_comment] = ACTIONS(1797), + [anon_sym_POUND_] = ACTIONS(1800), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2028), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1805), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2028), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1808), + [anon_sym_POUND_CARET] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1814), + [anon_sym_RPAREN] = ACTIONS(1817), + [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(2085), - [anon_sym_cl] = ACTIONS(2101), - [aux_sym_accumulation_verb_token1] = ACTIONS(2104), - [anon_sym_for] = ACTIONS(2104), - [anon_sym_and] = ACTIONS(2104), - [anon_sym_as] = ACTIONS(2104), - [anon_sym_with] = ACTIONS(2104), - [anon_sym_do] = ACTIONS(2104), - [anon_sym_while] = ACTIONS(2104), - [anon_sym_until] = ACTIONS(2104), - [anon_sym_repeat] = ACTIONS(2104), - [anon_sym_when] = ACTIONS(2104), - [anon_sym_if] = ACTIONS(2104), - [anon_sym_unless] = ACTIONS(2104), - [anon_sym_always] = ACTIONS(2104), - [anon_sym_thereis] = ACTIONS(2104), - [anon_sym_never] = ACTIONS(2104), - [anon_sym_else] = ACTIONS(2104), - [anon_sym_finally] = ACTIONS(2104), - [anon_sym_return] = ACTIONS(2104), - [anon_sym_initially] = ACTIONS(2104), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2106), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2028), + [anon_sym_cl] = ACTIONS(1819), + [aux_sym_accumulation_verb_token1] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_and] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1822), + [anon_sym_with] = ACTIONS(1822), + [anon_sym_do] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_until] = ACTIONS(1822), + [anon_sym_repeat] = ACTIONS(1822), + [anon_sym_when] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_unless] = ACTIONS(1822), + [anon_sym_always] = ACTIONS(1822), + [anon_sym_thereis] = ACTIONS(1822), + [anon_sym_never] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_finally] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_initially] = ACTIONS(1822), + [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), }, [88] = { - [sym__gap] = STATE(108), - [sym_dis_expr] = STATE(108), - [sym__form] = STATE(2314), - [sym_num_lit] = STATE(2314), - [sym_kwd_lit] = STATE(2314), - [sym_str_lit] = STATE(2314), - [sym_char_lit] = STATE(2314), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2314), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2314), - [sym_set_lit] = STATE(2314), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2314), - [sym_splicing_read_cond_lit] = STATE(2314), - [sym_var_quoting_lit] = STATE(2314), - [sym_quoting_lit] = STATE(2314), - [sym_syn_quoting_lit] = STATE(2314), - [sym_unquote_splicing_lit] = STATE(2314), - [sym_unquoting_lit] = STATE(2314), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2314), - [sym_package_lit] = STATE(2314), - [sym_include_reader_macro] = STATE(2314), - [sym_complex_num_lit] = STATE(2314), - [aux_sym_dis_expr_repeat1] = STATE(108), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2108), - [sym_comment] = ACTIONS(2108), - [anon_sym_POUND_] = ACTIONS(2038), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2111), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2043), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2111), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_POUND_CARET] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2052), - [anon_sym_RPAREN] = ACTIONS(2055), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2316), + [sym_num_lit] = STATE(2316), + [sym_kwd_lit] = STATE(2316), + [sym_str_lit] = STATE(2316), + [sym_char_lit] = STATE(2316), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2316), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2316), + [sym_set_lit] = STATE(2316), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2316), + [sym_splicing_read_cond_lit] = STATE(2316), + [sym_var_quoting_lit] = STATE(2316), + [sym_quoting_lit] = STATE(2316), + [sym_syn_quoting_lit] = STATE(2316), + [sym_unquote_splicing_lit] = STATE(2316), + [sym_unquoting_lit] = STATE(2316), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2316), + [sym_package_lit] = STATE(2316), + [sym_include_reader_macro] = STATE(2316), + [sym_complex_num_lit] = STATE(2316), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1985), + [sym_comment] = ACTIONS(1985), + [anon_sym_POUND_] = ACTIONS(1988), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2032), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1993), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2032), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1996), + [anon_sym_POUND_CARET] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(2002), + [anon_sym_RPAREN] = ACTIONS(2005), + [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(2111), - [anon_sym_cl] = ACTIONS(2057), - [aux_sym_accumulation_verb_token1] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_and] = ACTIONS(2060), - [anon_sym_as] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_until] = ACTIONS(2060), - [anon_sym_repeat] = ACTIONS(2060), - [anon_sym_when] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_unless] = ACTIONS(2060), - [anon_sym_always] = ACTIONS(2060), - [anon_sym_thereis] = ACTIONS(2060), - [anon_sym_never] = ACTIONS(2060), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_finally] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_initially] = ACTIONS(2060), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2113), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2032), + [anon_sym_cl] = ACTIONS(2007), + [aux_sym_accumulation_verb_token1] = ACTIONS(2010), + [anon_sym_for] = ACTIONS(2010), + [anon_sym_and] = ACTIONS(2010), + [anon_sym_as] = ACTIONS(2010), + [anon_sym_with] = ACTIONS(2010), + [anon_sym_do] = ACTIONS(2010), + [anon_sym_while] = ACTIONS(2010), + [anon_sym_until] = ACTIONS(2010), + [anon_sym_repeat] = ACTIONS(2010), + [anon_sym_when] = ACTIONS(2010), + [anon_sym_if] = ACTIONS(2010), + [anon_sym_unless] = ACTIONS(2010), + [anon_sym_always] = ACTIONS(2010), + [anon_sym_thereis] = ACTIONS(2010), + [anon_sym_never] = ACTIONS(2010), + [anon_sym_else] = ACTIONS(2010), + [anon_sym_finally] = ACTIONS(2010), + [anon_sym_return] = ACTIONS(2010), + [anon_sym_initially] = ACTIONS(2010), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2034), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2455), - [sym_num_lit] = STATE(2455), - [sym_kwd_lit] = STATE(2455), - [sym_str_lit] = STATE(2455), - [sym_char_lit] = STATE(2455), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2455), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2455), - [sym_set_lit] = STATE(2455), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2455), - [sym_splicing_read_cond_lit] = STATE(2455), - [sym_var_quoting_lit] = STATE(2455), - [sym_quoting_lit] = STATE(2455), - [sym_syn_quoting_lit] = STATE(2455), - [sym_unquote_splicing_lit] = STATE(2455), - [sym_unquoting_lit] = STATE(2455), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2455), - [sym_package_lit] = STATE(2455), - [sym_include_reader_macro] = STATE(2455), - [sym_complex_num_lit] = STATE(2455), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2115), - [sym_comment] = ACTIONS(2115), - [anon_sym_POUND_] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2118), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2087), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2118), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2090), - [anon_sym_POUND_CARET] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_RPAREN] = ACTIONS(2099), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(264), + [sym_dis_expr] = STATE(264), + [sym__form] = STATE(2213), + [sym_num_lit] = STATE(2213), + [sym_kwd_lit] = STATE(2213), + [sym_str_lit] = STATE(2213), + [sym_char_lit] = STATE(2213), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2213), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2213), + [sym_set_lit] = STATE(2213), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2213), + [sym_splicing_read_cond_lit] = STATE(2213), + [sym_var_quoting_lit] = STATE(2213), + [sym_quoting_lit] = STATE(2213), + [sym_syn_quoting_lit] = STATE(2213), + [sym_unquote_splicing_lit] = STATE(2213), + [sym_unquoting_lit] = STATE(2213), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2213), + [sym_package_lit] = STATE(2213), + [sym_include_reader_macro] = STATE(2213), + [sym_complex_num_lit] = STATE(2213), + [aux_sym_dis_expr_repeat1] = STATE(264), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2036), + [sym_comment] = ACTIONS(2036), + [anon_sym_POUND_] = ACTIONS(1988), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2039), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1993), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2039), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1996), + [anon_sym_POUND_CARET] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(2002), + [anon_sym_RPAREN] = ACTIONS(2005), + [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(2118), - [anon_sym_cl] = ACTIONS(2101), - [aux_sym_accumulation_verb_token1] = ACTIONS(2104), - [anon_sym_for] = ACTIONS(2104), - [anon_sym_and] = ACTIONS(2104), - [anon_sym_as] = ACTIONS(2104), - [anon_sym_with] = ACTIONS(2104), - [anon_sym_do] = ACTIONS(2104), - [anon_sym_while] = ACTIONS(2104), - [anon_sym_until] = ACTIONS(2104), - [anon_sym_repeat] = ACTIONS(2104), - [anon_sym_when] = ACTIONS(2104), - [anon_sym_if] = ACTIONS(2104), - [anon_sym_unless] = ACTIONS(2104), - [anon_sym_always] = ACTIONS(2104), - [anon_sym_thereis] = ACTIONS(2104), - [anon_sym_never] = ACTIONS(2104), - [anon_sym_else] = ACTIONS(2104), - [anon_sym_finally] = ACTIONS(2104), - [anon_sym_return] = ACTIONS(2104), - [anon_sym_initially] = ACTIONS(2104), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2120), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2039), + [anon_sym_cl] = ACTIONS(2007), + [aux_sym_accumulation_verb_token1] = ACTIONS(2010), + [anon_sym_for] = ACTIONS(2010), + [anon_sym_and] = ACTIONS(2010), + [anon_sym_as] = ACTIONS(2010), + [anon_sym_with] = ACTIONS(2010), + [anon_sym_do] = ACTIONS(2010), + [anon_sym_while] = ACTIONS(2010), + [anon_sym_until] = ACTIONS(2010), + [anon_sym_repeat] = ACTIONS(2010), + [anon_sym_when] = ACTIONS(2010), + [anon_sym_if] = ACTIONS(2010), + [anon_sym_unless] = ACTIONS(2010), + [anon_sym_always] = ACTIONS(2010), + [anon_sym_thereis] = ACTIONS(2010), + [anon_sym_never] = ACTIONS(2010), + [anon_sym_else] = ACTIONS(2010), + [anon_sym_finally] = ACTIONS(2010), + [anon_sym_return] = ACTIONS(2010), + [anon_sym_initially] = ACTIONS(2010), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2041), + [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(227), - [sym_dis_expr] = STATE(227), - [sym__form] = STATE(2434), - [sym_num_lit] = STATE(2434), - [sym_kwd_lit] = STATE(2434), - [sym_str_lit] = STATE(2434), - [sym_char_lit] = STATE(2434), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2434), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2434), - [sym_set_lit] = STATE(2434), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2434), - [sym_splicing_read_cond_lit] = STATE(2434), - [sym_var_quoting_lit] = STATE(2434), - [sym_quoting_lit] = STATE(2434), - [sym_syn_quoting_lit] = STATE(2434), - [sym_unquote_splicing_lit] = STATE(2434), - [sym_unquoting_lit] = STATE(2434), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2434), - [sym_package_lit] = STATE(2434), - [sym_include_reader_macro] = STATE(2434), - [sym_complex_num_lit] = STATE(2434), - [aux_sym_dis_expr_repeat1] = STATE(227), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2122), - [sym_comment] = ACTIONS(2122), - [anon_sym_POUND_] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2125), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2087), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2125), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2090), - [anon_sym_POUND_CARET] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_RPAREN] = ACTIONS(2099), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(265), + [sym_dis_expr] = STATE(265), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(265), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2043), + [sym_comment] = ACTIONS(2043), + [anon_sym_POUND_] = ACTIONS(2046), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2049), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2051), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2049), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2054), + [anon_sym_POUND_CARET] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2060), + [anon_sym_RPAREN] = ACTIONS(2063), + [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(2125), - [anon_sym_cl] = ACTIONS(2101), - [aux_sym_accumulation_verb_token1] = ACTIONS(2104), - [anon_sym_for] = ACTIONS(2104), - [anon_sym_and] = ACTIONS(2104), - [anon_sym_as] = ACTIONS(2104), - [anon_sym_with] = ACTIONS(2104), - [anon_sym_do] = ACTIONS(2104), - [anon_sym_while] = ACTIONS(2104), - [anon_sym_until] = ACTIONS(2104), - [anon_sym_repeat] = ACTIONS(2104), - [anon_sym_when] = ACTIONS(2104), - [anon_sym_if] = ACTIONS(2104), - [anon_sym_unless] = ACTIONS(2104), - [anon_sym_always] = ACTIONS(2104), - [anon_sym_thereis] = ACTIONS(2104), - [anon_sym_never] = ACTIONS(2104), - [anon_sym_else] = ACTIONS(2104), - [anon_sym_finally] = ACTIONS(2104), - [anon_sym_return] = ACTIONS(2104), - [anon_sym_initially] = ACTIONS(2104), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2127), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2049), + [anon_sym_cl] = ACTIONS(2065), + [aux_sym_accumulation_verb_token1] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_and] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_until] = ACTIONS(2068), + [anon_sym_repeat] = ACTIONS(2068), + [anon_sym_when] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_unless] = ACTIONS(2068), + [anon_sym_always] = ACTIONS(2068), + [anon_sym_thereis] = ACTIONS(2068), + [anon_sym_never] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_finally] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_initially] = ACTIONS(2068), + [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), }, [91] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2397), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2397), - [sym_set_lit] = STATE(2397), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1599), - [sym_comment] = ACTIONS(1599), - [anon_sym_POUND_] = ACTIONS(1602), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2129), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1607), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2129), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1610), - [anon_sym_POUND_CARET] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_RPAREN] = ACTIONS(1619), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2072), + [sym_comment] = ACTIONS(2072), + [anon_sym_POUND_] = ACTIONS(2046), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2075), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2051), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2075), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2054), + [anon_sym_POUND_CARET] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2060), + [anon_sym_RPAREN] = ACTIONS(2063), + [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(2129), - [anon_sym_cl] = ACTIONS(1621), - [aux_sym_accumulation_verb_token1] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1624), - [anon_sym_and] = ACTIONS(1624), - [anon_sym_as] = ACTIONS(1624), - [anon_sym_with] = ACTIONS(1624), - [anon_sym_do] = ACTIONS(1624), - [anon_sym_while] = ACTIONS(1624), - [anon_sym_until] = ACTIONS(1624), - [anon_sym_repeat] = ACTIONS(1624), - [anon_sym_when] = ACTIONS(1624), - [anon_sym_if] = ACTIONS(1624), - [anon_sym_unless] = ACTIONS(1624), - [anon_sym_always] = ACTIONS(1624), - [anon_sym_thereis] = ACTIONS(1624), - [anon_sym_never] = ACTIONS(1624), - [anon_sym_else] = ACTIONS(1624), - [anon_sym_finally] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_initially] = ACTIONS(1624), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2131), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2075), + [anon_sym_cl] = ACTIONS(2065), + [aux_sym_accumulation_verb_token1] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_and] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_until] = ACTIONS(2068), + [anon_sym_repeat] = ACTIONS(2068), + [anon_sym_when] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_unless] = ACTIONS(2068), + [anon_sym_always] = ACTIONS(2068), + [anon_sym_thereis] = ACTIONS(2068), + [anon_sym_never] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_finally] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_initially] = ACTIONS(2068), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2077), + [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(222), - [sym_dis_expr] = STATE(222), - [sym__form] = STATE(2432), - [sym_num_lit] = STATE(2432), - [sym_kwd_lit] = STATE(2432), - [sym_str_lit] = STATE(2432), - [sym_char_lit] = STATE(2432), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2432), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2432), - [sym_set_lit] = STATE(2432), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2432), - [sym_splicing_read_cond_lit] = STATE(2432), - [sym_var_quoting_lit] = STATE(2432), - [sym_quoting_lit] = STATE(2432), - [sym_syn_quoting_lit] = STATE(2432), - [sym_unquote_splicing_lit] = STATE(2432), - [sym_unquoting_lit] = STATE(2432), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2432), - [sym_package_lit] = STATE(2432), - [sym_include_reader_macro] = STATE(2432), - [sym_complex_num_lit] = STATE(2432), - [aux_sym_dis_expr_repeat1] = STATE(222), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2133), - [sym_comment] = ACTIONS(2133), - [anon_sym_POUND_] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2139), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2141), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2139), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_POUND_CARET] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2153), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(218), + [sym_dis_expr] = STATE(218), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(218), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2079), + [sym_comment] = ACTIONS(2079), + [anon_sym_POUND_] = ACTIONS(2046), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2082), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2051), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2082), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2054), + [anon_sym_POUND_CARET] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2060), + [anon_sym_RPAREN] = ACTIONS(2063), + [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(2139), - [anon_sym_cl] = ACTIONS(2155), - [aux_sym_accumulation_verb_token1] = ACTIONS(2158), - [anon_sym_for] = ACTIONS(2158), - [anon_sym_and] = ACTIONS(2158), - [anon_sym_as] = ACTIONS(2158), - [anon_sym_with] = ACTIONS(2158), - [anon_sym_do] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2158), - [anon_sym_until] = ACTIONS(2158), - [anon_sym_repeat] = ACTIONS(2158), - [anon_sym_when] = ACTIONS(2158), - [anon_sym_if] = ACTIONS(2158), - [anon_sym_unless] = ACTIONS(2158), - [anon_sym_always] = ACTIONS(2158), - [anon_sym_thereis] = ACTIONS(2158), - [anon_sym_never] = ACTIONS(2158), - [anon_sym_else] = ACTIONS(2158), - [anon_sym_finally] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2158), - [anon_sym_initially] = ACTIONS(2158), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2160), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2082), + [anon_sym_cl] = ACTIONS(2065), + [aux_sym_accumulation_verb_token1] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_and] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_until] = ACTIONS(2068), + [anon_sym_repeat] = ACTIONS(2068), + [anon_sym_when] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_unless] = ACTIONS(2068), + [anon_sym_always] = ACTIONS(2068), + [anon_sym_thereis] = ACTIONS(2068), + [anon_sym_never] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_finally] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_initially] = ACTIONS(2068), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2084), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2431), - [sym_num_lit] = STATE(2431), - [sym_kwd_lit] = STATE(2431), - [sym_str_lit] = STATE(2431), - [sym_char_lit] = STATE(2431), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2431), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2431), - [sym_set_lit] = STATE(2431), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2431), - [sym_splicing_read_cond_lit] = STATE(2431), - [sym_var_quoting_lit] = STATE(2431), - [sym_quoting_lit] = STATE(2431), - [sym_syn_quoting_lit] = STATE(2431), - [sym_unquote_splicing_lit] = STATE(2431), - [sym_unquoting_lit] = STATE(2431), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2431), - [sym_package_lit] = STATE(2431), - [sym_include_reader_macro] = STATE(2431), - [sym_complex_num_lit] = STATE(2431), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2162), - [sym_comment] = ACTIONS(2162), - [anon_sym_POUND_] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2165), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2141), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2165), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_POUND_CARET] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2153), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(193), + [sym_dis_expr] = STATE(193), + [sym__form] = STATE(2097), + [sym_num_lit] = STATE(2097), + [sym_kwd_lit] = STATE(2097), + [sym_str_lit] = STATE(2097), + [sym_char_lit] = STATE(2097), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2097), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2097), + [sym_set_lit] = STATE(2097), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2097), + [sym_splicing_read_cond_lit] = STATE(2097), + [sym_var_quoting_lit] = STATE(2097), + [sym_quoting_lit] = STATE(2097), + [sym_syn_quoting_lit] = STATE(2097), + [sym_unquote_splicing_lit] = STATE(2097), + [sym_unquoting_lit] = STATE(2097), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2097), + [sym_package_lit] = STATE(2097), + [sym_include_reader_macro] = STATE(2097), + [sym_complex_num_lit] = STATE(2097), + [aux_sym_dis_expr_repeat1] = STATE(193), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2086), + [sym_comment] = ACTIONS(2086), + [anon_sym_POUND_] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2092), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2094), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2092), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2097), + [anon_sym_POUND_CARET] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_RPAREN] = ACTIONS(2106), + [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(2165), - [anon_sym_cl] = ACTIONS(2155), - [aux_sym_accumulation_verb_token1] = ACTIONS(2158), - [anon_sym_for] = ACTIONS(2158), - [anon_sym_and] = ACTIONS(2158), - [anon_sym_as] = ACTIONS(2158), - [anon_sym_with] = ACTIONS(2158), - [anon_sym_do] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2158), - [anon_sym_until] = ACTIONS(2158), - [anon_sym_repeat] = ACTIONS(2158), - [anon_sym_when] = ACTIONS(2158), - [anon_sym_if] = ACTIONS(2158), - [anon_sym_unless] = ACTIONS(2158), - [anon_sym_always] = ACTIONS(2158), - [anon_sym_thereis] = ACTIONS(2158), - [anon_sym_never] = ACTIONS(2158), - [anon_sym_else] = ACTIONS(2158), - [anon_sym_finally] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2158), - [anon_sym_initially] = ACTIONS(2158), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2167), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2092), + [anon_sym_cl] = ACTIONS(2108), + [aux_sym_accumulation_verb_token1] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_and] = ACTIONS(2111), + [anon_sym_as] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_until] = ACTIONS(2111), + [anon_sym_repeat] = ACTIONS(2111), + [anon_sym_when] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_unless] = ACTIONS(2111), + [anon_sym_always] = ACTIONS(2111), + [anon_sym_thereis] = ACTIONS(2111), + [anon_sym_never] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_initially] = ACTIONS(2111), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2113), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2424), - [sym_num_lit] = STATE(2424), - [sym_kwd_lit] = STATE(2424), - [sym_str_lit] = STATE(2424), - [sym_char_lit] = STATE(2424), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2424), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2424), - [sym_set_lit] = STATE(2424), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2424), - [sym_splicing_read_cond_lit] = STATE(2424), - [sym_var_quoting_lit] = STATE(2424), - [sym_quoting_lit] = STATE(2424), - [sym_syn_quoting_lit] = STATE(2424), - [sym_unquote_splicing_lit] = STATE(2424), - [sym_unquoting_lit] = STATE(2424), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2424), - [sym_package_lit] = STATE(2424), - [sym_include_reader_macro] = STATE(2424), - [sym_complex_num_lit] = STATE(2424), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2169), - [sym_comment] = ACTIONS(2169), - [anon_sym_POUND_] = ACTIONS(2172), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2175), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2177), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2175), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_POUND_CARET] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2189), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(263), + [sym_dis_expr] = STATE(263), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(263), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2115), + [sym_comment] = ACTIONS(2115), + [anon_sym_POUND_] = ACTIONS(2118), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2121), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2123), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2121), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_POUND_CARET] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2132), + [anon_sym_RPAREN] = ACTIONS(2135), + [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(2175), - [anon_sym_cl] = ACTIONS(2191), - [aux_sym_accumulation_verb_token1] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_and] = ACTIONS(2194), - [anon_sym_as] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_until] = ACTIONS(2194), - [anon_sym_repeat] = ACTIONS(2194), - [anon_sym_when] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_unless] = ACTIONS(2194), - [anon_sym_always] = ACTIONS(2194), - [anon_sym_thereis] = ACTIONS(2194), - [anon_sym_never] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_finally] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_initially] = ACTIONS(2194), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2196), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2121), + [anon_sym_cl] = ACTIONS(2137), + [aux_sym_accumulation_verb_token1] = ACTIONS(2140), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_and] = ACTIONS(2140), + [anon_sym_as] = ACTIONS(2140), + [anon_sym_with] = ACTIONS(2140), + [anon_sym_do] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2140), + [anon_sym_until] = ACTIONS(2140), + [anon_sym_repeat] = ACTIONS(2140), + [anon_sym_when] = ACTIONS(2140), + [anon_sym_if] = ACTIONS(2140), + [anon_sym_unless] = ACTIONS(2140), + [anon_sym_always] = ACTIONS(2140), + [anon_sym_thereis] = ACTIONS(2140), + [anon_sym_never] = ACTIONS(2140), + [anon_sym_else] = ACTIONS(2140), + [anon_sym_finally] = ACTIONS(2140), + [anon_sym_return] = ACTIONS(2140), + [anon_sym_initially] = ACTIONS(2140), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2142), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [95] = { - [sym__gap] = STATE(147), - [sym_dis_expr] = STATE(147), - [sym__form] = STATE(2420), - [sym_num_lit] = STATE(2420), - [sym_kwd_lit] = STATE(2420), - [sym_str_lit] = STATE(2420), - [sym_char_lit] = STATE(2420), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2420), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2420), - [sym_set_lit] = STATE(2420), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2420), - [sym_splicing_read_cond_lit] = STATE(2420), - [sym_var_quoting_lit] = STATE(2420), - [sym_quoting_lit] = STATE(2420), - [sym_syn_quoting_lit] = STATE(2420), - [sym_unquote_splicing_lit] = STATE(2420), - [sym_unquoting_lit] = STATE(2420), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2420), - [sym_package_lit] = STATE(2420), - [sym_include_reader_macro] = STATE(2420), - [sym_complex_num_lit] = STATE(2420), - [aux_sym_dis_expr_repeat1] = STATE(147), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2198), - [sym_comment] = ACTIONS(2198), - [anon_sym_POUND_] = ACTIONS(2172), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2201), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2177), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2201), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_POUND_CARET] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2189), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2144), + [sym_comment] = ACTIONS(2144), + [anon_sym_POUND_] = ACTIONS(2118), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2147), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2123), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2147), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_POUND_CARET] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2132), + [anon_sym_RPAREN] = ACTIONS(2135), + [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(2201), - [anon_sym_cl] = ACTIONS(2191), - [aux_sym_accumulation_verb_token1] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_and] = ACTIONS(2194), - [anon_sym_as] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_until] = ACTIONS(2194), - [anon_sym_repeat] = ACTIONS(2194), - [anon_sym_when] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_unless] = ACTIONS(2194), - [anon_sym_always] = ACTIONS(2194), - [anon_sym_thereis] = ACTIONS(2194), - [anon_sym_never] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_finally] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_initially] = ACTIONS(2194), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2203), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2147), + [anon_sym_cl] = ACTIONS(2137), + [aux_sym_accumulation_verb_token1] = ACTIONS(2140), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_and] = ACTIONS(2140), + [anon_sym_as] = ACTIONS(2140), + [anon_sym_with] = ACTIONS(2140), + [anon_sym_do] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2140), + [anon_sym_until] = ACTIONS(2140), + [anon_sym_repeat] = ACTIONS(2140), + [anon_sym_when] = ACTIONS(2140), + [anon_sym_if] = ACTIONS(2140), + [anon_sym_unless] = ACTIONS(2140), + [anon_sym_always] = ACTIONS(2140), + [anon_sym_thereis] = ACTIONS(2140), + [anon_sym_never] = ACTIONS(2140), + [anon_sym_else] = ACTIONS(2140), + [anon_sym_finally] = ACTIONS(2140), + [anon_sym_return] = ACTIONS(2140), + [anon_sym_initially] = ACTIONS(2140), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2149), + [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(130), - [sym_dis_expr] = STATE(130), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2303), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2303), - [sym_set_lit] = STATE(2303), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(130), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2205), - [sym_comment] = ACTIONS(2205), - [anon_sym_POUND_] = ACTIONS(2172), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2208), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2177), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2208), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_POUND_CARET] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2189), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2151), + [sym_comment] = ACTIONS(2151), + [anon_sym_POUND_] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2157), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2159), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2157), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2162), + [anon_sym_POUND_CARET] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_RPAREN] = ACTIONS(2171), + [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(2208), - [anon_sym_cl] = ACTIONS(2191), - [aux_sym_accumulation_verb_token1] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_and] = ACTIONS(2194), - [anon_sym_as] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_until] = ACTIONS(2194), - [anon_sym_repeat] = ACTIONS(2194), - [anon_sym_when] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_unless] = ACTIONS(2194), - [anon_sym_always] = ACTIONS(2194), - [anon_sym_thereis] = ACTIONS(2194), - [anon_sym_never] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_finally] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_initially] = ACTIONS(2194), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2210), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2157), + [anon_sym_cl] = ACTIONS(2173), + [aux_sym_accumulation_verb_token1] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_and] = ACTIONS(2176), + [anon_sym_as] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_until] = ACTIONS(2176), + [anon_sym_repeat] = ACTIONS(2176), + [anon_sym_when] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_unless] = ACTIONS(2176), + [anon_sym_always] = ACTIONS(2176), + [anon_sym_thereis] = ACTIONS(2176), + [anon_sym_never] = ACTIONS(2176), + [anon_sym_else] = ACTIONS(2176), + [anon_sym_finally] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_initially] = ACTIONS(2176), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2178), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2302), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2302), - [sym_set_lit] = STATE(2302), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2169), - [sym_comment] = ACTIONS(2169), - [anon_sym_POUND_] = ACTIONS(2172), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2212), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2177), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2212), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_POUND_CARET] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2189), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2212), - [anon_sym_cl] = ACTIONS(2191), - [aux_sym_accumulation_verb_token1] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_and] = ACTIONS(2194), - [anon_sym_as] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_until] = ACTIONS(2194), - [anon_sym_repeat] = ACTIONS(2194), - [anon_sym_when] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_unless] = ACTIONS(2194), - [anon_sym_always] = ACTIONS(2194), - [anon_sym_thereis] = ACTIONS(2194), - [anon_sym_never] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_finally] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_initially] = ACTIONS(2194), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2214), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [98] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2300), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2300), - [sym_set_lit] = STATE(2300), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2162), - [sym_comment] = ACTIONS(2162), - [anon_sym_POUND_] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2216), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2141), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2216), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_POUND_CARET] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2153), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(148), + [sym_dis_expr] = STATE(148), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(148), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2180), + [sym_comment] = ACTIONS(2180), + [anon_sym_POUND_] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2183), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2159), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2183), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2162), + [anon_sym_POUND_CARET] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_RPAREN] = ACTIONS(2171), + [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(2183), + [anon_sym_cl] = ACTIONS(2173), + [aux_sym_accumulation_verb_token1] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_and] = ACTIONS(2176), + [anon_sym_as] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_until] = ACTIONS(2176), + [anon_sym_repeat] = ACTIONS(2176), + [anon_sym_when] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_unless] = ACTIONS(2176), + [anon_sym_always] = ACTIONS(2176), + [anon_sym_thereis] = ACTIONS(2176), + [anon_sym_never] = ACTIONS(2176), + [anon_sym_else] = ACTIONS(2176), + [anon_sym_finally] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_initially] = ACTIONS(2176), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2185), + [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(221), + [sym_dis_expr] = STATE(221), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(221), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2187), + [sym_comment] = ACTIONS(2187), + [anon_sym_POUND_] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2190), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2159), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2190), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2162), + [anon_sym_POUND_CARET] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_RPAREN] = ACTIONS(2171), + [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(2216), - [anon_sym_cl] = ACTIONS(2155), - [aux_sym_accumulation_verb_token1] = ACTIONS(2158), - [anon_sym_for] = ACTIONS(2158), - [anon_sym_and] = ACTIONS(2158), - [anon_sym_as] = ACTIONS(2158), - [anon_sym_with] = ACTIONS(2158), - [anon_sym_do] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2158), - [anon_sym_until] = ACTIONS(2158), - [anon_sym_repeat] = ACTIONS(2158), - [anon_sym_when] = ACTIONS(2158), - [anon_sym_if] = ACTIONS(2158), - [anon_sym_unless] = ACTIONS(2158), - [anon_sym_always] = ACTIONS(2158), - [anon_sym_thereis] = ACTIONS(2158), - [anon_sym_never] = ACTIONS(2158), - [anon_sym_else] = ACTIONS(2158), - [anon_sym_finally] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2158), - [anon_sym_initially] = ACTIONS(2158), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2218), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2190), + [anon_sym_cl] = ACTIONS(2173), + [aux_sym_accumulation_verb_token1] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_and] = ACTIONS(2176), + [anon_sym_as] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_until] = ACTIONS(2176), + [anon_sym_repeat] = ACTIONS(2176), + [anon_sym_when] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_unless] = ACTIONS(2176), + [anon_sym_always] = ACTIONS(2176), + [anon_sym_thereis] = ACTIONS(2176), + [anon_sym_never] = ACTIONS(2176), + [anon_sym_else] = ACTIONS(2176), + [anon_sym_finally] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_initially] = ACTIONS(2176), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2192), + [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(45), - [sym_dis_expr] = STATE(45), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2296), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2296), - [sym_set_lit] = STATE(2296), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(45), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2220), - [sym_comment] = ACTIONS(2220), - [anon_sym_POUND_] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2223), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2087), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2223), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2090), - [anon_sym_POUND_CARET] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_RPAREN] = ACTIONS(2099), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2151), + [sym_comment] = ACTIONS(2151), + [anon_sym_POUND_] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2194), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2159), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2194), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2162), + [anon_sym_POUND_CARET] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_RPAREN] = ACTIONS(2171), + [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(2223), - [anon_sym_cl] = ACTIONS(2101), - [aux_sym_accumulation_verb_token1] = ACTIONS(2104), - [anon_sym_for] = ACTIONS(2104), - [anon_sym_and] = ACTIONS(2104), - [anon_sym_as] = ACTIONS(2104), - [anon_sym_with] = ACTIONS(2104), - [anon_sym_do] = ACTIONS(2104), - [anon_sym_while] = ACTIONS(2104), - [anon_sym_until] = ACTIONS(2104), - [anon_sym_repeat] = ACTIONS(2104), - [anon_sym_when] = ACTIONS(2104), - [anon_sym_if] = ACTIONS(2104), - [anon_sym_unless] = ACTIONS(2104), - [anon_sym_always] = ACTIONS(2104), - [anon_sym_thereis] = ACTIONS(2104), - [anon_sym_never] = ACTIONS(2104), - [anon_sym_else] = ACTIONS(2104), - [anon_sym_finally] = ACTIONS(2104), - [anon_sym_return] = ACTIONS(2104), - [anon_sym_initially] = ACTIONS(2104), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2225), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2194), + [anon_sym_cl] = ACTIONS(2173), + [aux_sym_accumulation_verb_token1] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_and] = ACTIONS(2176), + [anon_sym_as] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_until] = ACTIONS(2176), + [anon_sym_repeat] = ACTIONS(2176), + [anon_sym_when] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_unless] = ACTIONS(2176), + [anon_sym_always] = ACTIONS(2176), + [anon_sym_thereis] = ACTIONS(2176), + [anon_sym_never] = ACTIONS(2176), + [anon_sym_else] = ACTIONS(2176), + [anon_sym_finally] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_initially] = ACTIONS(2176), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2196), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2295), - [sym_num_lit] = STATE(2295), - [sym_kwd_lit] = STATE(2295), - [sym_str_lit] = STATE(2295), - [sym_char_lit] = STATE(2295), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2295), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2295), - [sym_set_lit] = STATE(2295), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2295), - [sym_splicing_read_cond_lit] = STATE(2295), - [sym_var_quoting_lit] = STATE(2295), - [sym_quoting_lit] = STATE(2295), - [sym_syn_quoting_lit] = STATE(2295), - [sym_unquote_splicing_lit] = STATE(2295), - [sym_unquoting_lit] = STATE(2295), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2295), - [sym_package_lit] = STATE(2295), - [sym_include_reader_macro] = STATE(2295), - [sym_complex_num_lit] = STATE(2295), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2115), - [sym_comment] = ACTIONS(2115), - [anon_sym_POUND_] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(223), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2440), + [sym_num_lit] = STATE(2440), + [sym_kwd_lit] = STATE(2440), + [sym_str_lit] = STATE(2440), + [sym_char_lit] = STATE(2440), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2440), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2440), + [sym_set_lit] = STATE(2440), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2440), + [sym_splicing_read_cond_lit] = STATE(2440), + [sym_var_quoting_lit] = STATE(2440), + [sym_quoting_lit] = STATE(2440), + [sym_syn_quoting_lit] = STATE(2440), + [sym_unquote_splicing_lit] = STATE(2440), + [sym_unquoting_lit] = STATE(2440), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2440), + [sym_package_lit] = STATE(2440), + [sym_include_reader_macro] = STATE(2440), + [sym_complex_num_lit] = STATE(2440), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2198), + [sym_comment] = ACTIONS(2198), + [anon_sym_POUND_] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2204), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2206), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2204), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2209), + [anon_sym_POUND_CARET] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_RPAREN] = ACTIONS(2218), + [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(2204), + [anon_sym_cl] = ACTIONS(2220), + [aux_sym_accumulation_verb_token1] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_and] = ACTIONS(2223), + [anon_sym_as] = ACTIONS(2223), + [anon_sym_with] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [anon_sym_until] = ACTIONS(2223), + [anon_sym_repeat] = ACTIONS(2223), + [anon_sym_when] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_unless] = ACTIONS(2223), + [anon_sym_always] = ACTIONS(2223), + [anon_sym_thereis] = ACTIONS(2223), + [anon_sym_never] = ACTIONS(2223), + [anon_sym_else] = ACTIONS(2223), + [anon_sym_finally] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_initially] = ACTIONS(2223), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2225), + [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(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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2144), + [sym_comment] = ACTIONS(2144), + [anon_sym_POUND_] = ACTIONS(2118), + [anon_sym_POUND] = ACTIONS(67), [anon_sym_DOT] = ACTIONS(2227), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2087), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2123), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), [sym_nil_lit] = ACTIONS(2227), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2090), - [anon_sym_POUND_CARET] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_RPAREN] = ACTIONS(2099), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_POUND_CARET] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2132), + [anon_sym_RPAREN] = ACTIONS(2135), + [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(2227), - [anon_sym_cl] = ACTIONS(2101), - [aux_sym_accumulation_verb_token1] = ACTIONS(2104), - [anon_sym_for] = ACTIONS(2104), - [anon_sym_and] = ACTIONS(2104), - [anon_sym_as] = ACTIONS(2104), - [anon_sym_with] = ACTIONS(2104), - [anon_sym_do] = ACTIONS(2104), - [anon_sym_while] = ACTIONS(2104), - [anon_sym_until] = ACTIONS(2104), - [anon_sym_repeat] = ACTIONS(2104), - [anon_sym_when] = ACTIONS(2104), - [anon_sym_if] = ACTIONS(2104), - [anon_sym_unless] = ACTIONS(2104), - [anon_sym_always] = ACTIONS(2104), - [anon_sym_thereis] = ACTIONS(2104), - [anon_sym_never] = ACTIONS(2104), - [anon_sym_else] = ACTIONS(2104), - [anon_sym_finally] = ACTIONS(2104), - [anon_sym_return] = ACTIONS(2104), - [anon_sym_initially] = ACTIONS(2104), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), + [anon_sym_cl] = ACTIONS(2137), + [aux_sym_accumulation_verb_token1] = ACTIONS(2140), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_and] = ACTIONS(2140), + [anon_sym_as] = ACTIONS(2140), + [anon_sym_with] = ACTIONS(2140), + [anon_sym_do] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2140), + [anon_sym_until] = ACTIONS(2140), + [anon_sym_repeat] = ACTIONS(2140), + [anon_sym_when] = ACTIONS(2140), + [anon_sym_if] = ACTIONS(2140), + [anon_sym_unless] = ACTIONS(2140), + [anon_sym_always] = ACTIONS(2140), + [anon_sym_thereis] = ACTIONS(2140), + [anon_sym_never] = ACTIONS(2140), + [anon_sym_else] = ACTIONS(2140), + [anon_sym_finally] = ACTIONS(2140), + [anon_sym_return] = ACTIONS(2140), + [anon_sym_initially] = ACTIONS(2140), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), [sym_self_referential_reader_macro] = ACTIONS(2229), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [101] = { - [sym__gap] = STATE(49), - [sym_dis_expr] = STATE(49), - [sym__form] = STATE(2293), - [sym_num_lit] = STATE(2293), - [sym_kwd_lit] = STATE(2293), - [sym_str_lit] = STATE(2293), - [sym_char_lit] = STATE(2293), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2293), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2293), - [sym_set_lit] = STATE(2293), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2293), - [sym_splicing_read_cond_lit] = STATE(2293), - [sym_var_quoting_lit] = STATE(2293), - [sym_quoting_lit] = STATE(2293), - [sym_syn_quoting_lit] = STATE(2293), - [sym_unquote_splicing_lit] = STATE(2293), - [sym_unquoting_lit] = STATE(2293), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2293), - [sym_package_lit] = STATE(2293), - [sym_include_reader_macro] = STATE(2293), - [sym_complex_num_lit] = STATE(2293), - [aux_sym_dis_expr_repeat1] = STATE(49), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2231), - [sym_comment] = ACTIONS(2231), - [anon_sym_POUND_] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2234), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2087), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2234), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2090), - [anon_sym_POUND_CARET] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_RPAREN] = ACTIONS(2099), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2234), - [anon_sym_cl] = ACTIONS(2101), - [aux_sym_accumulation_verb_token1] = ACTIONS(2104), - [anon_sym_for] = ACTIONS(2104), - [anon_sym_and] = ACTIONS(2104), - [anon_sym_as] = ACTIONS(2104), - [anon_sym_with] = ACTIONS(2104), - [anon_sym_do] = ACTIONS(2104), - [anon_sym_while] = ACTIONS(2104), - [anon_sym_until] = ACTIONS(2104), - [anon_sym_repeat] = ACTIONS(2104), - [anon_sym_when] = ACTIONS(2104), - [anon_sym_if] = ACTIONS(2104), - [anon_sym_unless] = ACTIONS(2104), - [anon_sym_always] = ACTIONS(2104), - [anon_sym_thereis] = ACTIONS(2104), - [anon_sym_never] = ACTIONS(2104), - [anon_sym_else] = ACTIONS(2104), - [anon_sym_finally] = ACTIONS(2104), - [anon_sym_return] = ACTIONS(2104), - [anon_sym_initially] = ACTIONS(2104), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2236), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [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(50), - [sym_dis_expr] = STATE(50), - [sym__form] = STATE(2291), - [sym_num_lit] = STATE(2291), - [sym_kwd_lit] = STATE(2291), - [sym_str_lit] = STATE(2291), - [sym_char_lit] = STATE(2291), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2291), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2291), - [sym_set_lit] = STATE(2291), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2291), - [sym_splicing_read_cond_lit] = STATE(2291), - [sym_var_quoting_lit] = STATE(2291), - [sym_quoting_lit] = STATE(2291), - [sym_syn_quoting_lit] = STATE(2291), - [sym_unquote_splicing_lit] = STATE(2291), - [sym_unquoting_lit] = STATE(2291), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2291), - [sym_package_lit] = STATE(2291), - [sym_include_reader_macro] = STATE(2291), - [sym_complex_num_lit] = STATE(2291), - [aux_sym_dis_expr_repeat1] = STATE(50), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2238), - [sym_comment] = ACTIONS(2238), - [anon_sym_POUND_] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2241), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2141), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2241), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_POUND_CARET] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2153), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2338), + [sym_num_lit] = STATE(2338), + [sym_kwd_lit] = STATE(2338), + [sym_str_lit] = STATE(2338), + [sym_char_lit] = STATE(2338), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2338), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2338), + [sym_set_lit] = STATE(2338), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2338), + [sym_splicing_read_cond_lit] = STATE(2338), + [sym_var_quoting_lit] = STATE(2338), + [sym_quoting_lit] = STATE(2338), + [sym_syn_quoting_lit] = STATE(2338), + [sym_unquote_splicing_lit] = STATE(2338), + [sym_unquoting_lit] = STATE(2338), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2338), + [sym_package_lit] = STATE(2338), + [sym_include_reader_macro] = STATE(2338), + [sym_complex_num_lit] = STATE(2338), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2198), + [sym_comment] = ACTIONS(2198), + [anon_sym_POUND_] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2231), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2206), + [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(2209), + [anon_sym_POUND_CARET] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_RPAREN] = ACTIONS(2218), + [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(2155), - [aux_sym_accumulation_verb_token1] = ACTIONS(2158), - [anon_sym_for] = ACTIONS(2158), - [anon_sym_and] = ACTIONS(2158), - [anon_sym_as] = ACTIONS(2158), - [anon_sym_with] = ACTIONS(2158), - [anon_sym_do] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2158), - [anon_sym_until] = ACTIONS(2158), - [anon_sym_repeat] = ACTIONS(2158), - [anon_sym_when] = ACTIONS(2158), - [anon_sym_if] = ACTIONS(2158), - [anon_sym_unless] = ACTIONS(2158), - [anon_sym_always] = ACTIONS(2158), - [anon_sym_thereis] = ACTIONS(2158), - [anon_sym_never] = ACTIONS(2158), - [anon_sym_else] = ACTIONS(2158), - [anon_sym_finally] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2158), - [anon_sym_initially] = ACTIONS(2158), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2243), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2231), + [anon_sym_cl] = ACTIONS(2220), + [aux_sym_accumulation_verb_token1] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_and] = ACTIONS(2223), + [anon_sym_as] = ACTIONS(2223), + [anon_sym_with] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [anon_sym_until] = ACTIONS(2223), + [anon_sym_repeat] = ACTIONS(2223), + [anon_sym_when] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_unless] = ACTIONS(2223), + [anon_sym_always] = ACTIONS(2223), + [anon_sym_thereis] = ACTIONS(2223), + [anon_sym_never] = ACTIONS(2223), + [anon_sym_else] = ACTIONS(2223), + [anon_sym_finally] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_initially] = ACTIONS(2223), + [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), }, [103] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2290), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2290), - [sym_set_lit] = STATE(2290), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2162), - [sym_comment] = ACTIONS(2162), - [anon_sym_POUND_] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2245), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2141), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2245), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_POUND_CARET] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2153), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(232), + [sym_dis_expr] = STATE(232), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(232), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2235), + [sym_comment] = ACTIONS(2235), + [anon_sym_POUND_] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2238), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2206), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2238), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2209), + [anon_sym_POUND_CARET] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_RPAREN] = ACTIONS(2218), + [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(2245), - [anon_sym_cl] = ACTIONS(2155), - [aux_sym_accumulation_verb_token1] = ACTIONS(2158), - [anon_sym_for] = ACTIONS(2158), - [anon_sym_and] = ACTIONS(2158), - [anon_sym_as] = ACTIONS(2158), - [anon_sym_with] = ACTIONS(2158), - [anon_sym_do] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2158), - [anon_sym_until] = ACTIONS(2158), - [anon_sym_repeat] = ACTIONS(2158), - [anon_sym_when] = ACTIONS(2158), - [anon_sym_if] = ACTIONS(2158), - [anon_sym_unless] = ACTIONS(2158), - [anon_sym_always] = ACTIONS(2158), - [anon_sym_thereis] = ACTIONS(2158), - [anon_sym_never] = ACTIONS(2158), - [anon_sym_else] = ACTIONS(2158), - [anon_sym_finally] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2158), - [anon_sym_initially] = ACTIONS(2158), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2247), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2238), + [anon_sym_cl] = ACTIONS(2220), + [aux_sym_accumulation_verb_token1] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_and] = ACTIONS(2223), + [anon_sym_as] = ACTIONS(2223), + [anon_sym_with] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [anon_sym_until] = ACTIONS(2223), + [anon_sym_repeat] = ACTIONS(2223), + [anon_sym_when] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_unless] = ACTIONS(2223), + [anon_sym_always] = ACTIONS(2223), + [anon_sym_thereis] = ACTIONS(2223), + [anon_sym_never] = ACTIONS(2223), + [anon_sym_else] = ACTIONS(2223), + [anon_sym_finally] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_initially] = ACTIONS(2223), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2240), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2288), - [sym_num_lit] = STATE(2288), - [sym_kwd_lit] = STATE(2288), - [sym_str_lit] = STATE(2288), - [sym_char_lit] = STATE(2288), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2288), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2288), - [sym_set_lit] = STATE(2288), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2288), - [sym_splicing_read_cond_lit] = STATE(2288), - [sym_var_quoting_lit] = STATE(2288), - [sym_quoting_lit] = STATE(2288), - [sym_syn_quoting_lit] = STATE(2288), - [sym_unquote_splicing_lit] = STATE(2288), - [sym_unquoting_lit] = STATE(2288), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2288), - [sym_package_lit] = STATE(2288), - [sym_include_reader_macro] = STATE(2288), - [sym_complex_num_lit] = STATE(2288), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2169), - [sym_comment] = ACTIONS(2169), - [anon_sym_POUND_] = ACTIONS(2172), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2249), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2177), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2249), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_POUND_CARET] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2189), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2242), + [sym_comment] = ACTIONS(2242), + [anon_sym_POUND_] = ACTIONS(2245), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2248), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2250), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2248), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2253), + [anon_sym_POUND_CARET] = ACTIONS(2256), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_RPAREN] = ACTIONS(2262), + [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(2249), - [anon_sym_cl] = ACTIONS(2191), - [aux_sym_accumulation_verb_token1] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_and] = ACTIONS(2194), - [anon_sym_as] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_until] = ACTIONS(2194), - [anon_sym_repeat] = ACTIONS(2194), - [anon_sym_when] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_unless] = ACTIONS(2194), - [anon_sym_always] = ACTIONS(2194), - [anon_sym_thereis] = ACTIONS(2194), - [anon_sym_never] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_finally] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_initially] = ACTIONS(2194), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2251), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2248), + [anon_sym_cl] = ACTIONS(2264), + [aux_sym_accumulation_verb_token1] = ACTIONS(2267), + [anon_sym_for] = ACTIONS(2267), + [anon_sym_and] = ACTIONS(2267), + [anon_sym_as] = ACTIONS(2267), + [anon_sym_with] = ACTIONS(2267), + [anon_sym_do] = ACTIONS(2267), + [anon_sym_while] = ACTIONS(2267), + [anon_sym_until] = ACTIONS(2267), + [anon_sym_repeat] = ACTIONS(2267), + [anon_sym_when] = ACTIONS(2267), + [anon_sym_if] = ACTIONS(2267), + [anon_sym_unless] = ACTIONS(2267), + [anon_sym_always] = ACTIONS(2267), + [anon_sym_thereis] = ACTIONS(2267), + [anon_sym_never] = ACTIONS(2267), + [anon_sym_else] = ACTIONS(2267), + [anon_sym_finally] = ACTIONS(2267), + [anon_sym_return] = ACTIONS(2267), + [anon_sym_initially] = ACTIONS(2267), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2269), + [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(53), - [sym_dis_expr] = STATE(53), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2286), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2286), - [sym_set_lit] = STATE(2286), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(53), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2253), - [sym_comment] = ACTIONS(2253), - [anon_sym_POUND_] = ACTIONS(2172), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2256), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2177), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2256), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_POUND_CARET] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2189), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2271), + [sym_comment] = ACTIONS(2271), + [anon_sym_POUND_] = ACTIONS(2274), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2277), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2279), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2277), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_POUND_CARET] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_RPAREN] = ACTIONS(2291), + [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(2256), - [anon_sym_cl] = ACTIONS(2191), - [aux_sym_accumulation_verb_token1] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_and] = ACTIONS(2194), - [anon_sym_as] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_until] = ACTIONS(2194), - [anon_sym_repeat] = ACTIONS(2194), - [anon_sym_when] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_unless] = ACTIONS(2194), - [anon_sym_always] = ACTIONS(2194), - [anon_sym_thereis] = ACTIONS(2194), - [anon_sym_never] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_finally] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_initially] = ACTIONS(2194), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2258), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2277), + [anon_sym_cl] = ACTIONS(2293), + [aux_sym_accumulation_verb_token1] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_and] = ACTIONS(2296), + [anon_sym_as] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_until] = ACTIONS(2296), + [anon_sym_repeat] = ACTIONS(2296), + [anon_sym_when] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_unless] = ACTIONS(2296), + [anon_sym_always] = ACTIONS(2296), + [anon_sym_thereis] = ACTIONS(2296), + [anon_sym_never] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_finally] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_initially] = ACTIONS(2296), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2298), + [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(54), - [sym_dis_expr] = STATE(54), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2284), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2284), - [sym_set_lit] = STATE(2284), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(54), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2260), - [sym_comment] = ACTIONS(2260), - [anon_sym_POUND_] = ACTIONS(2172), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2263), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2177), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2263), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_POUND_CARET] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2189), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(175), + [sym_dis_expr] = STATE(175), + [sym__form] = STATE(2439), + [sym_num_lit] = STATE(2439), + [sym_kwd_lit] = STATE(2439), + [sym_str_lit] = STATE(2439), + [sym_char_lit] = STATE(2439), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2439), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2439), + [sym_set_lit] = STATE(2439), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2439), + [sym_splicing_read_cond_lit] = STATE(2439), + [sym_var_quoting_lit] = STATE(2439), + [sym_quoting_lit] = STATE(2439), + [sym_syn_quoting_lit] = STATE(2439), + [sym_unquote_splicing_lit] = STATE(2439), + [sym_unquoting_lit] = STATE(2439), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2439), + [sym_package_lit] = STATE(2439), + [sym_include_reader_macro] = STATE(2439), + [sym_complex_num_lit] = STATE(2439), + [aux_sym_dis_expr_repeat1] = STATE(175), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2300), + [sym_comment] = ACTIONS(2300), + [anon_sym_POUND_] = ACTIONS(2274), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2303), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2279), + [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(2282), + [anon_sym_POUND_CARET] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_RPAREN] = ACTIONS(2291), + [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(2263), - [anon_sym_cl] = ACTIONS(2191), - [aux_sym_accumulation_verb_token1] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_and] = ACTIONS(2194), - [anon_sym_as] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_until] = ACTIONS(2194), - [anon_sym_repeat] = ACTIONS(2194), - [anon_sym_when] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_unless] = ACTIONS(2194), - [anon_sym_always] = ACTIONS(2194), - [anon_sym_thereis] = ACTIONS(2194), - [anon_sym_never] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_finally] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_initially] = ACTIONS(2194), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2265), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2303), + [anon_sym_cl] = ACTIONS(2293), + [aux_sym_accumulation_verb_token1] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_and] = ACTIONS(2296), + [anon_sym_as] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_until] = ACTIONS(2296), + [anon_sym_repeat] = ACTIONS(2296), + [anon_sym_when] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_unless] = ACTIONS(2296), + [anon_sym_always] = ACTIONS(2296), + [anon_sym_thereis] = ACTIONS(2296), + [anon_sym_never] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_finally] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_initially] = ACTIONS(2296), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2305), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2282), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2282), - [sym_set_lit] = STATE(2282), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2169), - [sym_comment] = ACTIONS(2169), - [anon_sym_POUND_] = ACTIONS(2172), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2267), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2177), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2267), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_POUND_CARET] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2189), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(146), + [sym_dis_expr] = STATE(146), + [sym__form] = STATE(2443), + [sym_num_lit] = STATE(2443), + [sym_kwd_lit] = STATE(2443), + [sym_str_lit] = STATE(2443), + [sym_char_lit] = STATE(2443), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2443), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2443), + [sym_set_lit] = STATE(2443), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2443), + [sym_splicing_read_cond_lit] = STATE(2443), + [sym_var_quoting_lit] = STATE(2443), + [sym_quoting_lit] = STATE(2443), + [sym_syn_quoting_lit] = STATE(2443), + [sym_unquote_splicing_lit] = STATE(2443), + [sym_unquoting_lit] = STATE(2443), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2443), + [sym_package_lit] = STATE(2443), + [sym_include_reader_macro] = STATE(2443), + [sym_complex_num_lit] = STATE(2443), + [aux_sym_dis_expr_repeat1] = STATE(146), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2307), + [sym_comment] = ACTIONS(2307), + [anon_sym_POUND_] = ACTIONS(2274), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2310), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2279), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2310), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_POUND_CARET] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_RPAREN] = ACTIONS(2291), + [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(2267), - [anon_sym_cl] = ACTIONS(2191), - [aux_sym_accumulation_verb_token1] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_and] = ACTIONS(2194), - [anon_sym_as] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_until] = ACTIONS(2194), - [anon_sym_repeat] = ACTIONS(2194), - [anon_sym_when] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_unless] = ACTIONS(2194), - [anon_sym_always] = ACTIONS(2194), - [anon_sym_thereis] = ACTIONS(2194), - [anon_sym_never] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_finally] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_initially] = ACTIONS(2194), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2269), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2310), + [anon_sym_cl] = ACTIONS(2293), + [aux_sym_accumulation_verb_token1] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_and] = ACTIONS(2296), + [anon_sym_as] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_until] = ACTIONS(2296), + [anon_sym_repeat] = ACTIONS(2296), + [anon_sym_when] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_unless] = ACTIONS(2296), + [anon_sym_always] = ACTIONS(2296), + [anon_sym_thereis] = ACTIONS(2296), + [anon_sym_never] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_finally] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_initially] = ACTIONS(2296), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2312), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2305), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2305), - [sym_set_lit] = STATE(2305), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2469), + [sym_num_lit] = STATE(2469), + [sym_kwd_lit] = STATE(2469), + [sym_str_lit] = STATE(2469), + [sym_char_lit] = STATE(2469), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2469), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2469), + [sym_set_lit] = STATE(2469), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2469), + [sym_splicing_read_cond_lit] = STATE(2469), + [sym_var_quoting_lit] = STATE(2469), + [sym_quoting_lit] = STATE(2469), + [sym_syn_quoting_lit] = STATE(2469), + [sym_unquote_splicing_lit] = STATE(2469), + [sym_unquoting_lit] = STATE(2469), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2469), + [sym_package_lit] = STATE(2469), + [sym_include_reader_macro] = STATE(2469), + [sym_complex_num_lit] = STATE(2469), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), [sym__ws] = ACTIONS(2271), [sym_comment] = ACTIONS(2271), [anon_sym_POUND_] = ACTIONS(2274), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2277), - [aux_sym_num_lit_token1] = ACTIONS(227), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2314), + [aux_sym_num_lit_token1] = ACTIONS(71), [anon_sym_COLON] = ACTIONS(2279), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2277), - [aux_sym_sym_lit_token1] = ACTIONS(237), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2314), + [aux_sym_sym_lit_token1] = ACTIONS(81), [anon_sym_CARET] = ACTIONS(2282), [anon_sym_POUND_CARET] = ACTIONS(2285), [anon_sym_LPAREN] = ACTIONS(2288), [anon_sym_RPAREN] = ACTIONS(2291), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2277), + [sym_fancy_literal] = ACTIONS(2314), [anon_sym_cl] = ACTIONS(2293), [aux_sym_accumulation_verb_token1] = ACTIONS(2296), [anon_sym_for] = ACTIONS(2296), @@ -19806,2095 +19826,1751 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(2296), [anon_sym_return] = ACTIONS(2296), [anon_sym_initially] = ACTIONS(2296), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2298), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2316), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2280), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2280), - [sym_set_lit] = STATE(2280), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2162), - [sym_comment] = ACTIONS(2162), - [anon_sym_POUND_] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2300), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2141), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2300), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_POUND_CARET] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2153), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(247), + [sym_dis_expr] = STATE(247), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(247), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2318), + [sym_comment] = ACTIONS(2318), + [anon_sym_POUND_] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2324), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2326), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2324), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2329), + [anon_sym_POUND_CARET] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_RPAREN] = ACTIONS(2338), + [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(2300), - [anon_sym_cl] = ACTIONS(2155), - [aux_sym_accumulation_verb_token1] = ACTIONS(2158), - [anon_sym_for] = ACTIONS(2158), - [anon_sym_and] = ACTIONS(2158), - [anon_sym_as] = ACTIONS(2158), - [anon_sym_with] = ACTIONS(2158), - [anon_sym_do] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2158), - [anon_sym_until] = ACTIONS(2158), - [anon_sym_repeat] = ACTIONS(2158), - [anon_sym_when] = ACTIONS(2158), - [anon_sym_if] = ACTIONS(2158), - [anon_sym_unless] = ACTIONS(2158), - [anon_sym_always] = ACTIONS(2158), - [anon_sym_thereis] = ACTIONS(2158), - [anon_sym_never] = ACTIONS(2158), - [anon_sym_else] = ACTIONS(2158), - [anon_sym_finally] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2158), - [anon_sym_initially] = ACTIONS(2158), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2302), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2324), + [anon_sym_cl] = ACTIONS(2340), + [aux_sym_accumulation_verb_token1] = ACTIONS(2343), + [anon_sym_for] = ACTIONS(2343), + [anon_sym_and] = ACTIONS(2343), + [anon_sym_as] = ACTIONS(2343), + [anon_sym_with] = ACTIONS(2343), + [anon_sym_do] = ACTIONS(2343), + [anon_sym_while] = ACTIONS(2343), + [anon_sym_until] = ACTIONS(2343), + [anon_sym_repeat] = ACTIONS(2343), + [anon_sym_when] = ACTIONS(2343), + [anon_sym_if] = ACTIONS(2343), + [anon_sym_unless] = ACTIONS(2343), + [anon_sym_always] = ACTIONS(2343), + [anon_sym_thereis] = ACTIONS(2343), + [anon_sym_never] = ACTIONS(2343), + [anon_sym_else] = ACTIONS(2343), + [anon_sym_finally] = ACTIONS(2343), + [anon_sym_return] = ACTIONS(2343), + [anon_sym_initially] = ACTIONS(2343), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2345), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2277), - [sym_num_lit] = STATE(2277), - [sym_kwd_lit] = STATE(2277), - [sym_str_lit] = STATE(2277), - [sym_char_lit] = STATE(2277), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2277), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2277), - [sym_set_lit] = STATE(2277), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2277), - [sym_splicing_read_cond_lit] = STATE(2277), - [sym_var_quoting_lit] = STATE(2277), - [sym_quoting_lit] = STATE(2277), - [sym_syn_quoting_lit] = STATE(2277), - [sym_unquote_splicing_lit] = STATE(2277), - [sym_unquoting_lit] = STATE(2277), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2277), - [sym_package_lit] = STATE(2277), - [sym_include_reader_macro] = STATE(2277), - [sym_complex_num_lit] = STATE(2277), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1657), - [sym_comment] = ACTIONS(1657), - [anon_sym_POUND_] = ACTIONS(1660), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2304), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2304), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1668), - [anon_sym_POUND_CARET] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2347), + [sym_comment] = ACTIONS(2347), + [anon_sym_POUND_] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2353), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2353), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2358), + [anon_sym_POUND_CARET] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2367), + [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(2304), - [anon_sym_cl] = ACTIONS(1679), - [aux_sym_accumulation_verb_token1] = ACTIONS(1682), - [anon_sym_for] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_as] = ACTIONS(1682), - [anon_sym_with] = ACTIONS(1682), - [anon_sym_do] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1682), - [anon_sym_until] = ACTIONS(1682), - [anon_sym_repeat] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(1682), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_unless] = ACTIONS(1682), - [anon_sym_always] = ACTIONS(1682), - [anon_sym_thereis] = ACTIONS(1682), - [anon_sym_never] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1682), - [anon_sym_finally] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_initially] = ACTIONS(1682), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2306), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2353), + [anon_sym_cl] = ACTIONS(2369), + [aux_sym_accumulation_verb_token1] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_and] = ACTIONS(2372), + [anon_sym_as] = ACTIONS(2372), + [anon_sym_with] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_until] = ACTIONS(2372), + [anon_sym_repeat] = ACTIONS(2372), + [anon_sym_when] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_unless] = ACTIONS(2372), + [anon_sym_always] = ACTIONS(2372), + [anon_sym_thereis] = ACTIONS(2372), + [anon_sym_never] = ACTIONS(2372), + [anon_sym_else] = ACTIONS(2372), + [anon_sym_finally] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_initially] = ACTIONS(2372), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2374), + [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(269), - [sym_dis_expr] = STATE(269), - [sym__form] = STATE(2705), - [sym_num_lit] = STATE(2705), - [sym_kwd_lit] = STATE(2705), - [sym_str_lit] = STATE(2705), - [sym_char_lit] = STATE(2705), - [sym_sym_lit] = STATE(2744), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2705), - [sym__bare_list_lit] = STATE(1926), - [sym_vec_lit] = STATE(2705), - [sym_set_lit] = STATE(2705), - [sym__bare_set_lit] = STATE(1927), - [sym_read_cond_lit] = STATE(2705), - [sym_splicing_read_cond_lit] = STATE(2705), - [sym_var_quoting_lit] = STATE(2705), - [sym_quoting_lit] = STATE(2705), - [sym_syn_quoting_lit] = STATE(2705), - [sym_unquote_splicing_lit] = STATE(2705), - [sym_unquoting_lit] = STATE(2705), - [sym_defun] = STATE(1926), - [sym_for_clause_word] = STATE(549), - [sym__for_part] = STATE(1556), - [sym_loop_macro] = STATE(1926), - [sym_path_lit] = STATE(2705), - [sym_package_lit] = STATE(2705), - [sym_include_reader_macro] = STATE(2705), - [sym_complex_num_lit] = STATE(2705), - [aux_sym_dis_expr_repeat1] = STATE(269), - [aux_sym_list_lit_repeat1] = STATE(2781), - [aux_sym_for_clause_repeat1] = STATE(1251), - [sym__ws] = ACTIONS(2308), - [sym_comment] = ACTIONS(2308), - [anon_sym_POUND_] = ACTIONS(2310), - [anon_sym_POUND] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(2314), - [aux_sym_num_lit_token1] = ACTIONS(2316), - [anon_sym_COLON] = ACTIONS(2318), - [anon_sym_COLON_COLON] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2322), - [sym_nil_lit] = ACTIONS(2314), - [aux_sym_sym_lit_token1] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_POUND0A] = ACTIONS(2328), - [anon_sym_POUND0a] = ACTIONS(2328), - [anon_sym_POUND_QMARK] = ACTIONS(2330), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2332), - [anon_sym_POUND_SQUOTE] = ACTIONS(2334), - [anon_sym_SQUOTE] = ACTIONS(2336), - [anon_sym_BQUOTE] = ACTIONS(2338), - [anon_sym_COMMA_AT] = ACTIONS(2340), - [anon_sym_COMMA] = ACTIONS(2342), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2376), + [sym_comment] = ACTIONS(2376), + [anon_sym_POUND_] = ACTIONS(2379), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2382), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2384), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2382), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2387), + [anon_sym_POUND_CARET] = ACTIONS(2390), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_RPAREN] = ACTIONS(2396), + [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(2314), - [anon_sym_cl] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2346), - [anon_sym_across] = ACTIONS(2346), - [anon_sym_being] = ACTIONS(2346), - [anon_sym_using] = ACTIONS(2346), - [aux_sym_for_clause_word_token1] = ACTIONS(2348), - [anon_sym_below] = ACTIONS(2346), - [anon_sym_above] = ACTIONS(2346), - [anon_sym_from] = ACTIONS(2346), - [anon_sym_to] = ACTIONS(2346), - [anon_sym_upto] = ACTIONS(2346), - [anon_sym_upfrom] = ACTIONS(2346), - [anon_sym_downto] = ACTIONS(2346), - [anon_sym_downfrom] = ACTIONS(2346), - [anon_sym_on] = ACTIONS(2346), - [anon_sym_by] = ACTIONS(2346), - [anon_sym_then] = ACTIONS(2346), - [anon_sym_EQ] = ACTIONS(2346), - [anon_sym_POUNDP] = ACTIONS(2350), - [anon_sym_POUNDp] = ACTIONS(2350), - [sym_self_referential_reader_macro] = ACTIONS(2352), - [anon_sym_POUND_PLUS] = ACTIONS(2354), - [anon_sym_POUND_DASH] = ACTIONS(2354), - [anon_sym_POUNDC] = ACTIONS(2356), - [anon_sym_POUNDc] = ACTIONS(2356), + [sym_fancy_literal] = ACTIONS(2382), + [anon_sym_cl] = ACTIONS(2398), + [aux_sym_accumulation_verb_token1] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_and] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_with] = ACTIONS(2401), + [anon_sym_do] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [anon_sym_until] = ACTIONS(2401), + [anon_sym_repeat] = ACTIONS(2401), + [anon_sym_when] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_unless] = ACTIONS(2401), + [anon_sym_always] = ACTIONS(2401), + [anon_sym_thereis] = ACTIONS(2401), + [anon_sym_never] = ACTIONS(2401), + [anon_sym_else] = ACTIONS(2401), + [anon_sym_finally] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_initially] = ACTIONS(2401), + [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), }, [112] = { - [sym__gap] = STATE(56), - [sym_dis_expr] = STATE(56), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2276), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2276), - [sym_set_lit] = STATE(2276), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(56), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2358), - [sym_comment] = ACTIONS(2358), - [anon_sym_POUND_] = ACTIONS(1660), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2361), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2361), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1668), - [anon_sym_POUND_CARET] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(227), + [sym_dis_expr] = STATE(227), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(227), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2405), + [sym_comment] = ACTIONS(2405), + [anon_sym_POUND_] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2408), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2408), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2358), + [anon_sym_POUND_CARET] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2367), + [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(2361), - [anon_sym_cl] = ACTIONS(1679), - [aux_sym_accumulation_verb_token1] = ACTIONS(1682), - [anon_sym_for] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_as] = ACTIONS(1682), - [anon_sym_with] = ACTIONS(1682), - [anon_sym_do] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1682), - [anon_sym_until] = ACTIONS(1682), - [anon_sym_repeat] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(1682), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_unless] = ACTIONS(1682), - [anon_sym_always] = ACTIONS(1682), - [anon_sym_thereis] = ACTIONS(1682), - [anon_sym_never] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1682), - [anon_sym_finally] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_initially] = ACTIONS(1682), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2363), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2408), + [anon_sym_cl] = ACTIONS(2369), + [aux_sym_accumulation_verb_token1] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_and] = ACTIONS(2372), + [anon_sym_as] = ACTIONS(2372), + [anon_sym_with] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_until] = ACTIONS(2372), + [anon_sym_repeat] = ACTIONS(2372), + [anon_sym_when] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_unless] = ACTIONS(2372), + [anon_sym_always] = ACTIONS(2372), + [anon_sym_thereis] = ACTIONS(2372), + [anon_sym_never] = ACTIONS(2372), + [anon_sym_else] = ACTIONS(2372), + [anon_sym_finally] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_initially] = ACTIONS(2372), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2410), + [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(57), - [sym_dis_expr] = STATE(57), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2274), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2274), - [sym_set_lit] = STATE(2274), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(57), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2365), - [sym_comment] = ACTIONS(2365), - [anon_sym_POUND_] = ACTIONS(1660), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2368), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2368), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1668), - [anon_sym_POUND_CARET] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(223), + [sym_dis_expr] = STATE(223), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(223), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2412), + [sym_comment] = ACTIONS(2412), + [anon_sym_POUND_] = ACTIONS(2415), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2418), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2420), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2418), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2423), + [anon_sym_POUND_CARET] = ACTIONS(2426), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_RPAREN] = ACTIONS(2432), + [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(1679), - [aux_sym_accumulation_verb_token1] = ACTIONS(1682), - [anon_sym_for] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_as] = ACTIONS(1682), - [anon_sym_with] = ACTIONS(1682), - [anon_sym_do] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1682), - [anon_sym_until] = ACTIONS(1682), - [anon_sym_repeat] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(1682), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_unless] = ACTIONS(1682), - [anon_sym_always] = ACTIONS(1682), - [anon_sym_thereis] = ACTIONS(1682), - [anon_sym_never] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1682), - [anon_sym_finally] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_initially] = ACTIONS(1682), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2370), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2418), + [anon_sym_cl] = ACTIONS(2434), + [aux_sym_accumulation_verb_token1] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_and] = ACTIONS(2437), + [anon_sym_as] = ACTIONS(2437), + [anon_sym_with] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_until] = ACTIONS(2437), + [anon_sym_repeat] = ACTIONS(2437), + [anon_sym_when] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_unless] = ACTIONS(2437), + [anon_sym_always] = ACTIONS(2437), + [anon_sym_thereis] = ACTIONS(2437), + [anon_sym_never] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_finally] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_initially] = ACTIONS(2437), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2439), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2273), - [sym_num_lit] = STATE(2273), - [sym_kwd_lit] = STATE(2273), - [sym_str_lit] = STATE(2273), - [sym_char_lit] = STATE(2273), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2273), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2273), - [sym_set_lit] = STATE(2273), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2273), - [sym_splicing_read_cond_lit] = STATE(2273), - [sym_var_quoting_lit] = STATE(2273), - [sym_quoting_lit] = STATE(2273), - [sym_syn_quoting_lit] = STATE(2273), - [sym_unquote_splicing_lit] = STATE(2273), - [sym_unquoting_lit] = STATE(2273), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2273), - [sym_package_lit] = STATE(2273), - [sym_include_reader_macro] = STATE(2273), - [sym_complex_num_lit] = STATE(2273), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1657), - [sym_comment] = ACTIONS(1657), - [anon_sym_POUND_] = ACTIONS(1660), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2372), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2372), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1668), - [anon_sym_POUND_CARET] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2441), + [sym_comment] = ACTIONS(2441), + [anon_sym_POUND_] = ACTIONS(2415), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2444), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2420), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2444), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2423), + [anon_sym_POUND_CARET] = ACTIONS(2426), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_RPAREN] = ACTIONS(2432), + [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(2372), - [anon_sym_cl] = ACTIONS(1679), - [aux_sym_accumulation_verb_token1] = ACTIONS(1682), - [anon_sym_for] = ACTIONS(1682), - [anon_sym_and] = ACTIONS(1682), - [anon_sym_as] = ACTIONS(1682), - [anon_sym_with] = ACTIONS(1682), - [anon_sym_do] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1682), - [anon_sym_until] = ACTIONS(1682), - [anon_sym_repeat] = ACTIONS(1682), - [anon_sym_when] = ACTIONS(1682), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_unless] = ACTIONS(1682), - [anon_sym_always] = ACTIONS(1682), - [anon_sym_thereis] = ACTIONS(1682), - [anon_sym_never] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1682), - [anon_sym_finally] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_initially] = ACTIONS(1682), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2374), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2444), + [anon_sym_cl] = ACTIONS(2434), + [aux_sym_accumulation_verb_token1] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_and] = ACTIONS(2437), + [anon_sym_as] = ACTIONS(2437), + [anon_sym_with] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_until] = ACTIONS(2437), + [anon_sym_repeat] = ACTIONS(2437), + [anon_sym_when] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_unless] = ACTIONS(2437), + [anon_sym_always] = ACTIONS(2437), + [anon_sym_thereis] = ACTIONS(2437), + [anon_sym_never] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_finally] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_initially] = ACTIONS(2437), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2446), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2271), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2271), - [sym_set_lit] = STATE(2271), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1704), - [sym_comment] = ACTIONS(1704), - [anon_sym_POUND_] = ACTIONS(1707), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2376), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2376), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_POUND_CARET] = ACTIONS(1718), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_RPAREN] = ACTIONS(1724), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(211), + [sym_dis_expr] = STATE(211), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(211), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2448), + [sym_comment] = ACTIONS(2448), + [anon_sym_POUND_] = ACTIONS(2415), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2451), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2420), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2451), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2423), + [anon_sym_POUND_CARET] = ACTIONS(2426), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_RPAREN] = ACTIONS(2432), + [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(2376), - [anon_sym_cl] = ACTIONS(1726), - [aux_sym_accumulation_verb_token1] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_and] = ACTIONS(1729), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_with] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_until] = ACTIONS(1729), - [anon_sym_repeat] = ACTIONS(1729), - [anon_sym_when] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_unless] = ACTIONS(1729), - [anon_sym_always] = ACTIONS(1729), - [anon_sym_thereis] = ACTIONS(1729), - [anon_sym_never] = ACTIONS(1729), - [anon_sym_else] = ACTIONS(1729), - [anon_sym_finally] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_initially] = ACTIONS(1729), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2378), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2451), + [anon_sym_cl] = ACTIONS(2434), + [aux_sym_accumulation_verb_token1] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_and] = ACTIONS(2437), + [anon_sym_as] = ACTIONS(2437), + [anon_sym_with] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_until] = ACTIONS(2437), + [anon_sym_repeat] = ACTIONS(2437), + [anon_sym_when] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_unless] = ACTIONS(2437), + [anon_sym_always] = ACTIONS(2437), + [anon_sym_thereis] = ACTIONS(2437), + [anon_sym_never] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_finally] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_initially] = ACTIONS(2437), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2453), + [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(58), - [sym_dis_expr] = STATE(58), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2267), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2267), - [sym_set_lit] = STATE(2267), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(58), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2380), - [sym_comment] = ACTIONS(2380), - [anon_sym_POUND_] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2383), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1793), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2383), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_POUND_CARET] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(194), + [sym_dis_expr] = STATE(194), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(194), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2455), + [sym_comment] = ACTIONS(2455), + [anon_sym_POUND_] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2458), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2458), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2358), + [anon_sym_POUND_CARET] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2367), + [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(2383), - [anon_sym_cl] = ACTIONS(1807), - [aux_sym_accumulation_verb_token1] = ACTIONS(1810), - [anon_sym_for] = ACTIONS(1810), - [anon_sym_and] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1810), - [anon_sym_with] = ACTIONS(1810), - [anon_sym_do] = ACTIONS(1810), - [anon_sym_while] = ACTIONS(1810), - [anon_sym_until] = ACTIONS(1810), - [anon_sym_repeat] = ACTIONS(1810), - [anon_sym_when] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1810), - [anon_sym_unless] = ACTIONS(1810), - [anon_sym_always] = ACTIONS(1810), - [anon_sym_thereis] = ACTIONS(1810), - [anon_sym_never] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1810), - [anon_sym_finally] = ACTIONS(1810), - [anon_sym_return] = ACTIONS(1810), - [anon_sym_initially] = ACTIONS(1810), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2385), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2458), + [anon_sym_cl] = ACTIONS(2369), + [aux_sym_accumulation_verb_token1] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_and] = ACTIONS(2372), + [anon_sym_as] = ACTIONS(2372), + [anon_sym_with] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_until] = ACTIONS(2372), + [anon_sym_repeat] = ACTIONS(2372), + [anon_sym_when] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_unless] = ACTIONS(2372), + [anon_sym_always] = ACTIONS(2372), + [anon_sym_thereis] = ACTIONS(2372), + [anon_sym_never] = ACTIONS(2372), + [anon_sym_else] = ACTIONS(2372), + [anon_sym_finally] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_initially] = ACTIONS(2372), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2460), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2266), - [sym_num_lit] = STATE(2266), - [sym_kwd_lit] = STATE(2266), - [sym_str_lit] = STATE(2266), - [sym_char_lit] = STATE(2266), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2266), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2266), - [sym_set_lit] = STATE(2266), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2266), - [sym_splicing_read_cond_lit] = STATE(2266), - [sym_var_quoting_lit] = STATE(2266), - [sym_quoting_lit] = STATE(2266), - [sym_syn_quoting_lit] = STATE(2266), - [sym_unquote_splicing_lit] = STATE(2266), - [sym_unquoting_lit] = STATE(2266), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2266), - [sym_package_lit] = STATE(2266), - [sym_include_reader_macro] = STATE(2266), - [sym_complex_num_lit] = STATE(2266), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1814), - [sym_comment] = ACTIONS(1814), - [anon_sym_POUND_] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2387), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1793), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2387), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_POUND_CARET] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2347), + [sym_comment] = ACTIONS(2347), + [anon_sym_POUND_] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2462), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2462), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2358), + [anon_sym_POUND_CARET] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2367), + [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(2387), - [anon_sym_cl] = ACTIONS(1807), - [aux_sym_accumulation_verb_token1] = ACTIONS(1810), - [anon_sym_for] = ACTIONS(1810), - [anon_sym_and] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1810), - [anon_sym_with] = ACTIONS(1810), - [anon_sym_do] = ACTIONS(1810), - [anon_sym_while] = ACTIONS(1810), - [anon_sym_until] = ACTIONS(1810), - [anon_sym_repeat] = ACTIONS(1810), - [anon_sym_when] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1810), - [anon_sym_unless] = ACTIONS(1810), - [anon_sym_always] = ACTIONS(1810), - [anon_sym_thereis] = ACTIONS(1810), - [anon_sym_never] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1810), - [anon_sym_finally] = ACTIONS(1810), - [anon_sym_return] = ACTIONS(1810), - [anon_sym_initially] = ACTIONS(1810), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2389), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2462), + [anon_sym_cl] = ACTIONS(2369), + [aux_sym_accumulation_verb_token1] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_and] = ACTIONS(2372), + [anon_sym_as] = ACTIONS(2372), + [anon_sym_with] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_until] = ACTIONS(2372), + [anon_sym_repeat] = ACTIONS(2372), + [anon_sym_when] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_unless] = ACTIONS(2372), + [anon_sym_always] = ACTIONS(2372), + [anon_sym_thereis] = ACTIONS(2372), + [anon_sym_never] = ACTIONS(2372), + [anon_sym_else] = ACTIONS(2372), + [anon_sym_finally] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_initially] = ACTIONS(2372), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2464), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2264), - [sym_num_lit] = STATE(2264), - [sym_kwd_lit] = STATE(2264), - [sym_str_lit] = STATE(2264), - [sym_char_lit] = STATE(2264), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2264), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2264), - [sym_set_lit] = STATE(2264), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2264), - [sym_splicing_read_cond_lit] = STATE(2264), - [sym_var_quoting_lit] = STATE(2264), - [sym_quoting_lit] = STATE(2264), - [sym_syn_quoting_lit] = STATE(2264), - [sym_unquote_splicing_lit] = STATE(2264), - [sym_unquoting_lit] = STATE(2264), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2264), - [sym_package_lit] = STATE(2264), - [sym_include_reader_macro] = STATE(2264), - [sym_complex_num_lit] = STATE(2264), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1814), - [sym_comment] = ACTIONS(1814), - [anon_sym_POUND_] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2391), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1793), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2391), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_POUND_CARET] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(111), + [sym_dis_expr] = STATE(111), + [sym__form] = STATE(2484), + [sym_num_lit] = STATE(2484), + [sym_kwd_lit] = STATE(2484), + [sym_str_lit] = STATE(2484), + [sym_char_lit] = STATE(2484), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2484), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2484), + [sym_set_lit] = STATE(2484), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2484), + [sym_splicing_read_cond_lit] = STATE(2484), + [sym_var_quoting_lit] = STATE(2484), + [sym_quoting_lit] = STATE(2484), + [sym_syn_quoting_lit] = STATE(2484), + [sym_unquote_splicing_lit] = STATE(2484), + [sym_unquoting_lit] = STATE(2484), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2484), + [sym_package_lit] = STATE(2484), + [sym_include_reader_macro] = STATE(2484), + [sym_complex_num_lit] = STATE(2484), + [aux_sym_dis_expr_repeat1] = STATE(111), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2466), + [sym_comment] = ACTIONS(2466), + [anon_sym_POUND_] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2469), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2206), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2469), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2209), + [anon_sym_POUND_CARET] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_RPAREN] = ACTIONS(2218), + [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(2391), - [anon_sym_cl] = ACTIONS(1807), - [aux_sym_accumulation_verb_token1] = ACTIONS(1810), - [anon_sym_for] = ACTIONS(1810), - [anon_sym_and] = ACTIONS(1810), - [anon_sym_as] = ACTIONS(1810), - [anon_sym_with] = ACTIONS(1810), - [anon_sym_do] = ACTIONS(1810), - [anon_sym_while] = ACTIONS(1810), - [anon_sym_until] = ACTIONS(1810), - [anon_sym_repeat] = ACTIONS(1810), - [anon_sym_when] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1810), - [anon_sym_unless] = ACTIONS(1810), - [anon_sym_always] = ACTIONS(1810), - [anon_sym_thereis] = ACTIONS(1810), - [anon_sym_never] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1810), - [anon_sym_finally] = ACTIONS(1810), - [anon_sym_return] = ACTIONS(1810), - [anon_sym_initially] = ACTIONS(1810), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2393), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2469), + [anon_sym_cl] = ACTIONS(2220), + [aux_sym_accumulation_verb_token1] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_and] = ACTIONS(2223), + [anon_sym_as] = ACTIONS(2223), + [anon_sym_with] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [anon_sym_until] = ACTIONS(2223), + [anon_sym_repeat] = ACTIONS(2223), + [anon_sym_when] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_unless] = ACTIONS(2223), + [anon_sym_always] = ACTIONS(2223), + [anon_sym_thereis] = ACTIONS(2223), + [anon_sym_never] = ACTIONS(2223), + [anon_sym_else] = ACTIONS(2223), + [anon_sym_finally] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_initially] = ACTIONS(2223), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2471), + [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(60), - [sym_dis_expr] = STATE(60), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2259), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2259), - [sym_set_lit] = STATE(2259), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(60), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2395), - [sym_comment] = ACTIONS(2395), - [anon_sym_POUND_] = ACTIONS(2398), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2401), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2403), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2401), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2406), - [anon_sym_POUND_CARET] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2412), - [anon_sym_RPAREN] = ACTIONS(2415), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(149), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2473), + [sym_comment] = ACTIONS(2473), + [anon_sym_POUND_] = ACTIONS(2476), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2479), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2481), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2479), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_POUND_CARET] = ACTIONS(2487), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_RPAREN] = ACTIONS(2493), + [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(2417), - [aux_sym_accumulation_verb_token1] = ACTIONS(2420), - [anon_sym_for] = ACTIONS(2420), - [anon_sym_and] = ACTIONS(2420), - [anon_sym_as] = ACTIONS(2420), - [anon_sym_with] = ACTIONS(2420), - [anon_sym_do] = ACTIONS(2420), - [anon_sym_while] = ACTIONS(2420), - [anon_sym_until] = ACTIONS(2420), - [anon_sym_repeat] = ACTIONS(2420), - [anon_sym_when] = ACTIONS(2420), - [anon_sym_if] = ACTIONS(2420), - [anon_sym_unless] = ACTIONS(2420), - [anon_sym_always] = ACTIONS(2420), - [anon_sym_thereis] = ACTIONS(2420), - [anon_sym_never] = ACTIONS(2420), - [anon_sym_else] = ACTIONS(2420), - [anon_sym_finally] = ACTIONS(2420), - [anon_sym_return] = ACTIONS(2420), - [anon_sym_initially] = ACTIONS(2420), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2422), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2479), + [anon_sym_cl] = ACTIONS(2495), + [aux_sym_accumulation_verb_token1] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2498), + [anon_sym_and] = ACTIONS(2498), + [anon_sym_as] = ACTIONS(2498), + [anon_sym_with] = ACTIONS(2498), + [anon_sym_do] = ACTIONS(2498), + [anon_sym_while] = ACTIONS(2498), + [anon_sym_until] = ACTIONS(2498), + [anon_sym_repeat] = ACTIONS(2498), + [anon_sym_when] = ACTIONS(2498), + [anon_sym_if] = ACTIONS(2498), + [anon_sym_unless] = ACTIONS(2498), + [anon_sym_always] = ACTIONS(2498), + [anon_sym_thereis] = ACTIONS(2498), + [anon_sym_never] = ACTIONS(2498), + [anon_sym_else] = ACTIONS(2498), + [anon_sym_finally] = ACTIONS(2498), + [anon_sym_return] = ACTIONS(2498), + [anon_sym_initially] = ACTIONS(2498), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2500), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2258), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2258), - [sym_set_lit] = STATE(2258), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2424), - [sym_comment] = ACTIONS(2424), - [anon_sym_POUND_] = ACTIONS(2398), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2427), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2403), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2427), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2406), - [anon_sym_POUND_CARET] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2412), - [anon_sym_RPAREN] = ACTIONS(2415), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2427), - [anon_sym_cl] = ACTIONS(2417), - [aux_sym_accumulation_verb_token1] = ACTIONS(2420), - [anon_sym_for] = ACTIONS(2420), - [anon_sym_and] = ACTIONS(2420), - [anon_sym_as] = ACTIONS(2420), - [anon_sym_with] = ACTIONS(2420), - [anon_sym_do] = ACTIONS(2420), - [anon_sym_while] = ACTIONS(2420), - [anon_sym_until] = ACTIONS(2420), - [anon_sym_repeat] = ACTIONS(2420), - [anon_sym_when] = ACTIONS(2420), - [anon_sym_if] = ACTIONS(2420), - [anon_sym_unless] = ACTIONS(2420), - [anon_sym_always] = ACTIONS(2420), - [anon_sym_thereis] = ACTIONS(2420), - [anon_sym_never] = ACTIONS(2420), - [anon_sym_else] = ACTIONS(2420), - [anon_sym_finally] = ACTIONS(2420), - [anon_sym_return] = ACTIONS(2420), - [anon_sym_initially] = ACTIONS(2420), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2429), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [121] = { - [sym__gap] = STATE(63), - [sym_dis_expr] = STATE(63), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2256), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2256), - [sym_set_lit] = STATE(2256), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(63), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2431), - [sym_comment] = ACTIONS(2431), - [anon_sym_POUND_] = ACTIONS(2398), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2434), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2403), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2434), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2406), - [anon_sym_POUND_CARET] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2412), - [anon_sym_RPAREN] = ACTIONS(2415), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2434), - [anon_sym_cl] = ACTIONS(2417), - [aux_sym_accumulation_verb_token1] = ACTIONS(2420), - [anon_sym_for] = ACTIONS(2420), - [anon_sym_and] = ACTIONS(2420), - [anon_sym_as] = ACTIONS(2420), - [anon_sym_with] = ACTIONS(2420), - [anon_sym_do] = ACTIONS(2420), - [anon_sym_while] = ACTIONS(2420), - [anon_sym_until] = ACTIONS(2420), - [anon_sym_repeat] = ACTIONS(2420), - [anon_sym_when] = ACTIONS(2420), - [anon_sym_if] = ACTIONS(2420), - [anon_sym_unless] = ACTIONS(2420), - [anon_sym_always] = ACTIONS(2420), - [anon_sym_thereis] = ACTIONS(2420), - [anon_sym_never] = ACTIONS(2420), - [anon_sym_else] = ACTIONS(2420), - [anon_sym_finally] = ACTIONS(2420), - [anon_sym_return] = ACTIONS(2420), - [anon_sym_initially] = ACTIONS(2420), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2436), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [122] = { - [sym__gap] = STATE(64), - [sym_dis_expr] = STATE(64), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2254), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2254), - [sym_set_lit] = STATE(2254), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(64), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2438), - [sym_comment] = ACTIONS(2438), - [anon_sym_POUND_] = ACTIONS(2441), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2444), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2446), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2444), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2449), - [anon_sym_POUND_CARET] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2458), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2444), - [anon_sym_cl] = ACTIONS(2460), - [aux_sym_accumulation_verb_token1] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_and] = ACTIONS(2463), - [anon_sym_as] = ACTIONS(2463), - [anon_sym_with] = ACTIONS(2463), - [anon_sym_do] = ACTIONS(2463), - [anon_sym_while] = ACTIONS(2463), - [anon_sym_until] = ACTIONS(2463), - [anon_sym_repeat] = ACTIONS(2463), - [anon_sym_when] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_unless] = ACTIONS(2463), - [anon_sym_always] = ACTIONS(2463), - [anon_sym_thereis] = ACTIONS(2463), - [anon_sym_never] = ACTIONS(2463), - [anon_sym_else] = ACTIONS(2463), - [anon_sym_finally] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_initially] = ACTIONS(2463), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2465), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [123] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2253), - [sym_num_lit] = STATE(2253), - [sym_kwd_lit] = STATE(2253), - [sym_str_lit] = STATE(2253), - [sym_char_lit] = STATE(2253), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2253), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2253), - [sym_set_lit] = STATE(2253), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2253), - [sym_splicing_read_cond_lit] = STATE(2253), - [sym_var_quoting_lit] = STATE(2253), - [sym_quoting_lit] = STATE(2253), - [sym_syn_quoting_lit] = STATE(2253), - [sym_unquote_splicing_lit] = STATE(2253), - [sym_unquoting_lit] = STATE(2253), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2253), - [sym_package_lit] = STATE(2253), - [sym_include_reader_macro] = STATE(2253), - [sym_complex_num_lit] = STATE(2253), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2467), - [sym_comment] = ACTIONS(2467), - [anon_sym_POUND_] = ACTIONS(2441), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2470), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2446), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2470), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2449), - [anon_sym_POUND_CARET] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2458), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2470), - [anon_sym_cl] = ACTIONS(2460), - [aux_sym_accumulation_verb_token1] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_and] = ACTIONS(2463), - [anon_sym_as] = ACTIONS(2463), - [anon_sym_with] = ACTIONS(2463), - [anon_sym_do] = ACTIONS(2463), - [anon_sym_while] = ACTIONS(2463), - [anon_sym_until] = ACTIONS(2463), - [anon_sym_repeat] = ACTIONS(2463), - [anon_sym_when] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_unless] = ACTIONS(2463), - [anon_sym_always] = ACTIONS(2463), - [anon_sym_thereis] = ACTIONS(2463), - [anon_sym_never] = ACTIONS(2463), - [anon_sym_else] = ACTIONS(2463), - [anon_sym_finally] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_initially] = ACTIONS(2463), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2472), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [124] = { - [sym__gap] = STATE(270), - [sym_dis_expr] = STATE(270), - [sym__form] = STATE(2694), - [sym_num_lit] = STATE(2694), - [sym_kwd_lit] = STATE(2694), - [sym_str_lit] = STATE(2694), - [sym_char_lit] = STATE(2694), - [sym_sym_lit] = STATE(2744), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2694), - [sym__bare_list_lit] = STATE(1926), - [sym_vec_lit] = STATE(2694), - [sym_set_lit] = STATE(2694), - [sym__bare_set_lit] = STATE(1927), - [sym_read_cond_lit] = STATE(2694), - [sym_splicing_read_cond_lit] = STATE(2694), - [sym_var_quoting_lit] = STATE(2694), - [sym_quoting_lit] = STATE(2694), - [sym_syn_quoting_lit] = STATE(2694), - [sym_unquote_splicing_lit] = STATE(2694), - [sym_unquoting_lit] = STATE(2694), - [sym_defun] = STATE(1926), - [sym_for_clause_word] = STATE(549), - [sym__for_part] = STATE(1556), - [sym_loop_macro] = STATE(1926), - [sym_path_lit] = STATE(2694), - [sym_package_lit] = STATE(2694), - [sym_include_reader_macro] = STATE(2694), - [sym_complex_num_lit] = STATE(2694), - [aux_sym_dis_expr_repeat1] = STATE(270), - [aux_sym_list_lit_repeat1] = STATE(2781), - [aux_sym_for_clause_repeat1] = STATE(1250), - [sym__ws] = ACTIONS(2474), - [sym_comment] = ACTIONS(2474), - [anon_sym_POUND_] = ACTIONS(2310), - [anon_sym_POUND] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(2476), - [aux_sym_num_lit_token1] = ACTIONS(2316), - [anon_sym_COLON] = ACTIONS(2318), - [anon_sym_COLON_COLON] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2322), - [sym_nil_lit] = ACTIONS(2476), - [aux_sym_sym_lit_token1] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_POUND0A] = ACTIONS(2328), - [anon_sym_POUND0a] = ACTIONS(2328), - [anon_sym_POUND_QMARK] = ACTIONS(2330), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2332), - [anon_sym_POUND_SQUOTE] = ACTIONS(2334), - [anon_sym_SQUOTE] = ACTIONS(2336), - [anon_sym_BQUOTE] = ACTIONS(2338), - [anon_sym_COMMA_AT] = ACTIONS(2340), - [anon_sym_COMMA] = ACTIONS(2342), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2476), - [anon_sym_cl] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2346), - [anon_sym_across] = ACTIONS(2346), - [anon_sym_being] = ACTIONS(2346), - [anon_sym_using] = ACTIONS(2346), - [aux_sym_for_clause_word_token1] = ACTIONS(2348), - [anon_sym_below] = ACTIONS(2346), - [anon_sym_above] = ACTIONS(2346), - [anon_sym_from] = ACTIONS(2346), - [anon_sym_to] = ACTIONS(2346), - [anon_sym_upto] = ACTIONS(2346), - [anon_sym_upfrom] = ACTIONS(2346), - [anon_sym_downto] = ACTIONS(2346), - [anon_sym_downfrom] = ACTIONS(2346), - [anon_sym_on] = ACTIONS(2346), - [anon_sym_by] = ACTIONS(2346), - [anon_sym_then] = ACTIONS(2346), - [anon_sym_EQ] = ACTIONS(2346), - [anon_sym_POUNDP] = ACTIONS(2350), - [anon_sym_POUNDp] = ACTIONS(2350), - [sym_self_referential_reader_macro] = ACTIONS(2478), - [anon_sym_POUND_PLUS] = ACTIONS(2354), - [anon_sym_POUND_DASH] = ACTIONS(2354), - [anon_sym_POUNDC] = ACTIONS(2356), - [anon_sym_POUNDc] = ACTIONS(2356), - }, - [125] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2251), - [sym_num_lit] = STATE(2251), - [sym_kwd_lit] = STATE(2251), - [sym_str_lit] = STATE(2251), - [sym_char_lit] = STATE(2251), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2251), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2251), - [sym_set_lit] = STATE(2251), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2251), - [sym_splicing_read_cond_lit] = STATE(2251), - [sym_var_quoting_lit] = STATE(2251), - [sym_quoting_lit] = STATE(2251), - [sym_syn_quoting_lit] = STATE(2251), - [sym_unquote_splicing_lit] = STATE(2251), - [sym_unquoting_lit] = STATE(2251), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2251), - [sym_package_lit] = STATE(2251), - [sym_include_reader_macro] = STATE(2251), - [sym_complex_num_lit] = STATE(2251), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2480), - [sym_comment] = ACTIONS(2480), - [anon_sym_POUND_] = ACTIONS(2483), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2486), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2488), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2486), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_POUND_CARET] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2497), - [anon_sym_RPAREN] = ACTIONS(2500), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2502), + [sym_comment] = ACTIONS(2502), + [anon_sym_POUND_] = ACTIONS(2476), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2505), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2481), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2505), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_POUND_CARET] = ACTIONS(2487), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_RPAREN] = ACTIONS(2493), + [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(2486), - [anon_sym_cl] = ACTIONS(2502), - [aux_sym_accumulation_verb_token1] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_and] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_with] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_until] = ACTIONS(2505), - [anon_sym_repeat] = ACTIONS(2505), - [anon_sym_when] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_unless] = ACTIONS(2505), - [anon_sym_always] = ACTIONS(2505), - [anon_sym_thereis] = ACTIONS(2505), - [anon_sym_never] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_finally] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_initially] = ACTIONS(2505), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), + [sym_fancy_literal] = ACTIONS(2505), + [anon_sym_cl] = ACTIONS(2495), + [aux_sym_accumulation_verb_token1] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2498), + [anon_sym_and] = ACTIONS(2498), + [anon_sym_as] = ACTIONS(2498), + [anon_sym_with] = ACTIONS(2498), + [anon_sym_do] = ACTIONS(2498), + [anon_sym_while] = ACTIONS(2498), + [anon_sym_until] = ACTIONS(2498), + [anon_sym_repeat] = ACTIONS(2498), + [anon_sym_when] = ACTIONS(2498), + [anon_sym_if] = ACTIONS(2498), + [anon_sym_unless] = ACTIONS(2498), + [anon_sym_always] = ACTIONS(2498), + [anon_sym_thereis] = ACTIONS(2498), + [anon_sym_never] = ACTIONS(2498), + [anon_sym_else] = ACTIONS(2498), + [anon_sym_finally] = ACTIONS(2498), + [anon_sym_return] = ACTIONS(2498), + [anon_sym_initially] = ACTIONS(2498), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), [sym_self_referential_reader_macro] = ACTIONS(2507), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [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(69), - [sym_dis_expr] = STATE(69), - [sym__form] = STATE(2249), - [sym_num_lit] = STATE(2249), - [sym_kwd_lit] = STATE(2249), - [sym_str_lit] = STATE(2249), - [sym_char_lit] = STATE(2249), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2249), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2249), - [sym_set_lit] = STATE(2249), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2249), - [sym_splicing_read_cond_lit] = STATE(2249), - [sym_var_quoting_lit] = STATE(2249), - [sym_quoting_lit] = STATE(2249), - [sym_syn_quoting_lit] = STATE(2249), - [sym_unquote_splicing_lit] = STATE(2249), - [sym_unquoting_lit] = STATE(2249), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2249), - [sym_package_lit] = STATE(2249), - [sym_include_reader_macro] = STATE(2249), - [sym_complex_num_lit] = STATE(2249), - [aux_sym_dis_expr_repeat1] = STATE(69), - [aux_sym_list_lit_repeat1] = STATE(2789), + [121] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2497), + [sym_num_lit] = STATE(2497), + [sym_kwd_lit] = STATE(2497), + [sym_str_lit] = STATE(2497), + [sym_char_lit] = STATE(2497), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2497), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2497), + [sym_set_lit] = STATE(2497), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2497), + [sym_splicing_read_cond_lit] = STATE(2497), + [sym_var_quoting_lit] = STATE(2497), + [sym_quoting_lit] = STATE(2497), + [sym_syn_quoting_lit] = STATE(2497), + [sym_unquote_splicing_lit] = STATE(2497), + [sym_unquoting_lit] = STATE(2497), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2497), + [sym_package_lit] = STATE(2497), + [sym_include_reader_macro] = STATE(2497), + [sym_complex_num_lit] = STATE(2497), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), [sym__ws] = ACTIONS(2509), [sym_comment] = ACTIONS(2509), - [anon_sym_POUND_] = ACTIONS(2483), - [anon_sym_POUND] = ACTIONS(223), + [anon_sym_POUND_] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(67), [anon_sym_DOT] = ACTIONS(2512), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2488), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2094), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), [sym_nil_lit] = ACTIONS(2512), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_POUND_CARET] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2497), - [anon_sym_RPAREN] = ACTIONS(2500), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2097), + [anon_sym_POUND_CARET] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_RPAREN] = ACTIONS(2106), + [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(2512), - [anon_sym_cl] = ACTIONS(2502), - [aux_sym_accumulation_verb_token1] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_and] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_with] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_until] = ACTIONS(2505), - [anon_sym_repeat] = ACTIONS(2505), - [anon_sym_when] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_unless] = ACTIONS(2505), - [anon_sym_always] = ACTIONS(2505), - [anon_sym_thereis] = ACTIONS(2505), - [anon_sym_never] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_finally] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_initially] = ACTIONS(2505), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), + [anon_sym_cl] = ACTIONS(2108), + [aux_sym_accumulation_verb_token1] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_and] = ACTIONS(2111), + [anon_sym_as] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_until] = ACTIONS(2111), + [anon_sym_repeat] = ACTIONS(2111), + [anon_sym_when] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_unless] = ACTIONS(2111), + [anon_sym_always] = ACTIONS(2111), + [anon_sym_thereis] = ACTIONS(2111), + [anon_sym_never] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_initially] = ACTIONS(2111), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), [sym_self_referential_reader_macro] = ACTIONS(2514), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [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(70), - [sym_dis_expr] = STATE(70), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2247), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2247), - [sym_set_lit] = STATE(2247), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(70), - [aux_sym_list_lit_repeat1] = STATE(2789), + [122] = { + [sym__gap] = STATE(45), + [sym_dis_expr] = STATE(45), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(45), + [aux_sym_list_lit_repeat1] = STATE(2804), [sym__ws] = ACTIONS(2516), [sym_comment] = ACTIONS(2516), - [anon_sym_POUND_] = ACTIONS(2483), - [anon_sym_POUND] = ACTIONS(223), + [anon_sym_POUND_] = ACTIONS(2476), + [anon_sym_POUND] = ACTIONS(67), [anon_sym_DOT] = ACTIONS(2519), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2488), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2481), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), [sym_nil_lit] = ACTIONS(2519), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_POUND_CARET] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2497), - [anon_sym_RPAREN] = ACTIONS(2500), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym_POUND_CARET] = ACTIONS(2487), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_RPAREN] = ACTIONS(2493), + [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(2519), - [anon_sym_cl] = ACTIONS(2502), - [aux_sym_accumulation_verb_token1] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_and] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_with] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_until] = ACTIONS(2505), - [anon_sym_repeat] = ACTIONS(2505), - [anon_sym_when] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_unless] = ACTIONS(2505), - [anon_sym_always] = ACTIONS(2505), - [anon_sym_thereis] = ACTIONS(2505), - [anon_sym_never] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_finally] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_initially] = ACTIONS(2505), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), + [anon_sym_cl] = ACTIONS(2495), + [aux_sym_accumulation_verb_token1] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2498), + [anon_sym_and] = ACTIONS(2498), + [anon_sym_as] = ACTIONS(2498), + [anon_sym_with] = ACTIONS(2498), + [anon_sym_do] = ACTIONS(2498), + [anon_sym_while] = ACTIONS(2498), + [anon_sym_until] = ACTIONS(2498), + [anon_sym_repeat] = ACTIONS(2498), + [anon_sym_when] = ACTIONS(2498), + [anon_sym_if] = ACTIONS(2498), + [anon_sym_unless] = ACTIONS(2498), + [anon_sym_always] = ACTIONS(2498), + [anon_sym_thereis] = ACTIONS(2498), + [anon_sym_never] = ACTIONS(2498), + [anon_sym_else] = ACTIONS(2498), + [anon_sym_finally] = ACTIONS(2498), + [anon_sym_return] = ACTIONS(2498), + [anon_sym_initially] = ACTIONS(2498), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), [sym_self_referential_reader_macro] = ACTIONS(2521), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2401), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2401), - [sym_set_lit] = STATE(2401), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2523), - [sym_comment] = ACTIONS(2523), - [anon_sym_POUND_] = ACTIONS(2526), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2529), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2531), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2529), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_POUND_CARET] = ACTIONS(2537), - [anon_sym_LPAREN] = ACTIONS(2540), - [anon_sym_RPAREN] = ACTIONS(2543), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [123] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2501), + [sym_num_lit] = STATE(2501), + [sym_kwd_lit] = STATE(2501), + [sym_str_lit] = STATE(2501), + [sym_char_lit] = STATE(2501), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2501), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2501), + [sym_set_lit] = STATE(2501), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2501), + [sym_splicing_read_cond_lit] = STATE(2501), + [sym_var_quoting_lit] = STATE(2501), + [sym_quoting_lit] = STATE(2501), + [sym_syn_quoting_lit] = STATE(2501), + [sym_unquote_splicing_lit] = STATE(2501), + [sym_unquoting_lit] = STATE(2501), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2501), + [sym_package_lit] = STATE(2501), + [sym_include_reader_macro] = STATE(2501), + [sym_complex_num_lit] = STATE(2501), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2509), + [sym_comment] = ACTIONS(2509), + [anon_sym_POUND_] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2523), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2094), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2523), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2097), + [anon_sym_POUND_CARET] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_RPAREN] = ACTIONS(2106), + [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(2529), - [anon_sym_cl] = ACTIONS(2545), - [aux_sym_accumulation_verb_token1] = ACTIONS(2548), - [anon_sym_for] = ACTIONS(2548), - [anon_sym_and] = ACTIONS(2548), - [anon_sym_as] = ACTIONS(2548), - [anon_sym_with] = ACTIONS(2548), - [anon_sym_do] = ACTIONS(2548), - [anon_sym_while] = ACTIONS(2548), - [anon_sym_until] = ACTIONS(2548), - [anon_sym_repeat] = ACTIONS(2548), - [anon_sym_when] = ACTIONS(2548), - [anon_sym_if] = ACTIONS(2548), - [anon_sym_unless] = ACTIONS(2548), - [anon_sym_always] = ACTIONS(2548), - [anon_sym_thereis] = ACTIONS(2548), - [anon_sym_never] = ACTIONS(2548), - [anon_sym_else] = ACTIONS(2548), - [anon_sym_finally] = ACTIONS(2548), - [anon_sym_return] = ACTIONS(2548), - [anon_sym_initially] = ACTIONS(2548), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2550), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2523), + [anon_sym_cl] = ACTIONS(2108), + [aux_sym_accumulation_verb_token1] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_and] = ACTIONS(2111), + [anon_sym_as] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_until] = ACTIONS(2111), + [anon_sym_repeat] = ACTIONS(2111), + [anon_sym_when] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_unless] = ACTIONS(2111), + [anon_sym_always] = ACTIONS(2111), + [anon_sym_thereis] = ACTIONS(2111), + [anon_sym_never] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_initially] = ACTIONS(2111), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2525), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2384), - [sym_num_lit] = STATE(2384), - [sym_kwd_lit] = STATE(2384), - [sym_str_lit] = STATE(2384), - [sym_char_lit] = STATE(2384), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2384), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2384), - [sym_set_lit] = STATE(2384), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2384), - [sym_splicing_read_cond_lit] = STATE(2384), - [sym_var_quoting_lit] = STATE(2384), - [sym_quoting_lit] = STATE(2384), - [sym_syn_quoting_lit] = STATE(2384), - [sym_unquote_splicing_lit] = STATE(2384), - [sym_unquoting_lit] = STATE(2384), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2384), - [sym_package_lit] = STATE(2384), - [sym_include_reader_macro] = STATE(2384), - [sym_complex_num_lit] = STATE(2384), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1628), - [sym_comment] = ACTIONS(1628), - [anon_sym_POUND_] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2552), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1636), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2552), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_POUND_CARET] = ACTIONS(1642), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1648), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [124] = { + [sym__gap] = STATE(47), + [sym_dis_expr] = STATE(47), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(47), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2527), + [sym_comment] = ACTIONS(2527), + [anon_sym_POUND_] = ACTIONS(2530), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2533), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2535), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2533), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_POUND_CARET] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(2544), + [anon_sym_RPAREN] = ACTIONS(2547), + [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(2552), - [anon_sym_cl] = ACTIONS(1650), - [aux_sym_accumulation_verb_token1] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_and] = ACTIONS(1653), - [anon_sym_as] = ACTIONS(1653), - [anon_sym_with] = ACTIONS(1653), - [anon_sym_do] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_until] = ACTIONS(1653), - [anon_sym_repeat] = ACTIONS(1653), - [anon_sym_when] = ACTIONS(1653), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_unless] = ACTIONS(1653), - [anon_sym_always] = ACTIONS(1653), - [anon_sym_thereis] = ACTIONS(1653), - [anon_sym_never] = ACTIONS(1653), - [anon_sym_else] = ACTIONS(1653), - [anon_sym_finally] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_initially] = ACTIONS(1653), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), + [sym_fancy_literal] = ACTIONS(2533), + [anon_sym_cl] = ACTIONS(2549), + [aux_sym_accumulation_verb_token1] = ACTIONS(2552), + [anon_sym_for] = ACTIONS(2552), + [anon_sym_and] = ACTIONS(2552), + [anon_sym_as] = ACTIONS(2552), + [anon_sym_with] = ACTIONS(2552), + [anon_sym_do] = ACTIONS(2552), + [anon_sym_while] = ACTIONS(2552), + [anon_sym_until] = ACTIONS(2552), + [anon_sym_repeat] = ACTIONS(2552), + [anon_sym_when] = ACTIONS(2552), + [anon_sym_if] = ACTIONS(2552), + [anon_sym_unless] = ACTIONS(2552), + [anon_sym_always] = ACTIONS(2552), + [anon_sym_thereis] = ACTIONS(2552), + [anon_sym_never] = ACTIONS(2552), + [anon_sym_else] = ACTIONS(2552), + [anon_sym_finally] = ACTIONS(2552), + [anon_sym_return] = ACTIONS(2552), + [anon_sym_initially] = ACTIONS(2552), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), [sym_self_referential_reader_macro] = ACTIONS(2554), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2450), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2450), - [sym_set_lit] = STATE(2450), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1548), - [sym_comment] = ACTIONS(1548), - [anon_sym_POUND_] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2556), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1527), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2556), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1530), - [anon_sym_POUND_CARET] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_RPAREN] = ACTIONS(1539), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [125] = { + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2556), + [sym_comment] = ACTIONS(2556), + [anon_sym_POUND_] = ACTIONS(2530), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2559), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2535), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2559), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_POUND_CARET] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(2544), + [anon_sym_RPAREN] = ACTIONS(2547), + [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(2556), - [anon_sym_cl] = ACTIONS(1541), - [aux_sym_accumulation_verb_token1] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_as] = ACTIONS(1544), - [anon_sym_with] = ACTIONS(1544), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_until] = ACTIONS(1544), - [anon_sym_repeat] = ACTIONS(1544), - [anon_sym_when] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_unless] = ACTIONS(1544), - [anon_sym_always] = ACTIONS(1544), - [anon_sym_thereis] = ACTIONS(1544), - [anon_sym_never] = ACTIONS(1544), - [anon_sym_else] = ACTIONS(1544), - [anon_sym_finally] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_initially] = ACTIONS(1544), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2558), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2559), + [anon_sym_cl] = ACTIONS(2549), + [aux_sym_accumulation_verb_token1] = ACTIONS(2552), + [anon_sym_for] = ACTIONS(2552), + [anon_sym_and] = ACTIONS(2552), + [anon_sym_as] = ACTIONS(2552), + [anon_sym_with] = ACTIONS(2552), + [anon_sym_do] = ACTIONS(2552), + [anon_sym_while] = ACTIONS(2552), + [anon_sym_until] = ACTIONS(2552), + [anon_sym_repeat] = ACTIONS(2552), + [anon_sym_when] = ACTIONS(2552), + [anon_sym_if] = ACTIONS(2552), + [anon_sym_unless] = ACTIONS(2552), + [anon_sym_always] = ACTIONS(2552), + [anon_sym_thereis] = ACTIONS(2552), + [anon_sym_never] = ACTIONS(2552), + [anon_sym_else] = ACTIONS(2552), + [anon_sym_finally] = ACTIONS(2552), + [anon_sym_return] = ACTIONS(2552), + [anon_sym_initially] = ACTIONS(2552), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2561), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2380), - [sym_num_lit] = STATE(2380), - [sym_kwd_lit] = STATE(2380), - [sym_str_lit] = STATE(2380), - [sym_char_lit] = STATE(2380), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2380), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2380), - [sym_set_lit] = STATE(2380), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2380), - [sym_splicing_read_cond_lit] = STATE(2380), - [sym_var_quoting_lit] = STATE(2380), - [sym_quoting_lit] = STATE(2380), - [sym_syn_quoting_lit] = STATE(2380), - [sym_unquote_splicing_lit] = STATE(2380), - [sym_unquoting_lit] = STATE(2380), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2380), - [sym_package_lit] = STATE(2380), - [sym_include_reader_macro] = STATE(2380), - [sym_complex_num_lit] = STATE(2380), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2560), - [sym_comment] = ACTIONS(2560), - [anon_sym_POUND_] = ACTIONS(2563), - [anon_sym_POUND] = ACTIONS(223), + [126] = { + [sym__gap] = STATE(269), + [sym_dis_expr] = STATE(269), + [sym__form] = STATE(2514), + [sym_num_lit] = STATE(2514), + [sym_kwd_lit] = STATE(2514), + [sym_str_lit] = STATE(2514), + [sym_char_lit] = STATE(2514), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2514), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2514), + [sym_set_lit] = STATE(2514), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2514), + [sym_splicing_read_cond_lit] = STATE(2514), + [sym_var_quoting_lit] = STATE(2514), + [sym_quoting_lit] = STATE(2514), + [sym_syn_quoting_lit] = STATE(2514), + [sym_unquote_splicing_lit] = STATE(2514), + [sym_unquoting_lit] = STATE(2514), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2514), + [sym_package_lit] = STATE(2514), + [sym_include_reader_macro] = STATE(2514), + [sym_complex_num_lit] = STATE(2514), + [aux_sym_dis_expr_repeat1] = STATE(269), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2563), + [sym_comment] = ACTIONS(2563), + [anon_sym_POUND_] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(67), [anon_sym_DOT] = ACTIONS(2566), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2568), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2094), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), [sym_nil_lit] = ACTIONS(2566), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2571), - [anon_sym_POUND_CARET] = ACTIONS(2574), - [anon_sym_LPAREN] = ACTIONS(2577), - [anon_sym_RPAREN] = ACTIONS(2580), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2097), + [anon_sym_POUND_CARET] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_RPAREN] = ACTIONS(2106), + [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(2566), - [anon_sym_cl] = ACTIONS(2582), - [aux_sym_accumulation_verb_token1] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2585), - [anon_sym_and] = ACTIONS(2585), - [anon_sym_as] = ACTIONS(2585), - [anon_sym_with] = ACTIONS(2585), - [anon_sym_do] = ACTIONS(2585), - [anon_sym_while] = ACTIONS(2585), - [anon_sym_until] = ACTIONS(2585), - [anon_sym_repeat] = ACTIONS(2585), - [anon_sym_when] = ACTIONS(2585), - [anon_sym_if] = ACTIONS(2585), - [anon_sym_unless] = ACTIONS(2585), - [anon_sym_always] = ACTIONS(2585), - [anon_sym_thereis] = ACTIONS(2585), - [anon_sym_never] = ACTIONS(2585), - [anon_sym_else] = ACTIONS(2585), - [anon_sym_finally] = ACTIONS(2585), - [anon_sym_return] = ACTIONS(2585), - [anon_sym_initially] = ACTIONS(2585), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2587), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [anon_sym_cl] = ACTIONS(2108), + [aux_sym_accumulation_verb_token1] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_and] = ACTIONS(2111), + [anon_sym_as] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_until] = ACTIONS(2111), + [anon_sym_repeat] = ACTIONS(2111), + [anon_sym_when] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_unless] = ACTIONS(2111), + [anon_sym_always] = ACTIONS(2111), + [anon_sym_thereis] = ACTIONS(2111), + [anon_sym_never] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_initially] = ACTIONS(2111), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2568), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2246), - [sym_num_lit] = STATE(2246), - [sym_kwd_lit] = STATE(2246), - [sym_str_lit] = STATE(2246), - [sym_char_lit] = STATE(2246), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2246), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2246), - [sym_set_lit] = STATE(2246), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2246), - [sym_splicing_read_cond_lit] = STATE(2246), - [sym_var_quoting_lit] = STATE(2246), - [sym_quoting_lit] = STATE(2246), - [sym_syn_quoting_lit] = STATE(2246), - [sym_unquote_splicing_lit] = STATE(2246), - [sym_unquoting_lit] = STATE(2246), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2246), - [sym_package_lit] = STATE(2246), - [sym_include_reader_macro] = STATE(2246), - [sym_complex_num_lit] = STATE(2246), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2480), - [sym_comment] = ACTIONS(2480), - [anon_sym_POUND_] = ACTIONS(2483), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2589), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2488), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2589), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_POUND_CARET] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2497), - [anon_sym_RPAREN] = ACTIONS(2500), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [127] = { + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2570), + [sym_comment] = ACTIONS(2570), + [anon_sym_POUND_] = ACTIONS(2573), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2576), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2578), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2576), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2581), + [anon_sym_POUND_CARET] = ACTIONS(2584), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_RPAREN] = ACTIONS(2590), + [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(2589), - [anon_sym_cl] = ACTIONS(2502), - [aux_sym_accumulation_verb_token1] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_and] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_with] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_until] = ACTIONS(2505), - [anon_sym_repeat] = ACTIONS(2505), - [anon_sym_when] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_unless] = ACTIONS(2505), - [anon_sym_always] = ACTIONS(2505), - [anon_sym_thereis] = ACTIONS(2505), - [anon_sym_never] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_finally] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_initially] = ACTIONS(2505), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2591), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2576), + [anon_sym_cl] = ACTIONS(2592), + [aux_sym_accumulation_verb_token1] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_and] = ACTIONS(2595), + [anon_sym_as] = ACTIONS(2595), + [anon_sym_with] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_until] = ACTIONS(2595), + [anon_sym_repeat] = ACTIONS(2595), + [anon_sym_when] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_unless] = ACTIONS(2595), + [anon_sym_always] = ACTIONS(2595), + [anon_sym_thereis] = ACTIONS(2595), + [anon_sym_never] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_finally] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_initially] = ACTIONS(2595), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2597), + [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(982), - [sym_dis_expr] = STATE(982), + [128] = { + [sym__gap] = STATE(53), + [sym_dis_expr] = STATE(53), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(53), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2599), + [sym_comment] = ACTIONS(2599), + [anon_sym_POUND_] = ACTIONS(2573), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2602), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2578), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2602), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2581), + [anon_sym_POUND_CARET] = ACTIONS(2584), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_RPAREN] = ACTIONS(2590), + [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(2602), + [anon_sym_cl] = ACTIONS(2592), + [aux_sym_accumulation_verb_token1] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_and] = ACTIONS(2595), + [anon_sym_as] = ACTIONS(2595), + [anon_sym_with] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_until] = ACTIONS(2595), + [anon_sym_repeat] = ACTIONS(2595), + [anon_sym_when] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_unless] = ACTIONS(2595), + [anon_sym_always] = ACTIONS(2595), + [anon_sym_thereis] = ACTIONS(2595), + [anon_sym_never] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_finally] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_initially] = ACTIONS(2595), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2604), + [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(55), + [sym_dis_expr] = STATE(55), [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), [sym_list_lit] = STATE(2244), - [sym__bare_list_lit] = STATE(2536), + [sym__bare_list_lit] = STATE(2648), [sym_vec_lit] = STATE(2244), [sym_set_lit] = STATE(2244), - [sym__bare_set_lit] = STATE(2537), + [sym__bare_set_lit] = STATE(2647), [sym_read_cond_lit] = STATE(2244), [sym_splicing_read_cond_lit] = STATE(2244), [sym_var_quoting_lit] = STATE(2244), @@ -21902,1117 +21578,429 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(2244), [sym_unquote_splicing_lit] = STATE(2244), [sym_unquoting_lit] = STATE(2244), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), + [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2467), - [sym_comment] = ACTIONS(2467), - [anon_sym_POUND_] = ACTIONS(2441), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2593), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2446), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2593), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2449), - [anon_sym_POUND_CARET] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2458), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2593), - [anon_sym_cl] = ACTIONS(2460), - [aux_sym_accumulation_verb_token1] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_and] = ACTIONS(2463), - [anon_sym_as] = ACTIONS(2463), - [anon_sym_with] = ACTIONS(2463), - [anon_sym_do] = ACTIONS(2463), - [anon_sym_while] = ACTIONS(2463), - [anon_sym_until] = ACTIONS(2463), - [anon_sym_repeat] = ACTIONS(2463), - [anon_sym_when] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_unless] = ACTIONS(2463), - [anon_sym_always] = ACTIONS(2463), - [anon_sym_thereis] = ACTIONS(2463), - [anon_sym_never] = ACTIONS(2463), - [anon_sym_else] = ACTIONS(2463), - [anon_sym_finally] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_initially] = ACTIONS(2463), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2595), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [134] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2241), - [sym_num_lit] = STATE(2241), - [sym_kwd_lit] = STATE(2241), - [sym_str_lit] = STATE(2241), - [sym_char_lit] = STATE(2241), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2241), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2241), - [sym_set_lit] = STATE(2241), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2241), - [sym_splicing_read_cond_lit] = STATE(2241), - [sym_var_quoting_lit] = STATE(2241), - [sym_quoting_lit] = STATE(2241), - [sym_syn_quoting_lit] = STATE(2241), - [sym_unquote_splicing_lit] = STATE(2241), - [sym_unquoting_lit] = STATE(2241), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2241), - [sym_package_lit] = STATE(2241), - [sym_include_reader_macro] = STATE(2241), - [sym_complex_num_lit] = STATE(2241), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2597), - [sym_comment] = ACTIONS(2597), - [anon_sym_POUND_] = ACTIONS(2600), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2603), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2603), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2608), - [anon_sym_POUND_CARET] = ACTIONS(2611), - [anon_sym_LPAREN] = ACTIONS(2614), - [anon_sym_RPAREN] = ACTIONS(2617), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2603), - [anon_sym_cl] = ACTIONS(2619), - [aux_sym_accumulation_verb_token1] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2622), - [anon_sym_and] = ACTIONS(2622), - [anon_sym_as] = ACTIONS(2622), - [anon_sym_with] = ACTIONS(2622), - [anon_sym_do] = ACTIONS(2622), - [anon_sym_while] = ACTIONS(2622), - [anon_sym_until] = ACTIONS(2622), - [anon_sym_repeat] = ACTIONS(2622), - [anon_sym_when] = ACTIONS(2622), - [anon_sym_if] = ACTIONS(2622), - [anon_sym_unless] = ACTIONS(2622), - [anon_sym_always] = ACTIONS(2622), - [anon_sym_thereis] = ACTIONS(2622), - [anon_sym_never] = ACTIONS(2622), - [anon_sym_else] = ACTIONS(2622), - [anon_sym_finally] = ACTIONS(2622), - [anon_sym_return] = ACTIONS(2622), - [anon_sym_initially] = ACTIONS(2622), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2624), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [135] = { - [sym__gap] = STATE(72), - [sym_dis_expr] = STATE(72), - [sym__form] = STATE(2239), - [sym_num_lit] = STATE(2239), - [sym_kwd_lit] = STATE(2239), - [sym_str_lit] = STATE(2239), - [sym_char_lit] = STATE(2239), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2239), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2239), - [sym_set_lit] = STATE(2239), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2239), - [sym_splicing_read_cond_lit] = STATE(2239), - [sym_var_quoting_lit] = STATE(2239), - [sym_quoting_lit] = STATE(2239), - [sym_syn_quoting_lit] = STATE(2239), - [sym_unquote_splicing_lit] = STATE(2239), - [sym_unquoting_lit] = STATE(2239), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2239), - [sym_package_lit] = STATE(2239), - [sym_include_reader_macro] = STATE(2239), - [sym_complex_num_lit] = STATE(2239), - [aux_sym_dis_expr_repeat1] = STATE(72), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2626), - [sym_comment] = ACTIONS(2626), - [anon_sym_POUND_] = ACTIONS(2600), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2629), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2629), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2608), - [anon_sym_POUND_CARET] = ACTIONS(2611), - [anon_sym_LPAREN] = ACTIONS(2614), - [anon_sym_RPAREN] = ACTIONS(2617), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2629), - [anon_sym_cl] = ACTIONS(2619), - [aux_sym_accumulation_verb_token1] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2622), - [anon_sym_and] = ACTIONS(2622), - [anon_sym_as] = ACTIONS(2622), - [anon_sym_with] = ACTIONS(2622), - [anon_sym_do] = ACTIONS(2622), - [anon_sym_while] = ACTIONS(2622), - [anon_sym_until] = ACTIONS(2622), - [anon_sym_repeat] = ACTIONS(2622), - [anon_sym_when] = ACTIONS(2622), - [anon_sym_if] = ACTIONS(2622), - [anon_sym_unless] = ACTIONS(2622), - [anon_sym_always] = ACTIONS(2622), - [anon_sym_thereis] = ACTIONS(2622), - [anon_sym_never] = ACTIONS(2622), - [anon_sym_else] = ACTIONS(2622), - [anon_sym_finally] = ACTIONS(2622), - [anon_sym_return] = ACTIONS(2622), - [anon_sym_initially] = ACTIONS(2622), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2631), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [136] = { - [sym__gap] = STATE(73), - [sym_dis_expr] = STATE(73), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2237), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2237), - [sym_set_lit] = STATE(2237), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(73), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2633), - [sym_comment] = ACTIONS(2633), - [anon_sym_POUND_] = ACTIONS(2600), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2636), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2636), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2608), - [anon_sym_POUND_CARET] = ACTIONS(2611), - [anon_sym_LPAREN] = ACTIONS(2614), - [anon_sym_RPAREN] = ACTIONS(2617), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2636), - [anon_sym_cl] = ACTIONS(2619), - [aux_sym_accumulation_verb_token1] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2622), - [anon_sym_and] = ACTIONS(2622), - [anon_sym_as] = ACTIONS(2622), - [anon_sym_with] = ACTIONS(2622), - [anon_sym_do] = ACTIONS(2622), - [anon_sym_while] = ACTIONS(2622), - [anon_sym_until] = ACTIONS(2622), - [anon_sym_repeat] = ACTIONS(2622), - [anon_sym_when] = ACTIONS(2622), - [anon_sym_if] = ACTIONS(2622), - [anon_sym_unless] = ACTIONS(2622), - [anon_sym_always] = ACTIONS(2622), - [anon_sym_thereis] = ACTIONS(2622), - [anon_sym_never] = ACTIONS(2622), - [anon_sym_else] = ACTIONS(2622), - [anon_sym_finally] = ACTIONS(2622), - [anon_sym_return] = ACTIONS(2622), - [anon_sym_initially] = ACTIONS(2622), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2638), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [137] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2236), - [sym_num_lit] = STATE(2236), - [sym_kwd_lit] = STATE(2236), - [sym_str_lit] = STATE(2236), - [sym_char_lit] = STATE(2236), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2236), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2236), - [sym_set_lit] = STATE(2236), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2236), - [sym_splicing_read_cond_lit] = STATE(2236), - [sym_var_quoting_lit] = STATE(2236), - [sym_quoting_lit] = STATE(2236), - [sym_syn_quoting_lit] = STATE(2236), - [sym_unquote_splicing_lit] = STATE(2236), - [sym_unquoting_lit] = STATE(2236), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2236), - [sym_package_lit] = STATE(2236), - [sym_include_reader_macro] = STATE(2236), - [sym_complex_num_lit] = STATE(2236), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2597), - [sym_comment] = ACTIONS(2597), - [anon_sym_POUND_] = ACTIONS(2600), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2640), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2605), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2640), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2608), - [anon_sym_POUND_CARET] = ACTIONS(2611), - [anon_sym_LPAREN] = ACTIONS(2614), - [anon_sym_RPAREN] = ACTIONS(2617), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2640), - [anon_sym_cl] = ACTIONS(2619), - [aux_sym_accumulation_verb_token1] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2622), - [anon_sym_and] = ACTIONS(2622), - [anon_sym_as] = ACTIONS(2622), - [anon_sym_with] = ACTIONS(2622), - [anon_sym_do] = ACTIONS(2622), - [anon_sym_while] = ACTIONS(2622), - [anon_sym_until] = ACTIONS(2622), - [anon_sym_repeat] = ACTIONS(2622), - [anon_sym_when] = ACTIONS(2622), - [anon_sym_if] = ACTIONS(2622), - [anon_sym_unless] = ACTIONS(2622), - [anon_sym_always] = ACTIONS(2622), - [anon_sym_thereis] = ACTIONS(2622), - [anon_sym_never] = ACTIONS(2622), - [anon_sym_else] = ACTIONS(2622), - [anon_sym_finally] = ACTIONS(2622), - [anon_sym_return] = ACTIONS(2622), - [anon_sym_initially] = ACTIONS(2622), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2642), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [138] = { - [sym__gap] = STATE(697), - [sym_dis_expr] = STATE(697), - [sym__form] = STATE(226), - [sym_num_lit] = STATE(226), - [sym_kwd_lit] = STATE(226), - [sym_str_lit] = STATE(226), - [sym_char_lit] = STATE(226), - [sym_sym_lit] = STATE(1321), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(226), - [sym__bare_list_lit] = STATE(1320), - [sym_vec_lit] = STATE(226), - [sym_set_lit] = STATE(226), - [sym__bare_set_lit] = STATE(1319), - [sym_read_cond_lit] = STATE(226), - [sym_splicing_read_cond_lit] = STATE(226), - [sym_var_quoting_lit] = STATE(226), - [sym_quoting_lit] = STATE(226), - [sym_syn_quoting_lit] = STATE(226), - [sym_unquote_splicing_lit] = STATE(226), - [sym_unquoting_lit] = STATE(226), - [sym_defun] = STATE(1320), - [sym_loop_macro] = STATE(1320), - [sym_path_lit] = STATE(226), - [sym_package_lit] = STATE(226), - [sym_include_reader_macro] = STATE(226), - [sym_complex_num_lit] = STATE(226), - [aux_sym_dis_expr_repeat1] = STATE(697), - [aux_sym_list_lit_repeat1] = STATE(2808), - [sym__ws] = ACTIONS(2644), - [sym_comment] = ACTIONS(2644), - [anon_sym_POUND_] = ACTIONS(2647), - [anon_sym_POUND] = ACTIONS(2650), - [anon_sym_DOT] = ACTIONS(2652), - [aux_sym_num_lit_token1] = ACTIONS(2654), - [anon_sym_COLON] = ACTIONS(2656), - [anon_sym_COLON_COLON] = ACTIONS(2659), - [anon_sym_DQUOTE] = ACTIONS(2661), - [sym_nil_lit] = ACTIONS(2652), - [aux_sym_sym_lit_token1] = ACTIONS(2663), - [anon_sym_CARET] = ACTIONS(2665), - [anon_sym_POUND_CARET] = ACTIONS(2668), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_RPAREN] = ACTIONS(2674), - [anon_sym_POUND0A] = ACTIONS(2676), - [anon_sym_POUND0a] = ACTIONS(2676), - [anon_sym_POUND_QMARK] = ACTIONS(2678), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2680), - [anon_sym_POUND_SQUOTE] = ACTIONS(2682), - [anon_sym_SQUOTE] = ACTIONS(2684), - [anon_sym_BQUOTE] = ACTIONS(2686), - [anon_sym_COMMA_AT] = ACTIONS(2688), - [anon_sym_COMMA] = ACTIONS(2690), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2652), - [anon_sym_cl] = ACTIONS(2692), - [aux_sym_accumulation_verb_token1] = ACTIONS(2695), - [anon_sym_for] = ACTIONS(2695), - [anon_sym_and] = ACTIONS(2695), - [anon_sym_as] = ACTIONS(2695), - [anon_sym_with] = ACTIONS(2695), - [anon_sym_do] = ACTIONS(2695), - [anon_sym_while] = ACTIONS(2695), - [anon_sym_until] = ACTIONS(2695), - [anon_sym_repeat] = ACTIONS(2695), - [anon_sym_when] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2695), - [anon_sym_unless] = ACTIONS(2695), - [anon_sym_always] = ACTIONS(2695), - [anon_sym_thereis] = ACTIONS(2695), - [anon_sym_never] = ACTIONS(2695), - [anon_sym_else] = ACTIONS(2695), - [anon_sym_finally] = ACTIONS(2695), - [anon_sym_return] = ACTIONS(2695), - [anon_sym_initially] = ACTIONS(2695), - [anon_sym_POUNDP] = ACTIONS(2697), - [anon_sym_POUNDp] = ACTIONS(2697), - [sym_self_referential_reader_macro] = ACTIONS(2699), - [anon_sym_POUND_PLUS] = ACTIONS(2701), - [anon_sym_POUND_DASH] = ACTIONS(2701), - [anon_sym_POUNDC] = ACTIONS(2703), - [anon_sym_POUNDc] = ACTIONS(2703), - }, - [139] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2234), - [sym_num_lit] = STATE(2234), - [sym_kwd_lit] = STATE(2234), - [sym_str_lit] = STATE(2234), - [sym_char_lit] = STATE(2234), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2234), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2234), - [sym_set_lit] = STATE(2234), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2234), - [sym_splicing_read_cond_lit] = STATE(2234), - [sym_var_quoting_lit] = STATE(2234), - [sym_quoting_lit] = STATE(2234), - [sym_syn_quoting_lit] = STATE(2234), - [sym_unquote_splicing_lit] = STATE(2234), - [sym_unquoting_lit] = STATE(2234), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2234), - [sym_package_lit] = STATE(2234), - [sym_include_reader_macro] = STATE(2234), - [sym_complex_num_lit] = STATE(2234), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2705), - [sym_comment] = ACTIONS(2705), - [anon_sym_POUND_] = ACTIONS(2708), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2711), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2713), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2711), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2716), - [anon_sym_POUND_CARET] = ACTIONS(2719), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_RPAREN] = ACTIONS(2725), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2711), - [anon_sym_cl] = ACTIONS(2727), - [aux_sym_accumulation_verb_token1] = ACTIONS(2730), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_and] = ACTIONS(2730), - [anon_sym_as] = ACTIONS(2730), - [anon_sym_with] = ACTIONS(2730), - [anon_sym_do] = ACTIONS(2730), - [anon_sym_while] = ACTIONS(2730), - [anon_sym_until] = ACTIONS(2730), - [anon_sym_repeat] = ACTIONS(2730), - [anon_sym_when] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_unless] = ACTIONS(2730), - [anon_sym_always] = ACTIONS(2730), - [anon_sym_thereis] = ACTIONS(2730), - [anon_sym_never] = ACTIONS(2730), - [anon_sym_else] = ACTIONS(2730), - [anon_sym_finally] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_initially] = ACTIONS(2730), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2732), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [140] = { - [sym__gap] = STATE(205), - [sym_dis_expr] = STATE(205), - [sym__form] = STATE(2035), - [sym_num_lit] = STATE(2035), - [sym_kwd_lit] = STATE(2035), - [sym_str_lit] = STATE(2035), - [sym_char_lit] = STATE(2035), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2035), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2035), - [sym_set_lit] = STATE(2035), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2035), - [sym_splicing_read_cond_lit] = STATE(2035), - [sym_var_quoting_lit] = STATE(2035), - [sym_quoting_lit] = STATE(2035), - [sym_syn_quoting_lit] = STATE(2035), - [sym_unquote_splicing_lit] = STATE(2035), - [sym_unquoting_lit] = STATE(2035), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2035), - [sym_package_lit] = STATE(2035), - [sym_include_reader_macro] = STATE(2035), - [sym_complex_num_lit] = STATE(2035), - [aux_sym_dis_expr_repeat1] = STATE(205), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2734), - [sym_comment] = ACTIONS(2734), - [anon_sym_POUND_] = ACTIONS(2737), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2740), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2742), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2740), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_POUND_CARET] = ACTIONS(198), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_RPAREN] = ACTIONS(204), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2740), - [anon_sym_cl] = ACTIONS(2748), - [aux_sym_accumulation_verb_token1] = ACTIONS(211), - [anon_sym_for] = ACTIONS(211), - [anon_sym_and] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_with] = ACTIONS(211), - [anon_sym_do] = ACTIONS(211), - [anon_sym_while] = ACTIONS(211), - [anon_sym_until] = ACTIONS(211), - [anon_sym_repeat] = ACTIONS(211), - [anon_sym_when] = ACTIONS(211), - [anon_sym_if] = ACTIONS(211), - [anon_sym_unless] = ACTIONS(211), - [anon_sym_always] = ACTIONS(211), - [anon_sym_thereis] = ACTIONS(211), - [anon_sym_never] = ACTIONS(211), - [anon_sym_else] = ACTIONS(211), - [anon_sym_finally] = ACTIONS(211), - [anon_sym_return] = ACTIONS(211), - [anon_sym_initially] = ACTIONS(211), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2751), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [141] = { - [sym__gap] = STATE(75), - [sym_dis_expr] = STATE(75), - [sym__form] = STATE(2230), - [sym_num_lit] = STATE(2230), - [sym_kwd_lit] = STATE(2230), - [sym_str_lit] = STATE(2230), - [sym_char_lit] = STATE(2230), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2230), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2230), - [sym_set_lit] = STATE(2230), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2230), - [sym_splicing_read_cond_lit] = STATE(2230), - [sym_var_quoting_lit] = STATE(2230), - [sym_quoting_lit] = STATE(2230), - [sym_syn_quoting_lit] = STATE(2230), - [sym_unquote_splicing_lit] = STATE(2230), - [sym_unquoting_lit] = STATE(2230), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2230), - [sym_package_lit] = STATE(2230), - [sym_include_reader_macro] = STATE(2230), - [sym_complex_num_lit] = STATE(2230), - [aux_sym_dis_expr_repeat1] = STATE(75), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2753), - [sym_comment] = ACTIONS(2753), - [anon_sym_POUND_] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2759), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2761), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2759), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2764), - [anon_sym_POUND_CARET] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2770), - [anon_sym_RPAREN] = ACTIONS(2773), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [aux_sym_dis_expr_repeat1] = STATE(55), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2606), + [sym_comment] = ACTIONS(2606), + [anon_sym_POUND_] = ACTIONS(2573), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2609), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2578), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2609), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2581), + [anon_sym_POUND_CARET] = ACTIONS(2584), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_RPAREN] = ACTIONS(2590), + [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(2759), - [anon_sym_cl] = ACTIONS(2775), - [aux_sym_accumulation_verb_token1] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_and] = ACTIONS(2778), - [anon_sym_as] = ACTIONS(2778), - [anon_sym_with] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_until] = ACTIONS(2778), - [anon_sym_repeat] = ACTIONS(2778), - [anon_sym_when] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_unless] = ACTIONS(2778), - [anon_sym_always] = ACTIONS(2778), - [anon_sym_thereis] = ACTIONS(2778), - [anon_sym_never] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_finally] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_initially] = ACTIONS(2778), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2780), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2609), + [anon_sym_cl] = ACTIONS(2592), + [aux_sym_accumulation_verb_token1] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_and] = ACTIONS(2595), + [anon_sym_as] = ACTIONS(2595), + [anon_sym_with] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_until] = ACTIONS(2595), + [anon_sym_repeat] = ACTIONS(2595), + [anon_sym_when] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_unless] = ACTIONS(2595), + [anon_sym_always] = ACTIONS(2595), + [anon_sym_thereis] = ACTIONS(2595), + [anon_sym_never] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_finally] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_initially] = ACTIONS(2595), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2611), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2229), - [sym_num_lit] = STATE(2229), - [sym_kwd_lit] = STATE(2229), - [sym_str_lit] = STATE(2229), - [sym_char_lit] = STATE(2229), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2229), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2229), - [sym_set_lit] = STATE(2229), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2229), - [sym_splicing_read_cond_lit] = STATE(2229), - [sym_var_quoting_lit] = STATE(2229), - [sym_quoting_lit] = STATE(2229), - [sym_syn_quoting_lit] = STATE(2229), - [sym_unquote_splicing_lit] = STATE(2229), - [sym_unquoting_lit] = STATE(2229), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2229), - [sym_package_lit] = STATE(2229), - [sym_include_reader_macro] = STATE(2229), - [sym_complex_num_lit] = STATE(2229), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2782), - [sym_comment] = ACTIONS(2782), - [anon_sym_POUND_] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2785), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2761), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2785), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2764), - [anon_sym_POUND_CARET] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2770), - [anon_sym_RPAREN] = ACTIONS(2773), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [130] = { + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2570), + [sym_comment] = ACTIONS(2570), + [anon_sym_POUND_] = ACTIONS(2573), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2613), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2578), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2613), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2581), + [anon_sym_POUND_CARET] = ACTIONS(2584), + [anon_sym_LPAREN] = ACTIONS(2587), + [anon_sym_RPAREN] = ACTIONS(2590), + [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(2785), - [anon_sym_cl] = ACTIONS(2775), - [aux_sym_accumulation_verb_token1] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_and] = ACTIONS(2778), - [anon_sym_as] = ACTIONS(2778), - [anon_sym_with] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_until] = ACTIONS(2778), - [anon_sym_repeat] = ACTIONS(2778), - [anon_sym_when] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_unless] = ACTIONS(2778), - [anon_sym_always] = ACTIONS(2778), - [anon_sym_thereis] = ACTIONS(2778), - [anon_sym_never] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_finally] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_initially] = ACTIONS(2778), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2787), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2613), + [anon_sym_cl] = ACTIONS(2592), + [aux_sym_accumulation_verb_token1] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_and] = ACTIONS(2595), + [anon_sym_as] = ACTIONS(2595), + [anon_sym_with] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_until] = ACTIONS(2595), + [anon_sym_repeat] = ACTIONS(2595), + [anon_sym_when] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_unless] = ACTIONS(2595), + [anon_sym_always] = ACTIONS(2595), + [anon_sym_thereis] = ACTIONS(2595), + [anon_sym_never] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_finally] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_initially] = ACTIONS(2595), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2615), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2227), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2227), - [sym_set_lit] = STATE(2227), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2782), - [sym_comment] = ACTIONS(2782), - [anon_sym_POUND_] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2789), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2761), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2789), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2764), - [anon_sym_POUND_CARET] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2770), - [anon_sym_RPAREN] = ACTIONS(2773), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [131] = { + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2556), + [sym_comment] = ACTIONS(2556), + [anon_sym_POUND_] = ACTIONS(2530), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2617), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2535), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2617), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2538), + [anon_sym_POUND_CARET] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(2544), + [anon_sym_RPAREN] = ACTIONS(2547), + [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(2789), - [anon_sym_cl] = ACTIONS(2775), - [aux_sym_accumulation_verb_token1] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_and] = ACTIONS(2778), - [anon_sym_as] = ACTIONS(2778), - [anon_sym_with] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_until] = ACTIONS(2778), - [anon_sym_repeat] = ACTIONS(2778), - [anon_sym_when] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_unless] = ACTIONS(2778), - [anon_sym_always] = ACTIONS(2778), - [anon_sym_thereis] = ACTIONS(2778), - [anon_sym_never] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_finally] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_initially] = ACTIONS(2778), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2791), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2617), + [anon_sym_cl] = ACTIONS(2549), + [aux_sym_accumulation_verb_token1] = ACTIONS(2552), + [anon_sym_for] = ACTIONS(2552), + [anon_sym_and] = ACTIONS(2552), + [anon_sym_as] = ACTIONS(2552), + [anon_sym_with] = ACTIONS(2552), + [anon_sym_do] = ACTIONS(2552), + [anon_sym_while] = ACTIONS(2552), + [anon_sym_until] = ACTIONS(2552), + [anon_sym_repeat] = ACTIONS(2552), + [anon_sym_when] = ACTIONS(2552), + [anon_sym_if] = ACTIONS(2552), + [anon_sym_unless] = ACTIONS(2552), + [anon_sym_always] = ACTIONS(2552), + [anon_sym_thereis] = ACTIONS(2552), + [anon_sym_never] = ACTIONS(2552), + [anon_sym_else] = ACTIONS(2552), + [anon_sym_finally] = ACTIONS(2552), + [anon_sym_return] = ACTIONS(2552), + [anon_sym_initially] = ACTIONS(2552), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2619), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2354), - [sym_num_lit] = STATE(2354), - [sym_kwd_lit] = STATE(2354), - [sym_str_lit] = STATE(2354), - [sym_char_lit] = STATE(2354), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2354), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2354), - [sym_set_lit] = STATE(2354), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2354), - [sym_splicing_read_cond_lit] = STATE(2354), - [sym_var_quoting_lit] = STATE(2354), - [sym_quoting_lit] = STATE(2354), - [sym_syn_quoting_lit] = STATE(2354), - [sym_unquote_splicing_lit] = STATE(2354), - [sym_unquoting_lit] = STATE(2354), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2354), - [sym_package_lit] = STATE(2354), - [sym_include_reader_macro] = STATE(2354), - [sym_complex_num_lit] = STATE(2354), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2793), - [sym_comment] = ACTIONS(2793), - [anon_sym_POUND_] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2799), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2799), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2804), - [anon_sym_POUND_CARET] = ACTIONS(2807), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_RPAREN] = ACTIONS(2813), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [132] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1349), + [sym_comment] = ACTIONS(1349), + [anon_sym_POUND_] = ACTIONS(1352), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2621), + [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(2621), + [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(2799), - [anon_sym_cl] = ACTIONS(2815), - [aux_sym_accumulation_verb_token1] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_and] = ACTIONS(2818), - [anon_sym_as] = ACTIONS(2818), - [anon_sym_with] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_until] = ACTIONS(2818), - [anon_sym_repeat] = ACTIONS(2818), - [anon_sym_when] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_unless] = ACTIONS(2818), - [anon_sym_always] = ACTIONS(2818), - [anon_sym_thereis] = ACTIONS(2818), - [anon_sym_never] = ACTIONS(2818), - [anon_sym_else] = ACTIONS(2818), - [anon_sym_finally] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_initially] = ACTIONS(2818), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2820), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2621), + [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(2623), + [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(78), - [sym_dis_expr] = STATE(78), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2221), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2221), - [sym_set_lit] = STATE(2221), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(78), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2822), - [sym_comment] = ACTIONS(2822), - [anon_sym_POUND_] = ACTIONS(2825), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2828), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2828), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2833), - [anon_sym_POUND_CARET] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2839), - [anon_sym_RPAREN] = ACTIONS(2842), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [133] = { + [sym__gap] = STATE(147), + [sym_dis_expr] = STATE(147), + [sym__form] = STATE(2208), + [sym_num_lit] = STATE(2208), + [sym_kwd_lit] = STATE(2208), + [sym_str_lit] = STATE(2208), + [sym_char_lit] = STATE(2208), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2208), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2208), + [sym_set_lit] = STATE(2208), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2208), + [sym_splicing_read_cond_lit] = STATE(2208), + [sym_var_quoting_lit] = STATE(2208), + [sym_quoting_lit] = STATE(2208), + [sym_syn_quoting_lit] = STATE(2208), + [sym_unquote_splicing_lit] = STATE(2208), + [sym_unquoting_lit] = STATE(2208), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2208), + [sym_package_lit] = STATE(2208), + [sym_include_reader_macro] = STATE(2208), + [sym_complex_num_lit] = STATE(2208), + [aux_sym_dis_expr_repeat1] = STATE(147), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2625), + [sym_comment] = ACTIONS(2625), + [anon_sym_POUND_] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2628), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1523), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2628), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1526), + [anon_sym_POUND_CARET] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1535), + [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(2828), - [anon_sym_cl] = ACTIONS(2844), - [aux_sym_accumulation_verb_token1] = ACTIONS(2847), - [anon_sym_for] = ACTIONS(2847), - [anon_sym_and] = ACTIONS(2847), - [anon_sym_as] = ACTIONS(2847), - [anon_sym_with] = ACTIONS(2847), - [anon_sym_do] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2847), - [anon_sym_until] = ACTIONS(2847), - [anon_sym_repeat] = ACTIONS(2847), - [anon_sym_when] = ACTIONS(2847), - [anon_sym_if] = ACTIONS(2847), - [anon_sym_unless] = ACTIONS(2847), - [anon_sym_always] = ACTIONS(2847), - [anon_sym_thereis] = ACTIONS(2847), - [anon_sym_never] = ACTIONS(2847), - [anon_sym_else] = ACTIONS(2847), - [anon_sym_finally] = ACTIONS(2847), - [anon_sym_return] = ACTIONS(2847), - [anon_sym_initially] = ACTIONS(2847), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2849), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2628), + [anon_sym_cl] = ACTIONS(1537), + [aux_sym_accumulation_verb_token1] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_as] = ACTIONS(1540), + [anon_sym_with] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_until] = ACTIONS(1540), + [anon_sym_repeat] = ACTIONS(1540), + [anon_sym_when] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_unless] = ACTIONS(1540), + [anon_sym_always] = ACTIONS(1540), + [anon_sym_thereis] = ACTIONS(1540), + [anon_sym_never] = ACTIONS(1540), + [anon_sym_else] = ACTIONS(1540), + [anon_sym_finally] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_initially] = ACTIONS(1540), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2630), + [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(982), - [sym_dis_expr] = STATE(982), + [134] = { + [sym__gap] = STATE(88), + [sym_dis_expr] = STATE(88), [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), [sym_list_lit] = STATE(2425), - [sym__bare_list_lit] = STATE(2536), + [sym__bare_list_lit] = STATE(2648), [sym_vec_lit] = STATE(2425), [sym_set_lit] = STATE(2425), - [sym__bare_set_lit] = STATE(2537), + [sym__bare_set_lit] = STATE(2647), [sym_read_cond_lit] = STATE(2425), [sym_splicing_read_cond_lit] = STATE(2425), [sym_var_quoting_lit] = STATE(2425), @@ -23020,2104 +22008,556 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(2425), [sym_unquote_splicing_lit] = STATE(2425), [sym_unquoting_lit] = STATE(2425), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), + [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2851), - [sym_comment] = ACTIONS(2851), - [anon_sym_POUND_] = ACTIONS(2854), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2857), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2857), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2862), - [anon_sym_POUND_CARET] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_RPAREN] = ACTIONS(2871), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2857), - [anon_sym_cl] = ACTIONS(2873), - [aux_sym_accumulation_verb_token1] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_and] = ACTIONS(2876), - [anon_sym_as] = ACTIONS(2876), - [anon_sym_with] = ACTIONS(2876), - [anon_sym_do] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [anon_sym_until] = ACTIONS(2876), - [anon_sym_repeat] = ACTIONS(2876), - [anon_sym_when] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_unless] = ACTIONS(2876), - [anon_sym_always] = ACTIONS(2876), - [anon_sym_thereis] = ACTIONS(2876), - [anon_sym_never] = ACTIONS(2876), - [anon_sym_else] = ACTIONS(2876), - [anon_sym_finally] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_initially] = ACTIONS(2876), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2878), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [147] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2448), - [sym_num_lit] = STATE(2448), - [sym_kwd_lit] = STATE(2448), - [sym_str_lit] = STATE(2448), - [sym_char_lit] = STATE(2448), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2448), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2448), - [sym_set_lit] = STATE(2448), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2448), - [sym_splicing_read_cond_lit] = STATE(2448), - [sym_var_quoting_lit] = STATE(2448), - [sym_quoting_lit] = STATE(2448), - [sym_syn_quoting_lit] = STATE(2448), - [sym_unquote_splicing_lit] = STATE(2448), - [sym_unquoting_lit] = STATE(2448), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2448), - [sym_package_lit] = STATE(2448), - [sym_include_reader_macro] = STATE(2448), - [sym_complex_num_lit] = STATE(2448), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1548), - [sym_comment] = ACTIONS(1548), - [anon_sym_POUND_] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2880), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1527), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2880), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1530), - [anon_sym_POUND_CARET] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_RPAREN] = ACTIONS(1539), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2880), - [anon_sym_cl] = ACTIONS(1541), - [aux_sym_accumulation_verb_token1] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_as] = ACTIONS(1544), - [anon_sym_with] = ACTIONS(1544), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_until] = ACTIONS(1544), - [anon_sym_repeat] = ACTIONS(1544), - [anon_sym_when] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_unless] = ACTIONS(1544), - [anon_sym_always] = ACTIONS(1544), - [anon_sym_thereis] = ACTIONS(1544), - [anon_sym_never] = ACTIONS(1544), - [anon_sym_else] = ACTIONS(1544), - [anon_sym_finally] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_initially] = ACTIONS(1544), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2882), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [148] = { - [sym__gap] = STATE(81), - [sym_dis_expr] = STATE(81), - [sym__form] = STATE(2218), - [sym_num_lit] = STATE(2218), - [sym_kwd_lit] = STATE(2218), - [sym_str_lit] = STATE(2218), - [sym_char_lit] = STATE(2218), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2218), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2218), - [sym_set_lit] = STATE(2218), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2218), - [sym_splicing_read_cond_lit] = STATE(2218), - [sym_var_quoting_lit] = STATE(2218), - [sym_quoting_lit] = STATE(2218), - [sym_syn_quoting_lit] = STATE(2218), - [sym_unquote_splicing_lit] = STATE(2218), - [sym_unquoting_lit] = STATE(2218), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2218), - [sym_package_lit] = STATE(2218), - [sym_include_reader_macro] = STATE(2218), - [sym_complex_num_lit] = STATE(2218), - [aux_sym_dis_expr_repeat1] = STATE(81), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2884), - [sym_comment] = ACTIONS(2884), - [anon_sym_POUND_] = ACTIONS(2887), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2890), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2890), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2895), - [anon_sym_POUND_CARET] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2901), - [anon_sym_RPAREN] = ACTIONS(2904), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [aux_sym_dis_expr_repeat1] = STATE(88), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2632), + [sym_comment] = ACTIONS(2632), + [anon_sym_POUND_] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2635), + [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(2635), + [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(2890), - [anon_sym_cl] = ACTIONS(2906), - [aux_sym_accumulation_verb_token1] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_and] = ACTIONS(2909), - [anon_sym_as] = ACTIONS(2909), - [anon_sym_with] = ACTIONS(2909), - [anon_sym_do] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2909), - [anon_sym_until] = ACTIONS(2909), - [anon_sym_repeat] = ACTIONS(2909), - [anon_sym_when] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_unless] = ACTIONS(2909), - [anon_sym_always] = ACTIONS(2909), - [anon_sym_thereis] = ACTIONS(2909), - [anon_sym_never] = ACTIONS(2909), - [anon_sym_else] = ACTIONS(2909), - [anon_sym_finally] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_initially] = ACTIONS(2909), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2911), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [149] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2217), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2217), - [sym_set_lit] = STATE(2217), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2913), - [sym_comment] = ACTIONS(2913), - [anon_sym_POUND_] = ACTIONS(2825), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2916), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2916), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2833), - [anon_sym_POUND_CARET] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2839), - [anon_sym_RPAREN] = ACTIONS(2842), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2916), - [anon_sym_cl] = ACTIONS(2844), - [aux_sym_accumulation_verb_token1] = ACTIONS(2847), - [anon_sym_for] = ACTIONS(2847), - [anon_sym_and] = ACTIONS(2847), - [anon_sym_as] = ACTIONS(2847), - [anon_sym_with] = ACTIONS(2847), - [anon_sym_do] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2847), - [anon_sym_until] = ACTIONS(2847), - [anon_sym_repeat] = ACTIONS(2847), - [anon_sym_when] = ACTIONS(2847), - [anon_sym_if] = ACTIONS(2847), - [anon_sym_unless] = ACTIONS(2847), - [anon_sym_always] = ACTIONS(2847), - [anon_sym_thereis] = ACTIONS(2847), - [anon_sym_never] = ACTIONS(2847), - [anon_sym_else] = ACTIONS(2847), - [anon_sym_finally] = ACTIONS(2847), - [anon_sym_return] = ACTIONS(2847), - [anon_sym_initially] = ACTIONS(2847), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2918), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [150] = { - [sym__gap] = STATE(257), - [sym_dis_expr] = STATE(257), - [sym__form] = STATE(2037), - [sym_num_lit] = STATE(2037), - [sym_kwd_lit] = STATE(2037), - [sym_str_lit] = STATE(2037), - [sym_char_lit] = STATE(2037), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2037), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2037), - [sym_set_lit] = STATE(2037), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2037), - [sym_splicing_read_cond_lit] = STATE(2037), - [sym_var_quoting_lit] = STATE(2037), - [sym_quoting_lit] = STATE(2037), - [sym_syn_quoting_lit] = STATE(2037), - [sym_unquote_splicing_lit] = STATE(2037), - [sym_unquoting_lit] = STATE(2037), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2037), - [sym_package_lit] = STATE(2037), - [sym_include_reader_macro] = STATE(2037), - [sym_complex_num_lit] = STATE(2037), - [aux_sym_dis_expr_repeat1] = STATE(257), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2920), - [sym_comment] = ACTIONS(2920), - [anon_sym_POUND_] = ACTIONS(2923), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2926), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2926), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2931), - [anon_sym_POUND_CARET] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_RPAREN] = ACTIONS(2940), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2926), - [anon_sym_cl] = ACTIONS(2942), - [aux_sym_accumulation_verb_token1] = ACTIONS(2945), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_and] = ACTIONS(2945), - [anon_sym_as] = ACTIONS(2945), - [anon_sym_with] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_until] = ACTIONS(2945), - [anon_sym_repeat] = ACTIONS(2945), - [anon_sym_when] = ACTIONS(2945), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_unless] = ACTIONS(2945), - [anon_sym_always] = ACTIONS(2945), - [anon_sym_thereis] = ACTIONS(2945), - [anon_sym_never] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(2945), - [anon_sym_finally] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_initially] = ACTIONS(2945), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2947), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [151] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2039), - [sym_num_lit] = STATE(2039), - [sym_kwd_lit] = STATE(2039), - [sym_str_lit] = STATE(2039), - [sym_char_lit] = STATE(2039), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2039), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2039), - [sym_set_lit] = STATE(2039), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2039), - [sym_splicing_read_cond_lit] = STATE(2039), - [sym_var_quoting_lit] = STATE(2039), - [sym_quoting_lit] = STATE(2039), - [sym_syn_quoting_lit] = STATE(2039), - [sym_unquote_splicing_lit] = STATE(2039), - [sym_unquoting_lit] = STATE(2039), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2039), - [sym_package_lit] = STATE(2039), - [sym_include_reader_macro] = STATE(2039), - [sym_complex_num_lit] = STATE(2039), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2949), - [sym_comment] = ACTIONS(2949), - [anon_sym_POUND_] = ACTIONS(2923), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2952), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2952), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2931), - [anon_sym_POUND_CARET] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_RPAREN] = ACTIONS(2940), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2952), - [anon_sym_cl] = ACTIONS(2942), - [aux_sym_accumulation_verb_token1] = ACTIONS(2945), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_and] = ACTIONS(2945), - [anon_sym_as] = ACTIONS(2945), - [anon_sym_with] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_until] = ACTIONS(2945), - [anon_sym_repeat] = ACTIONS(2945), - [anon_sym_when] = ACTIONS(2945), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_unless] = ACTIONS(2945), - [anon_sym_always] = ACTIONS(2945), - [anon_sym_thereis] = ACTIONS(2945), - [anon_sym_never] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(2945), - [anon_sym_finally] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_initially] = ACTIONS(2945), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2954), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [152] = { - [sym__gap] = STATE(85), - [sym_dis_expr] = STATE(85), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2215), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2215), - [sym_set_lit] = STATE(2215), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(85), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2956), - [sym_comment] = ACTIONS(2956), - [anon_sym_POUND_] = ACTIONS(2825), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2959), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2959), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2833), - [anon_sym_POUND_CARET] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2839), - [anon_sym_RPAREN] = ACTIONS(2842), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2959), - [anon_sym_cl] = ACTIONS(2844), - [aux_sym_accumulation_verb_token1] = ACTIONS(2847), - [anon_sym_for] = ACTIONS(2847), - [anon_sym_and] = ACTIONS(2847), - [anon_sym_as] = ACTIONS(2847), - [anon_sym_with] = ACTIONS(2847), - [anon_sym_do] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2847), - [anon_sym_until] = ACTIONS(2847), - [anon_sym_repeat] = ACTIONS(2847), - [anon_sym_when] = ACTIONS(2847), - [anon_sym_if] = ACTIONS(2847), - [anon_sym_unless] = ACTIONS(2847), - [anon_sym_always] = ACTIONS(2847), - [anon_sym_thereis] = ACTIONS(2847), - [anon_sym_never] = ACTIONS(2847), - [anon_sym_else] = ACTIONS(2847), - [anon_sym_finally] = ACTIONS(2847), - [anon_sym_return] = ACTIONS(2847), - [anon_sym_initially] = ACTIONS(2847), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2961), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [153] = { - [sym__gap] = STATE(263), - [sym_dis_expr] = STATE(263), - [sym__form] = STATE(2040), - [sym_num_lit] = STATE(2040), - [sym_kwd_lit] = STATE(2040), - [sym_str_lit] = STATE(2040), - [sym_char_lit] = STATE(2040), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2040), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2040), - [sym_set_lit] = STATE(2040), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2040), - [sym_splicing_read_cond_lit] = STATE(2040), - [sym_var_quoting_lit] = STATE(2040), - [sym_quoting_lit] = STATE(2040), - [sym_syn_quoting_lit] = STATE(2040), - [sym_unquote_splicing_lit] = STATE(2040), - [sym_unquoting_lit] = STATE(2040), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2040), - [sym_package_lit] = STATE(2040), - [sym_include_reader_macro] = STATE(2040), - [sym_complex_num_lit] = STATE(2040), - [aux_sym_dis_expr_repeat1] = STATE(263), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2963), - [sym_comment] = ACTIONS(2963), - [anon_sym_POUND_] = ACTIONS(2966), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2969), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2971), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2969), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2974), - [anon_sym_POUND_CARET] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2980), - [anon_sym_RPAREN] = ACTIONS(2983), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2969), - [anon_sym_cl] = ACTIONS(2985), - [aux_sym_accumulation_verb_token1] = ACTIONS(2988), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_and] = ACTIONS(2988), - [anon_sym_as] = ACTIONS(2988), - [anon_sym_with] = ACTIONS(2988), - [anon_sym_do] = ACTIONS(2988), - [anon_sym_while] = ACTIONS(2988), - [anon_sym_until] = ACTIONS(2988), - [anon_sym_repeat] = ACTIONS(2988), - [anon_sym_when] = ACTIONS(2988), - [anon_sym_if] = ACTIONS(2988), - [anon_sym_unless] = ACTIONS(2988), - [anon_sym_always] = ACTIONS(2988), - [anon_sym_thereis] = ACTIONS(2988), - [anon_sym_never] = ACTIONS(2988), - [anon_sym_else] = ACTIONS(2988), - [anon_sym_finally] = ACTIONS(2988), - [anon_sym_return] = ACTIONS(2988), - [anon_sym_initially] = ACTIONS(2988), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(2990), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [154] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2376), - [sym_num_lit] = STATE(2376), - [sym_kwd_lit] = STATE(2376), - [sym_str_lit] = STATE(2376), - [sym_char_lit] = STATE(2376), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2376), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2376), - [sym_set_lit] = STATE(2376), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2376), - [sym_splicing_read_cond_lit] = STATE(2376), - [sym_var_quoting_lit] = STATE(2376), - [sym_quoting_lit] = STATE(2376), - [sym_syn_quoting_lit] = STATE(2376), - [sym_unquote_splicing_lit] = STATE(2376), - [sym_unquoting_lit] = STATE(2376), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2376), - [sym_package_lit] = STATE(2376), - [sym_include_reader_macro] = STATE(2376), - [sym_complex_num_lit] = STATE(2376), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2992), - [sym_comment] = ACTIONS(2992), - [anon_sym_POUND_] = ACTIONS(2995), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(2998), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3000), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(2998), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3003), - [anon_sym_POUND_CARET] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3009), - [anon_sym_RPAREN] = ACTIONS(3012), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(2998), - [anon_sym_cl] = ACTIONS(3014), - [aux_sym_accumulation_verb_token1] = ACTIONS(3017), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_and] = ACTIONS(3017), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_with] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_until] = ACTIONS(3017), - [anon_sym_repeat] = ACTIONS(3017), - [anon_sym_when] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_unless] = ACTIONS(3017), - [anon_sym_always] = ACTIONS(3017), - [anon_sym_thereis] = ACTIONS(3017), - [anon_sym_never] = ACTIONS(3017), - [anon_sym_else] = ACTIONS(3017), - [anon_sym_finally] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_initially] = ACTIONS(3017), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3019), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [155] = { - [sym__gap] = STATE(89), - [sym_dis_expr] = STATE(89), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2212), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2212), - [sym_set_lit] = STATE(2212), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(89), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3021), - [sym_comment] = ACTIONS(3021), - [anon_sym_POUND_] = ACTIONS(3024), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3027), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3027), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3032), - [anon_sym_POUND_CARET] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3038), - [anon_sym_RPAREN] = ACTIONS(3041), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3027), - [anon_sym_cl] = ACTIONS(3043), - [aux_sym_accumulation_verb_token1] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3046), - [anon_sym_and] = ACTIONS(3046), - [anon_sym_as] = ACTIONS(3046), - [anon_sym_with] = ACTIONS(3046), - [anon_sym_do] = ACTIONS(3046), - [anon_sym_while] = ACTIONS(3046), - [anon_sym_until] = ACTIONS(3046), - [anon_sym_repeat] = ACTIONS(3046), - [anon_sym_when] = ACTIONS(3046), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_unless] = ACTIONS(3046), - [anon_sym_always] = ACTIONS(3046), - [anon_sym_thereis] = ACTIONS(3046), - [anon_sym_never] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3046), - [anon_sym_finally] = ACTIONS(3046), - [anon_sym_return] = ACTIONS(3046), - [anon_sym_initially] = ACTIONS(3046), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3048), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [156] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2211), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2211), - [sym_set_lit] = STATE(2211), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3050), - [sym_comment] = ACTIONS(3050), - [anon_sym_POUND_] = ACTIONS(3053), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3056), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3056), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_POUND_CARET] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_RPAREN] = ACTIONS(3070), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3056), - [anon_sym_cl] = ACTIONS(3072), - [aux_sym_accumulation_verb_token1] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_and] = ACTIONS(3075), - [anon_sym_as] = ACTIONS(3075), - [anon_sym_with] = ACTIONS(3075), - [anon_sym_do] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_until] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_when] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_unless] = ACTIONS(3075), - [anon_sym_always] = ACTIONS(3075), - [anon_sym_thereis] = ACTIONS(3075), - [anon_sym_never] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_finally] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_initially] = ACTIONS(3075), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3077), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [157] = { - [sym__gap] = STATE(163), - [sym_dis_expr] = STATE(163), - [sym__form] = STATE(2043), - [sym_num_lit] = STATE(2043), - [sym_kwd_lit] = STATE(2043), - [sym_str_lit] = STATE(2043), - [sym_char_lit] = STATE(2043), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2043), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2043), - [sym_set_lit] = STATE(2043), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2043), - [sym_splicing_read_cond_lit] = STATE(2043), - [sym_var_quoting_lit] = STATE(2043), - [sym_quoting_lit] = STATE(2043), - [sym_syn_quoting_lit] = STATE(2043), - [sym_unquote_splicing_lit] = STATE(2043), - [sym_unquoting_lit] = STATE(2043), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2043), - [sym_package_lit] = STATE(2043), - [sym_include_reader_macro] = STATE(2043), - [sym_complex_num_lit] = STATE(2043), - [aux_sym_dis_expr_repeat1] = STATE(163), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3079), - [sym_comment] = ACTIONS(3079), - [anon_sym_POUND_] = ACTIONS(2923), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3082), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2928), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3082), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2931), - [anon_sym_POUND_CARET] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_RPAREN] = ACTIONS(2940), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3082), - [anon_sym_cl] = ACTIONS(2942), - [aux_sym_accumulation_verb_token1] = ACTIONS(2945), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_and] = ACTIONS(2945), - [anon_sym_as] = ACTIONS(2945), - [anon_sym_with] = ACTIONS(2945), - [anon_sym_do] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_until] = ACTIONS(2945), - [anon_sym_repeat] = ACTIONS(2945), - [anon_sym_when] = ACTIONS(2945), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_unless] = ACTIONS(2945), - [anon_sym_always] = ACTIONS(2945), - [anon_sym_thereis] = ACTIONS(2945), - [anon_sym_never] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(2945), - [anon_sym_finally] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_initially] = ACTIONS(2945), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3084), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [158] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2374), - [sym_num_lit] = STATE(2374), - [sym_kwd_lit] = STATE(2374), - [sym_str_lit] = STATE(2374), - [sym_char_lit] = STATE(2374), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2374), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2374), - [sym_set_lit] = STATE(2374), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2374), - [sym_splicing_read_cond_lit] = STATE(2374), - [sym_var_quoting_lit] = STATE(2374), - [sym_quoting_lit] = STATE(2374), - [sym_syn_quoting_lit] = STATE(2374), - [sym_unquote_splicing_lit] = STATE(2374), - [sym_unquoting_lit] = STATE(2374), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2374), - [sym_package_lit] = STATE(2374), - [sym_include_reader_macro] = STATE(2374), - [sym_complex_num_lit] = STATE(2374), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2992), - [sym_comment] = ACTIONS(2992), - [anon_sym_POUND_] = ACTIONS(2995), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3086), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3000), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3086), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3003), - [anon_sym_POUND_CARET] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3009), - [anon_sym_RPAREN] = ACTIONS(3012), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3086), - [anon_sym_cl] = ACTIONS(3014), - [aux_sym_accumulation_verb_token1] = ACTIONS(3017), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_and] = ACTIONS(3017), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_with] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_until] = ACTIONS(3017), - [anon_sym_repeat] = ACTIONS(3017), - [anon_sym_when] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_unless] = ACTIONS(3017), - [anon_sym_always] = ACTIONS(3017), - [anon_sym_thereis] = ACTIONS(3017), - [anon_sym_never] = ACTIONS(3017), - [anon_sym_else] = ACTIONS(3017), - [anon_sym_finally] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_initially] = ACTIONS(3017), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3088), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [159] = { - [sym__gap] = STATE(93), - [sym_dis_expr] = STATE(93), - [sym__form] = STATE(2209), - [sym_num_lit] = STATE(2209), - [sym_kwd_lit] = STATE(2209), - [sym_str_lit] = STATE(2209), - [sym_char_lit] = STATE(2209), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2209), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2209), - [sym_set_lit] = STATE(2209), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2209), - [sym_splicing_read_cond_lit] = STATE(2209), - [sym_var_quoting_lit] = STATE(2209), - [sym_quoting_lit] = STATE(2209), - [sym_syn_quoting_lit] = STATE(2209), - [sym_unquote_splicing_lit] = STATE(2209), - [sym_unquoting_lit] = STATE(2209), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2209), - [sym_package_lit] = STATE(2209), - [sym_include_reader_macro] = STATE(2209), - [sym_complex_num_lit] = STATE(2209), - [aux_sym_dis_expr_repeat1] = STATE(93), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3090), - [sym_comment] = ACTIONS(3090), - [anon_sym_POUND_] = ACTIONS(3053), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3093), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3093), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_POUND_CARET] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_RPAREN] = ACTIONS(3070), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3093), - [anon_sym_cl] = ACTIONS(3072), - [aux_sym_accumulation_verb_token1] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_and] = ACTIONS(3075), - [anon_sym_as] = ACTIONS(3075), - [anon_sym_with] = ACTIONS(3075), - [anon_sym_do] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_until] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_when] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_unless] = ACTIONS(3075), - [anon_sym_always] = ACTIONS(3075), - [anon_sym_thereis] = ACTIONS(3075), - [anon_sym_never] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_finally] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_initially] = ACTIONS(3075), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3095), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [160] = { - [sym__gap] = STATE(195), - [sym_dis_expr] = STATE(195), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2075), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2075), - [sym_set_lit] = STATE(2075), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(195), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3097), - [sym_comment] = ACTIONS(3097), - [anon_sym_POUND_] = ACTIONS(3100), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3103), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3103), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3108), - [anon_sym_POUND_CARET] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_RPAREN] = ACTIONS(3117), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3103), - [anon_sym_cl] = ACTIONS(3119), - [aux_sym_accumulation_verb_token1] = ACTIONS(3122), - [anon_sym_for] = ACTIONS(3122), - [anon_sym_and] = ACTIONS(3122), - [anon_sym_as] = ACTIONS(3122), - [anon_sym_with] = ACTIONS(3122), - [anon_sym_do] = ACTIONS(3122), - [anon_sym_while] = ACTIONS(3122), - [anon_sym_until] = ACTIONS(3122), - [anon_sym_repeat] = ACTIONS(3122), - [anon_sym_when] = ACTIONS(3122), - [anon_sym_if] = ACTIONS(3122), - [anon_sym_unless] = ACTIONS(3122), - [anon_sym_always] = ACTIONS(3122), - [anon_sym_thereis] = ACTIONS(3122), - [anon_sym_never] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3122), - [anon_sym_finally] = ACTIONS(3122), - [anon_sym_return] = ACTIONS(3122), - [anon_sym_initially] = ACTIONS(3122), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3124), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [161] = { - [sym__gap] = STATE(94), - [sym_dis_expr] = STATE(94), - [sym__form] = STATE(2207), - [sym_num_lit] = STATE(2207), - [sym_kwd_lit] = STATE(2207), - [sym_str_lit] = STATE(2207), - [sym_char_lit] = STATE(2207), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2207), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2207), - [sym_set_lit] = STATE(2207), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2207), - [sym_splicing_read_cond_lit] = STATE(2207), - [sym_var_quoting_lit] = STATE(2207), - [sym_quoting_lit] = STATE(2207), - [sym_syn_quoting_lit] = STATE(2207), - [sym_unquote_splicing_lit] = STATE(2207), - [sym_unquoting_lit] = STATE(2207), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2207), - [sym_package_lit] = STATE(2207), - [sym_include_reader_macro] = STATE(2207), - [sym_complex_num_lit] = STATE(2207), - [aux_sym_dis_expr_repeat1] = STATE(94), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3126), - [sym_comment] = ACTIONS(3126), - [anon_sym_POUND_] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3129), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1357), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3129), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3129), - [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(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3131), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [162] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2206), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2206), - [sym_set_lit] = STATE(2206), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3133), - [sym_comment] = ACTIONS(3133), - [anon_sym_POUND_] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3136), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1357), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3136), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3136), - [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(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3138), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [163] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2070), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2070), - [sym_set_lit] = STATE(2070), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3140), - [sym_comment] = ACTIONS(3140), - [anon_sym_POUND_] = ACTIONS(3143), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3146), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3146), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3151), - [anon_sym_POUND_CARET] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_RPAREN] = ACTIONS(3160), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3146), - [anon_sym_cl] = ACTIONS(3162), - [aux_sym_accumulation_verb_token1] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_and] = ACTIONS(3165), - [anon_sym_as] = ACTIONS(3165), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_until] = ACTIONS(3165), - [anon_sym_repeat] = ACTIONS(3165), - [anon_sym_when] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_unless] = ACTIONS(3165), - [anon_sym_always] = ACTIONS(3165), - [anon_sym_thereis] = ACTIONS(3165), - [anon_sym_never] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_finally] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_initially] = ACTIONS(3165), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3167), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [164] = { - [sym__gap] = STATE(98), - [sym_dis_expr] = STATE(98), - [sym__form] = STATE(2203), - [sym_num_lit] = STATE(2203), - [sym_kwd_lit] = STATE(2203), - [sym_str_lit] = STATE(2203), - [sym_char_lit] = STATE(2203), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2203), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2203), - [sym_set_lit] = STATE(2203), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2203), - [sym_splicing_read_cond_lit] = STATE(2203), - [sym_var_quoting_lit] = STATE(2203), - [sym_quoting_lit] = STATE(2203), - [sym_syn_quoting_lit] = STATE(2203), - [sym_unquote_splicing_lit] = STATE(2203), - [sym_unquoting_lit] = STATE(2203), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2203), - [sym_package_lit] = STATE(2203), - [sym_include_reader_macro] = STATE(2203), - [sym_complex_num_lit] = STATE(2203), - [aux_sym_dis_expr_repeat1] = STATE(98), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3169), - [sym_comment] = ACTIONS(3169), - [anon_sym_POUND_] = ACTIONS(3053), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3172), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3172), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_POUND_CARET] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_RPAREN] = ACTIONS(3070), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3172), - [anon_sym_cl] = ACTIONS(3072), - [aux_sym_accumulation_verb_token1] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_and] = ACTIONS(3075), - [anon_sym_as] = ACTIONS(3075), - [anon_sym_with] = ACTIONS(3075), - [anon_sym_do] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_until] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_when] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_unless] = ACTIONS(3075), - [anon_sym_always] = ACTIONS(3075), - [anon_sym_thereis] = ACTIONS(3075), - [anon_sym_never] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_finally] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_initially] = ACTIONS(3075), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3174), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2635), + [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(2637), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2202), - [sym_num_lit] = STATE(2202), - [sym_kwd_lit] = STATE(2202), - [sym_str_lit] = STATE(2202), - [sym_char_lit] = STATE(2202), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2202), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2202), - [sym_set_lit] = STATE(2202), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2202), - [sym_splicing_read_cond_lit] = STATE(2202), - [sym_var_quoting_lit] = STATE(2202), - [sym_quoting_lit] = STATE(2202), - [sym_syn_quoting_lit] = STATE(2202), - [sym_unquote_splicing_lit] = STATE(2202), - [sym_unquoting_lit] = STATE(2202), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2202), - [sym_package_lit] = STATE(2202), - [sym_include_reader_macro] = STATE(2202), - [sym_complex_num_lit] = STATE(2202), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3050), - [sym_comment] = ACTIONS(3050), - [anon_sym_POUND_] = ACTIONS(3053), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3176), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3176), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_POUND_CARET] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_RPAREN] = ACTIONS(3070), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [135] = { + [sym__gap] = STATE(62), + [sym_dis_expr] = STATE(62), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(62), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2639), + [sym_comment] = ACTIONS(2639), + [anon_sym_POUND_] = ACTIONS(2642), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2645), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2647), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2645), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1112), + [anon_sym_POUND_CARET] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(2650), + [anon_sym_RPAREN] = ACTIONS(1121), + [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(3176), - [anon_sym_cl] = ACTIONS(3072), - [aux_sym_accumulation_verb_token1] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_and] = ACTIONS(3075), - [anon_sym_as] = ACTIONS(3075), - [anon_sym_with] = ACTIONS(3075), - [anon_sym_do] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_until] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_when] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_unless] = ACTIONS(3075), - [anon_sym_always] = ACTIONS(3075), - [anon_sym_thereis] = ACTIONS(3075), - [anon_sym_never] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_finally] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_initially] = ACTIONS(3075), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3178), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2645), + [anon_sym_cl] = ACTIONS(2653), + [aux_sym_accumulation_verb_token1] = ACTIONS(1128), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_and] = ACTIONS(1128), + [anon_sym_as] = ACTIONS(1128), + [anon_sym_with] = ACTIONS(1128), + [anon_sym_do] = ACTIONS(1128), + [anon_sym_while] = ACTIONS(1128), + [anon_sym_until] = ACTIONS(1128), + [anon_sym_repeat] = ACTIONS(1128), + [anon_sym_when] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1128), + [anon_sym_unless] = ACTIONS(1128), + [anon_sym_always] = ACTIONS(1128), + [anon_sym_thereis] = ACTIONS(1128), + [anon_sym_never] = ACTIONS(1128), + [anon_sym_else] = ACTIONS(1128), + [anon_sym_finally] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1128), + [anon_sym_initially] = ACTIONS(1128), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2656), + [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(220), - [sym_dis_expr] = STATE(220), - [sym__form] = STATE(2447), - [sym_num_lit] = STATE(2447), - [sym_kwd_lit] = STATE(2447), - [sym_str_lit] = STATE(2447), - [sym_char_lit] = STATE(2447), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2447), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2447), - [sym_set_lit] = STATE(2447), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2447), - [sym_splicing_read_cond_lit] = STATE(2447), - [sym_var_quoting_lit] = STATE(2447), - [sym_quoting_lit] = STATE(2447), - [sym_syn_quoting_lit] = STATE(2447), - [sym_unquote_splicing_lit] = STATE(2447), - [sym_unquoting_lit] = STATE(2447), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2447), - [sym_package_lit] = STATE(2447), - [sym_include_reader_macro] = STATE(2447), - [sym_complex_num_lit] = STATE(2447), - [aux_sym_dis_expr_repeat1] = STATE(220), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3180), - [sym_comment] = ACTIONS(3180), - [anon_sym_POUND_] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3183), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1527), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3183), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1530), - [anon_sym_POUND_CARET] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_RPAREN] = ACTIONS(1539), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [136] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2361), + [sym_num_lit] = STATE(2361), + [sym_kwd_lit] = STATE(2361), + [sym_str_lit] = STATE(2361), + [sym_char_lit] = STATE(2361), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2361), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2361), + [sym_set_lit] = STATE(2361), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2361), + [sym_splicing_read_cond_lit] = STATE(2361), + [sym_var_quoting_lit] = STATE(2361), + [sym_quoting_lit] = STATE(2361), + [sym_syn_quoting_lit] = STATE(2361), + [sym_unquote_splicing_lit] = STATE(2361), + [sym_unquoting_lit] = STATE(2361), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2361), + [sym_package_lit] = STATE(2361), + [sym_include_reader_macro] = STATE(2361), + [sym_complex_num_lit] = STATE(2361), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1472), + [sym_comment] = ACTIONS(1472), + [anon_sym_POUND_] = ACTIONS(1417), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2658), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1422), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2658), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym_POUND_CARET] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1434), + [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(3183), - [anon_sym_cl] = ACTIONS(1541), - [aux_sym_accumulation_verb_token1] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_and] = ACTIONS(1544), - [anon_sym_as] = ACTIONS(1544), - [anon_sym_with] = ACTIONS(1544), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_until] = ACTIONS(1544), - [anon_sym_repeat] = ACTIONS(1544), - [anon_sym_when] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_unless] = ACTIONS(1544), - [anon_sym_always] = ACTIONS(1544), - [anon_sym_thereis] = ACTIONS(1544), - [anon_sym_never] = ACTIONS(1544), - [anon_sym_else] = ACTIONS(1544), - [anon_sym_finally] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_initially] = ACTIONS(1544), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3185), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2658), + [anon_sym_cl] = ACTIONS(1436), + [aux_sym_accumulation_verb_token1] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_and] = ACTIONS(1439), + [anon_sym_as] = ACTIONS(1439), + [anon_sym_with] = ACTIONS(1439), + [anon_sym_do] = ACTIONS(1439), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_until] = ACTIONS(1439), + [anon_sym_repeat] = ACTIONS(1439), + [anon_sym_when] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_unless] = ACTIONS(1439), + [anon_sym_always] = ACTIONS(1439), + [anon_sym_thereis] = ACTIONS(1439), + [anon_sym_never] = ACTIONS(1439), + [anon_sym_else] = ACTIONS(1439), + [anon_sym_finally] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1439), + [anon_sym_initially] = ACTIONS(1439), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2660), + [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(100), - [sym_dis_expr] = STATE(100), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2198), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2198), - [sym_set_lit] = STATE(2198), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(100), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3187), - [sym_comment] = ACTIONS(3187), - [anon_sym_POUND_] = ACTIONS(3024), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3190), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3029), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3190), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3032), - [anon_sym_POUND_CARET] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3038), - [anon_sym_RPAREN] = ACTIONS(3041), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [137] = { + [sym__gap] = STATE(68), + [sym_dis_expr] = STATE(68), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(68), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2662), + [sym_comment] = ACTIONS(2662), + [anon_sym_POUND_] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2665), + [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(2665), + [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(3190), - [anon_sym_cl] = ACTIONS(3043), - [aux_sym_accumulation_verb_token1] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3046), - [anon_sym_and] = ACTIONS(3046), - [anon_sym_as] = ACTIONS(3046), - [anon_sym_with] = ACTIONS(3046), - [anon_sym_do] = ACTIONS(3046), - [anon_sym_while] = ACTIONS(3046), - [anon_sym_until] = ACTIONS(3046), - [anon_sym_repeat] = ACTIONS(3046), - [anon_sym_when] = ACTIONS(3046), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_unless] = ACTIONS(3046), - [anon_sym_always] = ACTIONS(3046), - [anon_sym_thereis] = ACTIONS(3046), - [anon_sym_never] = ACTIONS(3046), - [anon_sym_else] = ACTIONS(3046), - [anon_sym_finally] = ACTIONS(3046), - [anon_sym_return] = ACTIONS(3046), - [anon_sym_initially] = ACTIONS(3046), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3192), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2665), + [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(2667), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2197), - [sym_num_lit] = STATE(2197), - [sym_kwd_lit] = STATE(2197), - [sym_str_lit] = STATE(2197), - [sym_char_lit] = STATE(2197), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2197), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2197), - [sym_set_lit] = STATE(2197), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2197), - [sym_splicing_read_cond_lit] = STATE(2197), - [sym_var_quoting_lit] = STATE(2197), - [sym_quoting_lit] = STATE(2197), - [sym_syn_quoting_lit] = STATE(2197), - [sym_unquote_splicing_lit] = STATE(2197), - [sym_unquoting_lit] = STATE(2197), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2197), - [sym_package_lit] = STATE(2197), - [sym_include_reader_macro] = STATE(2197), - [sym_complex_num_lit] = STATE(2197), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3050), - [sym_comment] = ACTIONS(3050), - [anon_sym_POUND_] = ACTIONS(3053), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3194), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3194), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_POUND_CARET] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_RPAREN] = ACTIONS(3070), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [138] = { + [sym__gap] = STATE(536), + [sym_dis_expr] = STATE(536), + [sym__form] = STATE(228), + [sym_num_lit] = STATE(228), + [sym_kwd_lit] = STATE(228), + [sym_str_lit] = STATE(228), + [sym_char_lit] = STATE(228), + [sym_sym_lit] = STATE(1486), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(228), + [sym__bare_list_lit] = STATE(1485), + [sym_vec_lit] = STATE(228), + [sym_set_lit] = STATE(228), + [sym__bare_set_lit] = STATE(1484), + [sym_read_cond_lit] = STATE(228), + [sym_splicing_read_cond_lit] = STATE(228), + [sym_var_quoting_lit] = STATE(228), + [sym_quoting_lit] = STATE(228), + [sym_syn_quoting_lit] = STATE(228), + [sym_unquote_splicing_lit] = STATE(228), + [sym_unquoting_lit] = STATE(228), + [sym_defun] = STATE(1485), + [sym_loop_macro] = STATE(1485), + [sym_path_lit] = STATE(228), + [sym_package_lit] = STATE(228), + [sym_include_reader_macro] = STATE(228), + [sym_complex_num_lit] = STATE(228), + [aux_sym_dis_expr_repeat1] = STATE(536), + [aux_sym_list_lit_repeat1] = STATE(2831), + [sym__ws] = ACTIONS(2669), + [sym_comment] = ACTIONS(2669), + [anon_sym_POUND_] = ACTIONS(2672), + [anon_sym_POUND] = ACTIONS(2675), + [anon_sym_DOT] = ACTIONS(2677), + [aux_sym_num_lit_token1] = ACTIONS(2679), + [anon_sym_COLON] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2684), + [anon_sym_DQUOTE] = ACTIONS(2686), + [sym_nil_lit] = ACTIONS(2677), + [aux_sym_sym_lit_token1] = ACTIONS(2688), + [anon_sym_CARET] = ACTIONS(2690), + [anon_sym_POUND_CARET] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2696), + [anon_sym_RPAREN] = ACTIONS(2699), + [anon_sym_POUND0A] = ACTIONS(2701), + [anon_sym_POUND0a] = ACTIONS(2701), + [anon_sym_POUND_QMARK] = ACTIONS(2703), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2705), + [anon_sym_POUND_SQUOTE] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2709), + [anon_sym_BQUOTE] = ACTIONS(2711), + [anon_sym_COMMA_AT] = ACTIONS(2713), + [anon_sym_COMMA] = ACTIONS(2715), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3194), - [anon_sym_cl] = ACTIONS(3072), - [aux_sym_accumulation_verb_token1] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_and] = ACTIONS(3075), - [anon_sym_as] = ACTIONS(3075), - [anon_sym_with] = ACTIONS(3075), - [anon_sym_do] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_until] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_when] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_unless] = ACTIONS(3075), - [anon_sym_always] = ACTIONS(3075), - [anon_sym_thereis] = ACTIONS(3075), - [anon_sym_never] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_finally] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_initially] = ACTIONS(3075), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3196), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2677), + [anon_sym_cl] = ACTIONS(2717), + [aux_sym_accumulation_verb_token1] = ACTIONS(2720), + [anon_sym_for] = ACTIONS(2720), + [anon_sym_and] = ACTIONS(2720), + [anon_sym_as] = ACTIONS(2720), + [anon_sym_with] = ACTIONS(2720), + [anon_sym_do] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2720), + [anon_sym_until] = ACTIONS(2720), + [anon_sym_repeat] = ACTIONS(2720), + [anon_sym_when] = ACTIONS(2720), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_unless] = ACTIONS(2720), + [anon_sym_always] = ACTIONS(2720), + [anon_sym_thereis] = ACTIONS(2720), + [anon_sym_never] = ACTIONS(2720), + [anon_sym_else] = ACTIONS(2720), + [anon_sym_finally] = ACTIONS(2720), + [anon_sym_return] = ACTIONS(2720), + [anon_sym_initially] = ACTIONS(2720), + [anon_sym_POUNDP] = ACTIONS(2722), + [anon_sym_POUNDp] = ACTIONS(2722), + [sym_self_referential_reader_macro] = ACTIONS(2724), + [anon_sym_POUND_PLUS] = ACTIONS(2726), + [anon_sym_POUND_DASH] = ACTIONS(2726), + [anon_sym_POUNDC] = ACTIONS(2728), + [anon_sym_POUNDc] = ACTIONS(2728), }, - [169] = { - [sym__gap] = STATE(103), - [sym_dis_expr] = STATE(103), - [sym__form] = STATE(2195), - [sym_num_lit] = STATE(2195), - [sym_kwd_lit] = STATE(2195), - [sym_str_lit] = STATE(2195), - [sym_char_lit] = STATE(2195), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2195), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2195), - [sym_set_lit] = STATE(2195), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2195), - [sym_splicing_read_cond_lit] = STATE(2195), - [sym_var_quoting_lit] = STATE(2195), - [sym_quoting_lit] = STATE(2195), - [sym_syn_quoting_lit] = STATE(2195), - [sym_unquote_splicing_lit] = STATE(2195), - [sym_unquoting_lit] = STATE(2195), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2195), - [sym_package_lit] = STATE(2195), - [sym_include_reader_macro] = STATE(2195), - [sym_complex_num_lit] = STATE(2195), - [aux_sym_dis_expr_repeat1] = STATE(103), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3198), - [sym_comment] = ACTIONS(3198), - [anon_sym_POUND_] = ACTIONS(3053), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3201), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3201), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_POUND_CARET] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_RPAREN] = ACTIONS(3070), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [139] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2406), + [sym_num_lit] = STATE(2406), + [sym_kwd_lit] = STATE(2406), + [sym_str_lit] = STATE(2406), + [sym_char_lit] = STATE(2406), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2406), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2406), + [sym_set_lit] = STATE(2406), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2406), + [sym_splicing_read_cond_lit] = STATE(2406), + [sym_var_quoting_lit] = STATE(2406), + [sym_quoting_lit] = STATE(2406), + [sym_syn_quoting_lit] = STATE(2406), + [sym_unquote_splicing_lit] = STATE(2406), + [sym_unquoting_lit] = STATE(2406), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2406), + [sym_package_lit] = STATE(2406), + [sym_include_reader_macro] = STATE(2406), + [sym_complex_num_lit] = STATE(2406), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1479), + [sym_comment] = ACTIONS(1479), + [anon_sym_POUND_] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2730), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1487), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2730), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym_POUND_CARET] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1499), + [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(3201), - [anon_sym_cl] = ACTIONS(3072), - [aux_sym_accumulation_verb_token1] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_and] = ACTIONS(3075), - [anon_sym_as] = ACTIONS(3075), - [anon_sym_with] = ACTIONS(3075), - [anon_sym_do] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_until] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_when] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_unless] = ACTIONS(3075), - [anon_sym_always] = ACTIONS(3075), - [anon_sym_thereis] = ACTIONS(3075), - [anon_sym_never] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_finally] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_initially] = ACTIONS(3075), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3203), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2730), + [anon_sym_cl] = ACTIONS(1501), + [aux_sym_accumulation_verb_token1] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_and] = ACTIONS(1504), + [anon_sym_as] = ACTIONS(1504), + [anon_sym_with] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_until] = ACTIONS(1504), + [anon_sym_repeat] = ACTIONS(1504), + [anon_sym_when] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_unless] = ACTIONS(1504), + [anon_sym_always] = ACTIONS(1504), + [anon_sym_thereis] = ACTIONS(1504), + [anon_sym_never] = ACTIONS(1504), + [anon_sym_else] = ACTIONS(1504), + [anon_sym_finally] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_initially] = ACTIONS(1504), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2732), + [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(104), - [sym_dis_expr] = STATE(104), - [sym__form] = STATE(2193), - [sym_num_lit] = STATE(2193), - [sym_kwd_lit] = STATE(2193), - [sym_str_lit] = STATE(2193), - [sym_char_lit] = STATE(2193), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2193), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2193), - [sym_set_lit] = STATE(2193), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2193), - [sym_splicing_read_cond_lit] = STATE(2193), - [sym_var_quoting_lit] = STATE(2193), - [sym_quoting_lit] = STATE(2193), - [sym_syn_quoting_lit] = STATE(2193), - [sym_unquote_splicing_lit] = STATE(2193), - [sym_unquoting_lit] = STATE(2193), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2193), - [sym_package_lit] = STATE(2193), - [sym_include_reader_macro] = STATE(2193), - [sym_complex_num_lit] = STATE(2193), - [aux_sym_dis_expr_repeat1] = STATE(104), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3205), - [sym_comment] = ACTIONS(3205), + [140] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2164), + [sym_num_lit] = STATE(2164), + [sym_kwd_lit] = STATE(2164), + [sym_str_lit] = STATE(2164), + [sym_char_lit] = STATE(2164), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2164), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2164), + [sym_set_lit] = STATE(2164), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2164), + [sym_splicing_read_cond_lit] = STATE(2164), + [sym_var_quoting_lit] = STATE(2164), + [sym_quoting_lit] = STATE(2164), + [sym_syn_quoting_lit] = STATE(2164), + [sym_unquote_splicing_lit] = STATE(2164), + [sym_unquoting_lit] = STATE(2164), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2164), + [sym_package_lit] = STATE(2164), + [sym_include_reader_macro] = STATE(2164), + [sym_complex_num_lit] = STATE(2164), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1349), + [sym_comment] = ACTIONS(1349), [anon_sym_POUND_] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3208), - [aux_sym_num_lit_token1] = ACTIONS(227), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2734), + [aux_sym_num_lit_token1] = ACTIONS(71), [anon_sym_COLON] = ACTIONS(1357), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3208), - [aux_sym_sym_lit_token1] = ACTIONS(237), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2734), + [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(3208), + [sym_fancy_literal] = ACTIONS(2734), [anon_sym_cl] = ACTIONS(1371), [aux_sym_accumulation_verb_token1] = ACTIONS(1374), [anon_sym_for] = ACTIONS(1374), @@ -25138,158 +22578,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(1374), [anon_sym_return] = ACTIONS(1374), [anon_sym_initially] = ACTIONS(1374), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3210), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2736), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2192), - [sym_num_lit] = STATE(2192), - [sym_kwd_lit] = STATE(2192), - [sym_str_lit] = STATE(2192), - [sym_char_lit] = STATE(2192), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2192), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2192), - [sym_set_lit] = STATE(2192), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2192), - [sym_splicing_read_cond_lit] = STATE(2192), - [sym_var_quoting_lit] = STATE(2192), - [sym_quoting_lit] = STATE(2192), - [sym_syn_quoting_lit] = STATE(2192), - [sym_unquote_splicing_lit] = STATE(2192), - [sym_unquoting_lit] = STATE(2192), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2192), - [sym_package_lit] = STATE(2192), - [sym_include_reader_macro] = STATE(2192), - [sym_complex_num_lit] = STATE(2192), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3133), - [sym_comment] = ACTIONS(3133), - [anon_sym_POUND_] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3212), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1357), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3212), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [141] = { + [sym__gap] = STATE(73), + [sym_dis_expr] = STATE(73), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(73), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2738), + [sym_comment] = ACTIONS(2738), + [anon_sym_POUND_] = ACTIONS(2741), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2744), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2746), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2744), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2749), + [anon_sym_POUND_CARET] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2755), + [anon_sym_RPAREN] = ACTIONS(2758), + [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(3212), - [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(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3214), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2744), + [anon_sym_cl] = ACTIONS(2760), + [aux_sym_accumulation_verb_token1] = ACTIONS(2763), + [anon_sym_for] = ACTIONS(2763), + [anon_sym_and] = ACTIONS(2763), + [anon_sym_as] = ACTIONS(2763), + [anon_sym_with] = ACTIONS(2763), + [anon_sym_do] = ACTIONS(2763), + [anon_sym_while] = ACTIONS(2763), + [anon_sym_until] = ACTIONS(2763), + [anon_sym_repeat] = ACTIONS(2763), + [anon_sym_when] = ACTIONS(2763), + [anon_sym_if] = ACTIONS(2763), + [anon_sym_unless] = ACTIONS(2763), + [anon_sym_always] = ACTIONS(2763), + [anon_sym_thereis] = ACTIONS(2763), + [anon_sym_never] = ACTIONS(2763), + [anon_sym_else] = ACTIONS(2763), + [anon_sym_finally] = ACTIONS(2763), + [anon_sym_return] = ACTIONS(2763), + [anon_sym_initially] = ACTIONS(2763), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2765), + [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(107), - [sym_dis_expr] = STATE(107), - [sym__form] = STATE(2032), - [sym_num_lit] = STATE(2032), - [sym_kwd_lit] = STATE(2032), - [sym_str_lit] = STATE(2032), - [sym_char_lit] = STATE(2032), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2032), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2032), - [sym_set_lit] = STATE(2032), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2032), - [sym_splicing_read_cond_lit] = STATE(2032), - [sym_var_quoting_lit] = STATE(2032), - [sym_quoting_lit] = STATE(2032), - [sym_syn_quoting_lit] = STATE(2032), - [sym_unquote_splicing_lit] = STATE(2032), - [sym_unquoting_lit] = STATE(2032), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2032), - [sym_package_lit] = STATE(2032), - [sym_include_reader_macro] = STATE(2032), - [sym_complex_num_lit] = STATE(2032), - [aux_sym_dis_expr_repeat1] = STATE(107), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3216), - [sym_comment] = ACTIONS(3216), + [142] = { + [sym__gap] = STATE(268), + [sym_dis_expr] = STATE(268), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(268), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2767), + [sym_comment] = ACTIONS(2767), [anon_sym_POUND_] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3219), - [aux_sym_num_lit_token1] = ACTIONS(227), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2770), + [aux_sym_num_lit_token1] = ACTIONS(71), [anon_sym_COLON] = ACTIONS(1357), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3219), - [aux_sym_sym_lit_token1] = ACTIONS(237), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2770), + [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(3219), + [sym_fancy_literal] = ACTIONS(2770), [anon_sym_cl] = ACTIONS(1371), [aux_sym_accumulation_verb_token1] = ACTIONS(1374), [anon_sym_for] = ACTIONS(1374), @@ -25310,2050 +22750,588 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(1374), [anon_sym_return] = ACTIONS(1374), [anon_sym_initially] = ACTIONS(1374), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3221), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [173] = { - [sym__gap] = STATE(109), - [sym_dis_expr] = STATE(109), - [sym__form] = STATE(2189), - [sym_num_lit] = STATE(2189), - [sym_kwd_lit] = STATE(2189), - [sym_str_lit] = STATE(2189), - [sym_char_lit] = STATE(2189), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2189), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2189), - [sym_set_lit] = STATE(2189), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2189), - [sym_splicing_read_cond_lit] = STATE(2189), - [sym_var_quoting_lit] = STATE(2189), - [sym_quoting_lit] = STATE(2189), - [sym_syn_quoting_lit] = STATE(2189), - [sym_unquote_splicing_lit] = STATE(2189), - [sym_unquoting_lit] = STATE(2189), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2189), - [sym_package_lit] = STATE(2189), - [sym_include_reader_macro] = STATE(2189), - [sym_complex_num_lit] = STATE(2189), - [aux_sym_dis_expr_repeat1] = STATE(109), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3223), - [sym_comment] = ACTIONS(3223), - [anon_sym_POUND_] = ACTIONS(3053), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3226), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3226), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_POUND_CARET] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_RPAREN] = ACTIONS(3070), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3226), - [anon_sym_cl] = ACTIONS(3072), - [aux_sym_accumulation_verb_token1] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_and] = ACTIONS(3075), - [anon_sym_as] = ACTIONS(3075), - [anon_sym_with] = ACTIONS(3075), - [anon_sym_do] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_until] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_when] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_unless] = ACTIONS(3075), - [anon_sym_always] = ACTIONS(3075), - [anon_sym_thereis] = ACTIONS(3075), - [anon_sym_never] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_finally] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_initially] = ACTIONS(3075), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3228), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [174] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2188), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2188), - [sym_set_lit] = STATE(2188), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3050), - [sym_comment] = ACTIONS(3050), - [anon_sym_POUND_] = ACTIONS(3053), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3230), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3230), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_POUND_CARET] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_RPAREN] = ACTIONS(3070), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3230), - [anon_sym_cl] = ACTIONS(3072), - [aux_sym_accumulation_verb_token1] = ACTIONS(3075), - [anon_sym_for] = ACTIONS(3075), - [anon_sym_and] = ACTIONS(3075), - [anon_sym_as] = ACTIONS(3075), - [anon_sym_with] = ACTIONS(3075), - [anon_sym_do] = ACTIONS(3075), - [anon_sym_while] = ACTIONS(3075), - [anon_sym_until] = ACTIONS(3075), - [anon_sym_repeat] = ACTIONS(3075), - [anon_sym_when] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3075), - [anon_sym_unless] = ACTIONS(3075), - [anon_sym_always] = ACTIONS(3075), - [anon_sym_thereis] = ACTIONS(3075), - [anon_sym_never] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3075), - [anon_sym_finally] = ACTIONS(3075), - [anon_sym_return] = ACTIONS(3075), - [anon_sym_initially] = ACTIONS(3075), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3232), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [175] = { - [sym__gap] = STATE(110), - [sym_dis_expr] = STATE(110), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2185), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2185), - [sym_set_lit] = STATE(2185), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(110), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3234), - [sym_comment] = ACTIONS(3234), - [anon_sym_POUND_] = ACTIONS(2398), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3237), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2403), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3237), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2406), - [anon_sym_POUND_CARET] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2412), - [anon_sym_RPAREN] = ACTIONS(2415), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3237), - [anon_sym_cl] = ACTIONS(2417), - [aux_sym_accumulation_verb_token1] = ACTIONS(2420), - [anon_sym_for] = ACTIONS(2420), - [anon_sym_and] = ACTIONS(2420), - [anon_sym_as] = ACTIONS(2420), - [anon_sym_with] = ACTIONS(2420), - [anon_sym_do] = ACTIONS(2420), - [anon_sym_while] = ACTIONS(2420), - [anon_sym_until] = ACTIONS(2420), - [anon_sym_repeat] = ACTIONS(2420), - [anon_sym_when] = ACTIONS(2420), - [anon_sym_if] = ACTIONS(2420), - [anon_sym_unless] = ACTIONS(2420), - [anon_sym_always] = ACTIONS(2420), - [anon_sym_thereis] = ACTIONS(2420), - [anon_sym_never] = ACTIONS(2420), - [anon_sym_else] = ACTIONS(2420), - [anon_sym_finally] = ACTIONS(2420), - [anon_sym_return] = ACTIONS(2420), - [anon_sym_initially] = ACTIONS(2420), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3239), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [176] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2184), - [sym_num_lit] = STATE(2184), - [sym_kwd_lit] = STATE(2184), - [sym_str_lit] = STATE(2184), - [sym_char_lit] = STATE(2184), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2184), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2184), - [sym_set_lit] = STATE(2184), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2184), - [sym_splicing_read_cond_lit] = STATE(2184), - [sym_var_quoting_lit] = STATE(2184), - [sym_quoting_lit] = STATE(2184), - [sym_syn_quoting_lit] = STATE(2184), - [sym_unquote_splicing_lit] = STATE(2184), - [sym_unquoting_lit] = STATE(2184), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2184), - [sym_package_lit] = STATE(2184), - [sym_include_reader_macro] = STATE(2184), - [sym_complex_num_lit] = STATE(2184), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2424), - [sym_comment] = ACTIONS(2424), - [anon_sym_POUND_] = ACTIONS(2398), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3241), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2403), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3241), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2406), - [anon_sym_POUND_CARET] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2412), - [anon_sym_RPAREN] = ACTIONS(2415), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3241), - [anon_sym_cl] = ACTIONS(2417), - [aux_sym_accumulation_verb_token1] = ACTIONS(2420), - [anon_sym_for] = ACTIONS(2420), - [anon_sym_and] = ACTIONS(2420), - [anon_sym_as] = ACTIONS(2420), - [anon_sym_with] = ACTIONS(2420), - [anon_sym_do] = ACTIONS(2420), - [anon_sym_while] = ACTIONS(2420), - [anon_sym_until] = ACTIONS(2420), - [anon_sym_repeat] = ACTIONS(2420), - [anon_sym_when] = ACTIONS(2420), - [anon_sym_if] = ACTIONS(2420), - [anon_sym_unless] = ACTIONS(2420), - [anon_sym_always] = ACTIONS(2420), - [anon_sym_thereis] = ACTIONS(2420), - [anon_sym_never] = ACTIONS(2420), - [anon_sym_else] = ACTIONS(2420), - [anon_sym_finally] = ACTIONS(2420), - [anon_sym_return] = ACTIONS(2420), - [anon_sym_initially] = ACTIONS(2420), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3243), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [177] = { - [sym__gap] = STATE(114), - [sym_dis_expr] = STATE(114), - [sym__form] = STATE(2182), - [sym_num_lit] = STATE(2182), - [sym_kwd_lit] = STATE(2182), - [sym_str_lit] = STATE(2182), - [sym_char_lit] = STATE(2182), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2182), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2182), - [sym_set_lit] = STATE(2182), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2182), - [sym_splicing_read_cond_lit] = STATE(2182), - [sym_var_quoting_lit] = STATE(2182), - [sym_quoting_lit] = STATE(2182), - [sym_syn_quoting_lit] = STATE(2182), - [sym_unquote_splicing_lit] = STATE(2182), - [sym_unquoting_lit] = STATE(2182), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2182), - [sym_package_lit] = STATE(2182), - [sym_include_reader_macro] = STATE(2182), - [sym_complex_num_lit] = STATE(2182), - [aux_sym_dis_expr_repeat1] = STATE(114), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3245), - [sym_comment] = ACTIONS(3245), - [anon_sym_POUND_] = ACTIONS(2398), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3248), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2403), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3248), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2406), - [anon_sym_POUND_CARET] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2412), - [anon_sym_RPAREN] = ACTIONS(2415), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3248), - [anon_sym_cl] = ACTIONS(2417), - [aux_sym_accumulation_verb_token1] = ACTIONS(2420), - [anon_sym_for] = ACTIONS(2420), - [anon_sym_and] = ACTIONS(2420), - [anon_sym_as] = ACTIONS(2420), - [anon_sym_with] = ACTIONS(2420), - [anon_sym_do] = ACTIONS(2420), - [anon_sym_while] = ACTIONS(2420), - [anon_sym_until] = ACTIONS(2420), - [anon_sym_repeat] = ACTIONS(2420), - [anon_sym_when] = ACTIONS(2420), - [anon_sym_if] = ACTIONS(2420), - [anon_sym_unless] = ACTIONS(2420), - [anon_sym_always] = ACTIONS(2420), - [anon_sym_thereis] = ACTIONS(2420), - [anon_sym_never] = ACTIONS(2420), - [anon_sym_else] = ACTIONS(2420), - [anon_sym_finally] = ACTIONS(2420), - [anon_sym_return] = ACTIONS(2420), - [anon_sym_initially] = ACTIONS(2420), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3250), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [178] = { - [sym__gap] = STATE(115), - [sym_dis_expr] = STATE(115), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2180), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2180), - [sym_set_lit] = STATE(2180), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(115), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3252), - [sym_comment] = ACTIONS(3252), - [anon_sym_POUND_] = ACTIONS(2441), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3255), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2446), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3255), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2449), - [anon_sym_POUND_CARET] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2458), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3255), - [anon_sym_cl] = ACTIONS(2460), - [aux_sym_accumulation_verb_token1] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_and] = ACTIONS(2463), - [anon_sym_as] = ACTIONS(2463), - [anon_sym_with] = ACTIONS(2463), - [anon_sym_do] = ACTIONS(2463), - [anon_sym_while] = ACTIONS(2463), - [anon_sym_until] = ACTIONS(2463), - [anon_sym_repeat] = ACTIONS(2463), - [anon_sym_when] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_unless] = ACTIONS(2463), - [anon_sym_always] = ACTIONS(2463), - [anon_sym_thereis] = ACTIONS(2463), - [anon_sym_never] = ACTIONS(2463), - [anon_sym_else] = ACTIONS(2463), - [anon_sym_finally] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_initially] = ACTIONS(2463), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3257), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [179] = { - [sym__gap] = STATE(190), - [sym_dis_expr] = STATE(190), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2045), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2045), - [sym_set_lit] = STATE(2045), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(190), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3259), - [sym_comment] = ACTIONS(3259), - [anon_sym_POUND_] = ACTIONS(2737), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3262), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2742), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3262), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_POUND_CARET] = ACTIONS(198), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_RPAREN] = ACTIONS(204), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3262), - [anon_sym_cl] = ACTIONS(2748), - [aux_sym_accumulation_verb_token1] = ACTIONS(211), - [anon_sym_for] = ACTIONS(211), - [anon_sym_and] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_with] = ACTIONS(211), - [anon_sym_do] = ACTIONS(211), - [anon_sym_while] = ACTIONS(211), - [anon_sym_until] = ACTIONS(211), - [anon_sym_repeat] = ACTIONS(211), - [anon_sym_when] = ACTIONS(211), - [anon_sym_if] = ACTIONS(211), - [anon_sym_unless] = ACTIONS(211), - [anon_sym_always] = ACTIONS(211), - [anon_sym_thereis] = ACTIONS(211), - [anon_sym_never] = ACTIONS(211), - [anon_sym_else] = ACTIONS(211), - [anon_sym_finally] = ACTIONS(211), - [anon_sym_return] = ACTIONS(211), - [anon_sym_initially] = ACTIONS(211), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3264), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [180] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2179), - [sym_num_lit] = STATE(2179), - [sym_kwd_lit] = STATE(2179), - [sym_str_lit] = STATE(2179), - [sym_char_lit] = STATE(2179), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2179), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2179), - [sym_set_lit] = STATE(2179), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2179), - [sym_splicing_read_cond_lit] = STATE(2179), - [sym_var_quoting_lit] = STATE(2179), - [sym_quoting_lit] = STATE(2179), - [sym_syn_quoting_lit] = STATE(2179), - [sym_unquote_splicing_lit] = STATE(2179), - [sym_unquoting_lit] = STATE(2179), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2179), - [sym_package_lit] = STATE(2179), - [sym_include_reader_macro] = STATE(2179), - [sym_complex_num_lit] = STATE(2179), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2467), - [sym_comment] = ACTIONS(2467), - [anon_sym_POUND_] = ACTIONS(2441), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3266), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2446), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3266), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2449), - [anon_sym_POUND_CARET] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2458), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3266), - [anon_sym_cl] = ACTIONS(2460), - [aux_sym_accumulation_verb_token1] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_and] = ACTIONS(2463), - [anon_sym_as] = ACTIONS(2463), - [anon_sym_with] = ACTIONS(2463), - [anon_sym_do] = ACTIONS(2463), - [anon_sym_while] = ACTIONS(2463), - [anon_sym_until] = ACTIONS(2463), - [anon_sym_repeat] = ACTIONS(2463), - [anon_sym_when] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_unless] = ACTIONS(2463), - [anon_sym_always] = ACTIONS(2463), - [anon_sym_thereis] = ACTIONS(2463), - [anon_sym_never] = ACTIONS(2463), - [anon_sym_else] = ACTIONS(2463), - [anon_sym_finally] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_initially] = ACTIONS(2463), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3268), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [181] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2177), - [sym_num_lit] = STATE(2177), - [sym_kwd_lit] = STATE(2177), - [sym_str_lit] = STATE(2177), - [sym_char_lit] = STATE(2177), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2177), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2177), - [sym_set_lit] = STATE(2177), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2177), - [sym_splicing_read_cond_lit] = STATE(2177), - [sym_var_quoting_lit] = STATE(2177), - [sym_quoting_lit] = STATE(2177), - [sym_syn_quoting_lit] = STATE(2177), - [sym_unquote_splicing_lit] = STATE(2177), - [sym_unquoting_lit] = STATE(2177), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2177), - [sym_package_lit] = STATE(2177), - [sym_include_reader_macro] = STATE(2177), - [sym_complex_num_lit] = STATE(2177), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2480), - [sym_comment] = ACTIONS(2480), - [anon_sym_POUND_] = ACTIONS(2483), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3270), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2488), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3270), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_POUND_CARET] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2497), - [anon_sym_RPAREN] = ACTIONS(2500), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3270), - [anon_sym_cl] = ACTIONS(2502), - [aux_sym_accumulation_verb_token1] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_and] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_with] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_until] = ACTIONS(2505), - [anon_sym_repeat] = ACTIONS(2505), - [anon_sym_when] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_unless] = ACTIONS(2505), - [anon_sym_always] = ACTIONS(2505), - [anon_sym_thereis] = ACTIONS(2505), - [anon_sym_never] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_finally] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_initially] = ACTIONS(2505), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3272), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [182] = { - [sym__gap] = STATE(117), - [sym_dis_expr] = STATE(117), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2175), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2175), - [sym_set_lit] = STATE(2175), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(117), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3274), - [sym_comment] = ACTIONS(3274), - [anon_sym_POUND_] = ACTIONS(2483), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3277), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2488), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3277), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_POUND_CARET] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2497), - [anon_sym_RPAREN] = ACTIONS(2500), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3277), - [anon_sym_cl] = ACTIONS(2502), - [aux_sym_accumulation_verb_token1] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_and] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_with] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_until] = ACTIONS(2505), - [anon_sym_repeat] = ACTIONS(2505), - [anon_sym_when] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_unless] = ACTIONS(2505), - [anon_sym_always] = ACTIONS(2505), - [anon_sym_thereis] = ACTIONS(2505), - [anon_sym_never] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_finally] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_initially] = ACTIONS(2505), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3279), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [183] = { - [sym__gap] = STATE(118), - [sym_dis_expr] = STATE(118), - [sym__form] = STATE(2173), - [sym_num_lit] = STATE(2173), - [sym_kwd_lit] = STATE(2173), - [sym_str_lit] = STATE(2173), - [sym_char_lit] = STATE(2173), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2173), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2173), - [sym_set_lit] = STATE(2173), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2173), - [sym_splicing_read_cond_lit] = STATE(2173), - [sym_var_quoting_lit] = STATE(2173), - [sym_quoting_lit] = STATE(2173), - [sym_syn_quoting_lit] = STATE(2173), - [sym_unquote_splicing_lit] = STATE(2173), - [sym_unquoting_lit] = STATE(2173), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2173), - [sym_package_lit] = STATE(2173), - [sym_include_reader_macro] = STATE(2173), - [sym_complex_num_lit] = STATE(2173), - [aux_sym_dis_expr_repeat1] = STATE(118), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3281), - [sym_comment] = ACTIONS(3281), - [anon_sym_POUND_] = ACTIONS(2483), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3284), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2488), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3284), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_POUND_CARET] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2497), - [anon_sym_RPAREN] = ACTIONS(2500), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3284), - [anon_sym_cl] = ACTIONS(2502), - [aux_sym_accumulation_verb_token1] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_and] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_with] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_until] = ACTIONS(2505), - [anon_sym_repeat] = ACTIONS(2505), - [anon_sym_when] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_unless] = ACTIONS(2505), - [anon_sym_always] = ACTIONS(2505), - [anon_sym_thereis] = ACTIONS(2505), - [anon_sym_never] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_finally] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_initially] = ACTIONS(2505), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3286), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [184] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2172), - [sym_num_lit] = STATE(2172), - [sym_kwd_lit] = STATE(2172), - [sym_str_lit] = STATE(2172), - [sym_char_lit] = STATE(2172), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2172), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2172), - [sym_set_lit] = STATE(2172), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2172), - [sym_splicing_read_cond_lit] = STATE(2172), - [sym_var_quoting_lit] = STATE(2172), - [sym_quoting_lit] = STATE(2172), - [sym_syn_quoting_lit] = STATE(2172), - [sym_unquote_splicing_lit] = STATE(2172), - [sym_unquoting_lit] = STATE(2172), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2172), - [sym_package_lit] = STATE(2172), - [sym_include_reader_macro] = STATE(2172), - [sym_complex_num_lit] = STATE(2172), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2480), - [sym_comment] = ACTIONS(2480), - [anon_sym_POUND_] = ACTIONS(2483), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3288), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2488), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3288), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2491), - [anon_sym_POUND_CARET] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2497), - [anon_sym_RPAREN] = ACTIONS(2500), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3288), - [anon_sym_cl] = ACTIONS(2502), - [aux_sym_accumulation_verb_token1] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_and] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_with] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_until] = ACTIONS(2505), - [anon_sym_repeat] = ACTIONS(2505), - [anon_sym_when] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_unless] = ACTIONS(2505), - [anon_sym_always] = ACTIONS(2505), - [anon_sym_thereis] = ACTIONS(2505), - [anon_sym_never] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_finally] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_initially] = ACTIONS(2505), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3290), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [185] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2170), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2170), - [sym_set_lit] = STATE(2170), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2467), - [sym_comment] = ACTIONS(2467), - [anon_sym_POUND_] = ACTIONS(2441), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3292), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2446), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3292), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2449), - [anon_sym_POUND_CARET] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2458), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3292), - [anon_sym_cl] = ACTIONS(2460), - [aux_sym_accumulation_verb_token1] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_and] = ACTIONS(2463), - [anon_sym_as] = ACTIONS(2463), - [anon_sym_with] = ACTIONS(2463), - [anon_sym_do] = ACTIONS(2463), - [anon_sym_while] = ACTIONS(2463), - [anon_sym_until] = ACTIONS(2463), - [anon_sym_repeat] = ACTIONS(2463), - [anon_sym_when] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_unless] = ACTIONS(2463), - [anon_sym_always] = ACTIONS(2463), - [anon_sym_thereis] = ACTIONS(2463), - [anon_sym_never] = ACTIONS(2463), - [anon_sym_else] = ACTIONS(2463), - [anon_sym_finally] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_initially] = ACTIONS(2463), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3294), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [186] = { - [sym__gap] = STATE(83), - [sym_dis_expr] = STATE(83), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2346), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2346), - [sym_set_lit] = STATE(2346), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(83), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3296), - [sym_comment] = ACTIONS(3296), - [anon_sym_POUND_] = ACTIONS(1381), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3299), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1386), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3299), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3299), - [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(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3301), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [187] = { - [sym__gap] = STATE(120), - [sym_dis_expr] = STATE(120), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2165), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2165), - [sym_set_lit] = STATE(2165), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(120), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3303), - [sym_comment] = ACTIONS(3303), - [anon_sym_POUND_] = ACTIONS(3306), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3309), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3309), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3314), - [anon_sym_POUND_CARET] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3320), - [anon_sym_RPAREN] = ACTIONS(3323), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3309), - [anon_sym_cl] = ACTIONS(3325), - [aux_sym_accumulation_verb_token1] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_and] = ACTIONS(3328), - [anon_sym_as] = ACTIONS(3328), - [anon_sym_with] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_until] = ACTIONS(3328), - [anon_sym_repeat] = ACTIONS(3328), - [anon_sym_when] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_unless] = ACTIONS(3328), - [anon_sym_always] = ACTIONS(3328), - [anon_sym_thereis] = ACTIONS(3328), - [anon_sym_never] = ACTIONS(3328), - [anon_sym_else] = ACTIONS(3328), - [anon_sym_finally] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_initially] = ACTIONS(3328), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3330), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [188] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2164), - [sym_num_lit] = STATE(2164), - [sym_kwd_lit] = STATE(2164), - [sym_str_lit] = STATE(2164), - [sym_char_lit] = STATE(2164), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2164), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2164), - [sym_set_lit] = STATE(2164), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2164), - [sym_splicing_read_cond_lit] = STATE(2164), - [sym_var_quoting_lit] = STATE(2164), - [sym_quoting_lit] = STATE(2164), - [sym_syn_quoting_lit] = STATE(2164), - [sym_unquote_splicing_lit] = STATE(2164), - [sym_unquoting_lit] = STATE(2164), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2164), - [sym_package_lit] = STATE(2164), - [sym_include_reader_macro] = STATE(2164), - [sym_complex_num_lit] = STATE(2164), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3332), - [sym_comment] = ACTIONS(3332), - [anon_sym_POUND_] = ACTIONS(3335), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3338), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3338), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_POUND_CARET] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_RPAREN] = ACTIONS(3352), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3338), - [anon_sym_cl] = ACTIONS(3354), - [aux_sym_accumulation_verb_token1] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_and] = ACTIONS(3357), - [anon_sym_as] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_until] = ACTIONS(3357), - [anon_sym_repeat] = ACTIONS(3357), - [anon_sym_when] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_unless] = ACTIONS(3357), - [anon_sym_always] = ACTIONS(3357), - [anon_sym_thereis] = ACTIONS(3357), - [anon_sym_never] = ACTIONS(3357), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_finally] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_initially] = ACTIONS(3357), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3359), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [189] = { - [sym__gap] = STATE(123), - [sym_dis_expr] = STATE(123), - [sym__form] = STATE(2162), - [sym_num_lit] = STATE(2162), - [sym_kwd_lit] = STATE(2162), - [sym_str_lit] = STATE(2162), - [sym_char_lit] = STATE(2162), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2162), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2162), - [sym_set_lit] = STATE(2162), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2162), - [sym_splicing_read_cond_lit] = STATE(2162), - [sym_var_quoting_lit] = STATE(2162), - [sym_quoting_lit] = STATE(2162), - [sym_syn_quoting_lit] = STATE(2162), - [sym_unquote_splicing_lit] = STATE(2162), - [sym_unquoting_lit] = STATE(2162), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2162), - [sym_package_lit] = STATE(2162), - [sym_include_reader_macro] = STATE(2162), - [sym_complex_num_lit] = STATE(2162), - [aux_sym_dis_expr_repeat1] = STATE(123), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3361), - [sym_comment] = ACTIONS(3361), - [anon_sym_POUND_] = ACTIONS(3335), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3364), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3364), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_POUND_CARET] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_RPAREN] = ACTIONS(3352), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3364), - [anon_sym_cl] = ACTIONS(3354), - [aux_sym_accumulation_verb_token1] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_and] = ACTIONS(3357), - [anon_sym_as] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_until] = ACTIONS(3357), - [anon_sym_repeat] = ACTIONS(3357), - [anon_sym_when] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_unless] = ACTIONS(3357), - [anon_sym_always] = ACTIONS(3357), - [anon_sym_thereis] = ACTIONS(3357), - [anon_sym_never] = ACTIONS(3357), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_finally] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_initially] = ACTIONS(3357), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3366), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2772), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2077), - [sym_num_lit] = STATE(2077), - [sym_kwd_lit] = STATE(2077), - [sym_str_lit] = STATE(2077), - [sym_char_lit] = STATE(2077), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2077), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2077), - [sym_set_lit] = STATE(2077), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2077), - [sym_splicing_read_cond_lit] = STATE(2077), - [sym_var_quoting_lit] = STATE(2077), - [sym_quoting_lit] = STATE(2077), - [sym_syn_quoting_lit] = STATE(2077), - [sym_unquote_splicing_lit] = STATE(2077), - [sym_unquoting_lit] = STATE(2077), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2077), - [sym_package_lit] = STATE(2077), - [sym_include_reader_macro] = STATE(2077), - [sym_complex_num_lit] = STATE(2077), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3368), - [sym_comment] = ACTIONS(3368), - [anon_sym_POUND_] = ACTIONS(3100), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3371), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3371), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3108), - [anon_sym_POUND_CARET] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_RPAREN] = ACTIONS(3117), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [143] = { + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2774), + [sym_comment] = ACTIONS(2774), + [anon_sym_POUND_] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2777), + [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(2777), + [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(3371), - [anon_sym_cl] = ACTIONS(3119), - [aux_sym_accumulation_verb_token1] = ACTIONS(3122), - [anon_sym_for] = ACTIONS(3122), - [anon_sym_and] = ACTIONS(3122), - [anon_sym_as] = ACTIONS(3122), - [anon_sym_with] = ACTIONS(3122), - [anon_sym_do] = ACTIONS(3122), - [anon_sym_while] = ACTIONS(3122), - [anon_sym_until] = ACTIONS(3122), - [anon_sym_repeat] = ACTIONS(3122), - [anon_sym_when] = ACTIONS(3122), - [anon_sym_if] = ACTIONS(3122), - [anon_sym_unless] = ACTIONS(3122), - [anon_sym_always] = ACTIONS(3122), - [anon_sym_thereis] = ACTIONS(3122), - [anon_sym_never] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3122), - [anon_sym_finally] = ACTIONS(3122), - [anon_sym_return] = ACTIONS(3122), - [anon_sym_initially] = ACTIONS(3122), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3373), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2777), + [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(2779), + [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(125), - [sym_dis_expr] = STATE(125), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2158), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2158), - [sym_set_lit] = STATE(2158), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(125), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3375), - [sym_comment] = ACTIONS(3375), - [anon_sym_POUND_] = ACTIONS(3378), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3381), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3381), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_POUND_CARET] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3392), - [anon_sym_RPAREN] = ACTIONS(3395), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [144] = { + [sym__gap] = STATE(408), + [sym_dis_expr] = STATE(408), + [sym__form] = STATE(261), + [sym_num_lit] = STATE(261), + [sym_kwd_lit] = STATE(261), + [sym_str_lit] = STATE(261), + [sym_char_lit] = STATE(261), + [sym_sym_lit] = STATE(1486), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(261), + [sym__bare_list_lit] = STATE(1485), + [sym_vec_lit] = STATE(261), + [sym_set_lit] = STATE(261), + [sym__bare_set_lit] = STATE(1484), + [sym_read_cond_lit] = STATE(261), + [sym_splicing_read_cond_lit] = STATE(261), + [sym_var_quoting_lit] = STATE(261), + [sym_quoting_lit] = STATE(261), + [sym_syn_quoting_lit] = STATE(261), + [sym_unquote_splicing_lit] = STATE(261), + [sym_unquoting_lit] = STATE(261), + [sym_defun] = STATE(1485), + [sym_loop_macro] = STATE(1485), + [sym_path_lit] = STATE(261), + [sym_package_lit] = STATE(261), + [sym_include_reader_macro] = STATE(261), + [sym_complex_num_lit] = STATE(261), + [aux_sym_dis_expr_repeat1] = STATE(408), + [aux_sym_list_lit_repeat1] = STATE(2831), + [sym__ws] = ACTIONS(2781), + [sym_comment] = ACTIONS(2781), + [anon_sym_POUND_] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(2675), + [anon_sym_DOT] = ACTIONS(2787), + [aux_sym_num_lit_token1] = ACTIONS(2679), + [anon_sym_COLON] = ACTIONS(2789), + [anon_sym_COLON_COLON] = ACTIONS(2684), + [anon_sym_DQUOTE] = ACTIONS(2686), + [sym_nil_lit] = ACTIONS(2787), + [aux_sym_sym_lit_token1] = ACTIONS(2688), + [anon_sym_CARET] = ACTIONS(2792), + [anon_sym_POUND_CARET] = ACTIONS(2795), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym_RPAREN] = ACTIONS(2801), + [anon_sym_POUND0A] = ACTIONS(2701), + [anon_sym_POUND0a] = ACTIONS(2701), + [anon_sym_POUND_QMARK] = ACTIONS(2703), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2705), + [anon_sym_POUND_SQUOTE] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2709), + [anon_sym_BQUOTE] = ACTIONS(2711), + [anon_sym_COMMA_AT] = ACTIONS(2713), + [anon_sym_COMMA] = ACTIONS(2715), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3381), - [anon_sym_cl] = ACTIONS(3397), - [aux_sym_accumulation_verb_token1] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3400), - [anon_sym_and] = ACTIONS(3400), - [anon_sym_as] = ACTIONS(3400), - [anon_sym_with] = ACTIONS(3400), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_while] = ACTIONS(3400), - [anon_sym_until] = ACTIONS(3400), - [anon_sym_repeat] = ACTIONS(3400), - [anon_sym_when] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_unless] = ACTIONS(3400), - [anon_sym_always] = ACTIONS(3400), - [anon_sym_thereis] = ACTIONS(3400), - [anon_sym_never] = ACTIONS(3400), - [anon_sym_else] = ACTIONS(3400), - [anon_sym_finally] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3400), - [anon_sym_initially] = ACTIONS(3400), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3402), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2787), + [anon_sym_cl] = ACTIONS(2803), + [aux_sym_accumulation_verb_token1] = ACTIONS(2806), + [anon_sym_for] = ACTIONS(2806), + [anon_sym_and] = ACTIONS(2806), + [anon_sym_as] = ACTIONS(2806), + [anon_sym_with] = ACTIONS(2806), + [anon_sym_do] = ACTIONS(2806), + [anon_sym_while] = ACTIONS(2806), + [anon_sym_until] = ACTIONS(2806), + [anon_sym_repeat] = ACTIONS(2806), + [anon_sym_when] = ACTIONS(2806), + [anon_sym_if] = ACTIONS(2806), + [anon_sym_unless] = ACTIONS(2806), + [anon_sym_always] = ACTIONS(2806), + [anon_sym_thereis] = ACTIONS(2806), + [anon_sym_never] = ACTIONS(2806), + [anon_sym_else] = ACTIONS(2806), + [anon_sym_finally] = ACTIONS(2806), + [anon_sym_return] = ACTIONS(2806), + [anon_sym_initially] = ACTIONS(2806), + [anon_sym_POUNDP] = ACTIONS(2722), + [anon_sym_POUNDp] = ACTIONS(2722), + [sym_self_referential_reader_macro] = ACTIONS(2808), + [anon_sym_POUND_PLUS] = ACTIONS(2726), + [anon_sym_POUND_DASH] = ACTIONS(2726), + [anon_sym_POUNDC] = ACTIONS(2728), + [anon_sym_POUNDc] = ACTIONS(2728), }, - [192] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2157), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2157), - [sym_set_lit] = STATE(2157), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3404), - [sym_comment] = ACTIONS(3404), - [anon_sym_POUND_] = ACTIONS(3378), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3407), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3407), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_POUND_CARET] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3392), - [anon_sym_RPAREN] = ACTIONS(3395), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [145] = { + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2810), + [sym_comment] = ACTIONS(2810), + [anon_sym_POUND_] = ACTIONS(2813), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2816), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2818), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2816), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2821), + [anon_sym_POUND_CARET] = ACTIONS(2824), + [anon_sym_LPAREN] = ACTIONS(2827), + [anon_sym_RPAREN] = ACTIONS(2830), + [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(3407), - [anon_sym_cl] = ACTIONS(3397), - [aux_sym_accumulation_verb_token1] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3400), - [anon_sym_and] = ACTIONS(3400), - [anon_sym_as] = ACTIONS(3400), - [anon_sym_with] = ACTIONS(3400), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_while] = ACTIONS(3400), - [anon_sym_until] = ACTIONS(3400), - [anon_sym_repeat] = ACTIONS(3400), - [anon_sym_when] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_unless] = ACTIONS(3400), - [anon_sym_always] = ACTIONS(3400), - [anon_sym_thereis] = ACTIONS(3400), - [anon_sym_never] = ACTIONS(3400), - [anon_sym_else] = ACTIONS(3400), - [anon_sym_finally] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3400), - [anon_sym_initially] = ACTIONS(3400), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3409), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2816), + [anon_sym_cl] = ACTIONS(2832), + [aux_sym_accumulation_verb_token1] = ACTIONS(2835), + [anon_sym_for] = ACTIONS(2835), + [anon_sym_and] = ACTIONS(2835), + [anon_sym_as] = ACTIONS(2835), + [anon_sym_with] = ACTIONS(2835), + [anon_sym_do] = ACTIONS(2835), + [anon_sym_while] = ACTIONS(2835), + [anon_sym_until] = ACTIONS(2835), + [anon_sym_repeat] = ACTIONS(2835), + [anon_sym_when] = ACTIONS(2835), + [anon_sym_if] = ACTIONS(2835), + [anon_sym_unless] = ACTIONS(2835), + [anon_sym_always] = ACTIONS(2835), + [anon_sym_thereis] = ACTIONS(2835), + [anon_sym_never] = ACTIONS(2835), + [anon_sym_else] = ACTIONS(2835), + [anon_sym_finally] = ACTIONS(2835), + [anon_sym_return] = ACTIONS(2835), + [anon_sym_initially] = ACTIONS(2835), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2837), + [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(132), - [sym_dis_expr] = STATE(132), - [sym__form] = STATE(2154), - [sym_num_lit] = STATE(2154), - [sym_kwd_lit] = STATE(2154), - [sym_str_lit] = STATE(2154), - [sym_char_lit] = STATE(2154), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2154), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2154), - [sym_set_lit] = STATE(2154), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2154), - [sym_splicing_read_cond_lit] = STATE(2154), - [sym_var_quoting_lit] = STATE(2154), - [sym_quoting_lit] = STATE(2154), - [sym_syn_quoting_lit] = STATE(2154), - [sym_unquote_splicing_lit] = STATE(2154), - [sym_unquoting_lit] = STATE(2154), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2154), - [sym_package_lit] = STATE(2154), - [sym_include_reader_macro] = STATE(2154), - [sym_complex_num_lit] = STATE(2154), - [aux_sym_dis_expr_repeat1] = STATE(132), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3411), - [sym_comment] = ACTIONS(3411), - [anon_sym_POUND_] = ACTIONS(3378), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3414), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3414), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_POUND_CARET] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3392), - [anon_sym_RPAREN] = ACTIONS(3395), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [146] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2098), + [sym_num_lit] = STATE(2098), + [sym_kwd_lit] = STATE(2098), + [sym_str_lit] = STATE(2098), + [sym_char_lit] = STATE(2098), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2098), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2098), + [sym_set_lit] = STATE(2098), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2098), + [sym_splicing_read_cond_lit] = STATE(2098), + [sym_var_quoting_lit] = STATE(2098), + [sym_quoting_lit] = STATE(2098), + [sym_syn_quoting_lit] = STATE(2098), + [sym_unquote_splicing_lit] = STATE(2098), + [sym_unquoting_lit] = STATE(2098), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2098), + [sym_package_lit] = STATE(2098), + [sym_include_reader_macro] = STATE(2098), + [sym_complex_num_lit] = STATE(2098), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2509), + [sym_comment] = ACTIONS(2509), + [anon_sym_POUND_] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2839), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2094), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2839), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2097), + [anon_sym_POUND_CARET] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_RPAREN] = ACTIONS(2106), + [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(3414), - [anon_sym_cl] = ACTIONS(3397), - [aux_sym_accumulation_verb_token1] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3400), - [anon_sym_and] = ACTIONS(3400), - [anon_sym_as] = ACTIONS(3400), - [anon_sym_with] = ACTIONS(3400), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_while] = ACTIONS(3400), - [anon_sym_until] = ACTIONS(3400), - [anon_sym_repeat] = ACTIONS(3400), - [anon_sym_when] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_unless] = ACTIONS(3400), - [anon_sym_always] = ACTIONS(3400), - [anon_sym_thereis] = ACTIONS(3400), - [anon_sym_never] = ACTIONS(3400), - [anon_sym_else] = ACTIONS(3400), - [anon_sym_finally] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3400), - [anon_sym_initially] = ACTIONS(3400), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3416), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2839), + [anon_sym_cl] = ACTIONS(2108), + [aux_sym_accumulation_verb_token1] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_and] = ACTIONS(2111), + [anon_sym_as] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_until] = ACTIONS(2111), + [anon_sym_repeat] = ACTIONS(2111), + [anon_sym_when] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_unless] = ACTIONS(2111), + [anon_sym_always] = ACTIONS(2111), + [anon_sym_thereis] = ACTIONS(2111), + [anon_sym_never] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_initially] = ACTIONS(2111), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2841), + [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(133), - [sym_dis_expr] = STATE(133), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2151), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2151), - [sym_set_lit] = STATE(2151), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(133), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3418), - [sym_comment] = ACTIONS(3418), - [anon_sym_POUND_] = ACTIONS(3335), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3421), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3421), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_POUND_CARET] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_RPAREN] = ACTIONS(3352), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [147] = { + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2843), + [sym_comment] = ACTIONS(2843), + [anon_sym_POUND_] = ACTIONS(2846), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2849), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2851), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2849), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_POUND_CARET] = ACTIONS(2857), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_RPAREN] = ACTIONS(2863), + [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(3421), - [anon_sym_cl] = ACTIONS(3354), - [aux_sym_accumulation_verb_token1] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_and] = ACTIONS(3357), - [anon_sym_as] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_until] = ACTIONS(3357), - [anon_sym_repeat] = ACTIONS(3357), - [anon_sym_when] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_unless] = ACTIONS(3357), - [anon_sym_always] = ACTIONS(3357), - [anon_sym_thereis] = ACTIONS(3357), - [anon_sym_never] = ACTIONS(3357), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_finally] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_initially] = ACTIONS(3357), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3423), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2849), + [anon_sym_cl] = ACTIONS(2865), + [aux_sym_accumulation_verb_token1] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_and] = ACTIONS(2868), + [anon_sym_as] = ACTIONS(2868), + [anon_sym_with] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_until] = ACTIONS(2868), + [anon_sym_repeat] = ACTIONS(2868), + [anon_sym_when] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_unless] = ACTIONS(2868), + [anon_sym_always] = ACTIONS(2868), + [anon_sym_thereis] = ACTIONS(2868), + [anon_sym_never] = ACTIONS(2868), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_finally] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_initially] = ACTIONS(2868), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2870), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2150), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2150), - [sym_set_lit] = STATE(2150), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3332), - [sym_comment] = ACTIONS(3332), - [anon_sym_POUND_] = ACTIONS(3335), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3425), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3425), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_POUND_CARET] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_RPAREN] = ACTIONS(3352), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [148] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2485), + [sym_num_lit] = STATE(2485), + [sym_kwd_lit] = STATE(2485), + [sym_str_lit] = STATE(2485), + [sym_char_lit] = STATE(2485), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2485), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2485), + [sym_set_lit] = STATE(2485), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2485), + [sym_splicing_read_cond_lit] = STATE(2485), + [sym_var_quoting_lit] = STATE(2485), + [sym_quoting_lit] = STATE(2485), + [sym_syn_quoting_lit] = STATE(2485), + [sym_unquote_splicing_lit] = STATE(2485), + [sym_unquoting_lit] = STATE(2485), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2485), + [sym_package_lit] = STATE(2485), + [sym_include_reader_macro] = STATE(2485), + [sym_complex_num_lit] = STATE(2485), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2198), + [sym_comment] = ACTIONS(2198), + [anon_sym_POUND_] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2872), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2206), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2872), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2209), + [anon_sym_POUND_CARET] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_RPAREN] = ACTIONS(2218), + [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(3425), - [anon_sym_cl] = ACTIONS(3354), - [aux_sym_accumulation_verb_token1] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_and] = ACTIONS(3357), - [anon_sym_as] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_until] = ACTIONS(3357), - [anon_sym_repeat] = ACTIONS(3357), - [anon_sym_when] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_unless] = ACTIONS(3357), - [anon_sym_always] = ACTIONS(3357), - [anon_sym_thereis] = ACTIONS(3357), - [anon_sym_never] = ACTIONS(3357), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_finally] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_initially] = ACTIONS(3357), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3427), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2872), + [anon_sym_cl] = ACTIONS(2220), + [aux_sym_accumulation_verb_token1] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_and] = ACTIONS(2223), + [anon_sym_as] = ACTIONS(2223), + [anon_sym_with] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [anon_sym_until] = ACTIONS(2223), + [anon_sym_repeat] = ACTIONS(2223), + [anon_sym_when] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_unless] = ACTIONS(2223), + [anon_sym_always] = ACTIONS(2223), + [anon_sym_thereis] = ACTIONS(2223), + [anon_sym_never] = ACTIONS(2223), + [anon_sym_else] = ACTIONS(2223), + [anon_sym_finally] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_initially] = ACTIONS(2223), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2874), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2347), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2347), - [sym_set_lit] = STATE(2347), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1443), - [sym_comment] = ACTIONS(1443), + [149] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2428), + [sym_num_lit] = STATE(2428), + [sym_kwd_lit] = STATE(2428), + [sym_str_lit] = STATE(2428), + [sym_char_lit] = STATE(2428), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2428), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2428), + [sym_set_lit] = STATE(2428), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2428), + [sym_splicing_read_cond_lit] = STATE(2428), + [sym_var_quoting_lit] = STATE(2428), + [sym_quoting_lit] = STATE(2428), + [sym_syn_quoting_lit] = STATE(2428), + [sym_unquote_splicing_lit] = STATE(2428), + [sym_unquoting_lit] = STATE(2428), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2428), + [sym_package_lit] = STATE(2428), + [sym_include_reader_macro] = STATE(2428), + [sym_complex_num_lit] = STATE(2428), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1407), + [sym_comment] = ACTIONS(1407), [anon_sym_POUND_] = ACTIONS(1381), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3429), - [aux_sym_num_lit_token1] = ACTIONS(227), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2876), + [aux_sym_num_lit_token1] = ACTIONS(71), [anon_sym_COLON] = ACTIONS(1386), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3429), - [aux_sym_sym_lit_token1] = ACTIONS(237), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2876), + [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(3429), + [sym_fancy_literal] = ACTIONS(2876), [anon_sym_cl] = ACTIONS(1400), [aux_sym_accumulation_verb_token1] = ACTIONS(1403), [anon_sym_for] = ACTIONS(1403), @@ -27374,72 +23352,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(1403), [anon_sym_return] = ACTIONS(1403), [anon_sym_initially] = ACTIONS(1403), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3431), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2878), + [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(134), - [sym_dis_expr] = STATE(134), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2146), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2146), - [sym_set_lit] = STATE(2146), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(134), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3433), - [sym_comment] = ACTIONS(3433), + [150] = { + [sym__gap] = STATE(80), + [sym_dis_expr] = STATE(80), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(80), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2880), + [sym_comment] = ACTIONS(2880), [anon_sym_POUND_] = ACTIONS(1323), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3436), - [aux_sym_num_lit_token1] = ACTIONS(227), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2883), + [aux_sym_num_lit_token1] = ACTIONS(71), [anon_sym_COLON] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3436), - [aux_sym_sym_lit_token1] = ACTIONS(237), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2883), + [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(3436), + [sym_fancy_literal] = ACTIONS(2883), [anon_sym_cl] = ACTIONS(1342), [aux_sym_accumulation_verb_token1] = ACTIONS(1345), [anon_sym_for] = ACTIONS(1345), @@ -27460,158 +23438,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(1345), [anon_sym_return] = ACTIONS(1345), [anon_sym_initially] = ACTIONS(1345), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3438), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2885), + [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(47), - [sym_dis_expr] = STATE(47), - [sym__form] = STATE(2407), - [sym_num_lit] = STATE(2407), - [sym_kwd_lit] = STATE(2407), - [sym_str_lit] = STATE(2407), - [sym_char_lit] = STATE(2407), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2407), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2407), - [sym_set_lit] = STATE(2407), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2407), - [sym_splicing_read_cond_lit] = STATE(2407), - [sym_var_quoting_lit] = STATE(2407), - [sym_quoting_lit] = STATE(2407), - [sym_syn_quoting_lit] = STATE(2407), - [sym_unquote_splicing_lit] = STATE(2407), - [sym_unquoting_lit] = STATE(2407), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2407), - [sym_package_lit] = STATE(2407), - [sym_include_reader_macro] = STATE(2407), - [sym_complex_num_lit] = STATE(2407), - [aux_sym_dis_expr_repeat1] = STATE(47), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3440), - [sym_comment] = ACTIONS(3440), - [anon_sym_POUND_] = ACTIONS(3443), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3446), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3448), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3446), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3451), - [anon_sym_POUND_CARET] = ACTIONS(3454), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_RPAREN] = ACTIONS(3460), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [151] = { + [sym__gap] = STATE(258), + [sym_dis_expr] = STATE(258), + [sym__form] = STATE(2306), + [sym_num_lit] = STATE(2306), + [sym_kwd_lit] = STATE(2306), + [sym_str_lit] = STATE(2306), + [sym_char_lit] = STATE(2306), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2306), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2306), + [sym_set_lit] = STATE(2306), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2306), + [sym_splicing_read_cond_lit] = STATE(2306), + [sym_var_quoting_lit] = STATE(2306), + [sym_quoting_lit] = STATE(2306), + [sym_syn_quoting_lit] = STATE(2306), + [sym_unquote_splicing_lit] = STATE(2306), + [sym_unquoting_lit] = STATE(2306), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2306), + [sym_package_lit] = STATE(2306), + [sym_include_reader_macro] = STATE(2306), + [sym_complex_num_lit] = STATE(2306), + [aux_sym_dis_expr_repeat1] = STATE(258), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2887), + [sym_comment] = ACTIONS(2887), + [anon_sym_POUND_] = ACTIONS(2846), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2890), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2851), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2890), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_POUND_CARET] = ACTIONS(2857), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_RPAREN] = ACTIONS(2863), + [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(3446), - [anon_sym_cl] = ACTIONS(3462), - [aux_sym_accumulation_verb_token1] = ACTIONS(3465), - [anon_sym_for] = ACTIONS(3465), - [anon_sym_and] = ACTIONS(3465), - [anon_sym_as] = ACTIONS(3465), - [anon_sym_with] = ACTIONS(3465), - [anon_sym_do] = ACTIONS(3465), - [anon_sym_while] = ACTIONS(3465), - [anon_sym_until] = ACTIONS(3465), - [anon_sym_repeat] = ACTIONS(3465), - [anon_sym_when] = ACTIONS(3465), - [anon_sym_if] = ACTIONS(3465), - [anon_sym_unless] = ACTIONS(3465), - [anon_sym_always] = ACTIONS(3465), - [anon_sym_thereis] = ACTIONS(3465), - [anon_sym_never] = ACTIONS(3465), - [anon_sym_else] = ACTIONS(3465), - [anon_sym_finally] = ACTIONS(3465), - [anon_sym_return] = ACTIONS(3465), - [anon_sym_initially] = ACTIONS(3465), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3467), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2890), + [anon_sym_cl] = ACTIONS(2865), + [aux_sym_accumulation_verb_token1] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_and] = ACTIONS(2868), + [anon_sym_as] = ACTIONS(2868), + [anon_sym_with] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_until] = ACTIONS(2868), + [anon_sym_repeat] = ACTIONS(2868), + [anon_sym_when] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_unless] = ACTIONS(2868), + [anon_sym_always] = ACTIONS(2868), + [anon_sym_thereis] = ACTIONS(2868), + [anon_sym_never] = ACTIONS(2868), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_finally] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_initially] = ACTIONS(2868), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2892), + [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(137), - [sym_dis_expr] = STATE(137), - [sym__form] = STATE(2143), - [sym_num_lit] = STATE(2143), - [sym_kwd_lit] = STATE(2143), - [sym_str_lit] = STATE(2143), - [sym_char_lit] = STATE(2143), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2143), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2143), - [sym_set_lit] = STATE(2143), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2143), - [sym_splicing_read_cond_lit] = STATE(2143), - [sym_var_quoting_lit] = STATE(2143), - [sym_quoting_lit] = STATE(2143), - [sym_syn_quoting_lit] = STATE(2143), - [sym_unquote_splicing_lit] = STATE(2143), - [sym_unquoting_lit] = STATE(2143), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2143), - [sym_package_lit] = STATE(2143), - [sym_include_reader_macro] = STATE(2143), - [sym_complex_num_lit] = STATE(2143), - [aux_sym_dis_expr_repeat1] = STATE(137), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3469), - [sym_comment] = ACTIONS(3469), + [152] = { + [sym__gap] = STATE(159), + [sym_dis_expr] = STATE(159), + [sym__form] = STATE(2420), + [sym_num_lit] = STATE(2420), + [sym_kwd_lit] = STATE(2420), + [sym_str_lit] = STATE(2420), + [sym_char_lit] = STATE(2420), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2420), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2420), + [sym_set_lit] = STATE(2420), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2420), + [sym_splicing_read_cond_lit] = STATE(2420), + [sym_var_quoting_lit] = STATE(2420), + [sym_quoting_lit] = STATE(2420), + [sym_syn_quoting_lit] = STATE(2420), + [sym_unquote_splicing_lit] = STATE(2420), + [sym_unquoting_lit] = STATE(2420), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2420), + [sym_package_lit] = STATE(2420), + [sym_include_reader_macro] = STATE(2420), + [sym_complex_num_lit] = STATE(2420), + [aux_sym_dis_expr_repeat1] = STATE(159), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2894), + [sym_comment] = ACTIONS(2894), + [anon_sym_POUND_] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2897), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1523), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2897), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1526), + [anon_sym_POUND_CARET] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1535), + [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(2897), + [anon_sym_cl] = ACTIONS(1537), + [aux_sym_accumulation_verb_token1] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_as] = ACTIONS(1540), + [anon_sym_with] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_until] = ACTIONS(1540), + [anon_sym_repeat] = ACTIONS(1540), + [anon_sym_when] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_unless] = ACTIONS(1540), + [anon_sym_always] = ACTIONS(1540), + [anon_sym_thereis] = ACTIONS(1540), + [anon_sym_never] = ACTIONS(1540), + [anon_sym_else] = ACTIONS(1540), + [anon_sym_finally] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_initially] = ACTIONS(1540), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2899), + [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(83), + [sym_dis_expr] = STATE(83), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(83), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2901), + [sym_comment] = ACTIONS(2901), + [anon_sym_POUND_] = ACTIONS(2741), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2904), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2746), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2904), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2749), + [anon_sym_POUND_CARET] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2755), + [anon_sym_RPAREN] = ACTIONS(2758), + [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(2904), + [anon_sym_cl] = ACTIONS(2760), + [aux_sym_accumulation_verb_token1] = ACTIONS(2763), + [anon_sym_for] = ACTIONS(2763), + [anon_sym_and] = ACTIONS(2763), + [anon_sym_as] = ACTIONS(2763), + [anon_sym_with] = ACTIONS(2763), + [anon_sym_do] = ACTIONS(2763), + [anon_sym_while] = ACTIONS(2763), + [anon_sym_until] = ACTIONS(2763), + [anon_sym_repeat] = ACTIONS(2763), + [anon_sym_when] = ACTIONS(2763), + [anon_sym_if] = ACTIONS(2763), + [anon_sym_unless] = ACTIONS(2763), + [anon_sym_always] = ACTIONS(2763), + [anon_sym_thereis] = ACTIONS(2763), + [anon_sym_never] = ACTIONS(2763), + [anon_sym_else] = ACTIONS(2763), + [anon_sym_finally] = ACTIONS(2763), + [anon_sym_return] = ACTIONS(2763), + [anon_sym_initially] = ACTIONS(2763), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2906), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2774), + [sym_comment] = ACTIONS(2774), [anon_sym_POUND_] = ACTIONS(1323), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3472), - [aux_sym_num_lit_token1] = ACTIONS(227), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2908), + [aux_sym_num_lit_token1] = ACTIONS(71), [anon_sym_COLON] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3472), - [aux_sym_sym_lit_token1] = ACTIONS(237), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2908), + [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [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(3472), + [sym_fancy_literal] = ACTIONS(2908), [anon_sym_cl] = ACTIONS(1342), [aux_sym_accumulation_verb_token1] = ACTIONS(1345), [anon_sym_for] = ACTIONS(1345), @@ -27632,633 +23782,977 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_finally] = ACTIONS(1345), [anon_sym_return] = ACTIONS(1345), [anon_sym_initially] = ACTIONS(1345), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3474), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2910), + [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(192), - [sym_dis_expr] = STATE(192), - [sym__form] = STATE(2078), - [sym_num_lit] = STATE(2078), - [sym_kwd_lit] = STATE(2078), - [sym_str_lit] = STATE(2078), - [sym_char_lit] = STATE(2078), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2078), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2078), - [sym_set_lit] = STATE(2078), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2078), - [sym_splicing_read_cond_lit] = STATE(2078), - [sym_var_quoting_lit] = STATE(2078), - [sym_quoting_lit] = STATE(2078), - [sym_syn_quoting_lit] = STATE(2078), - [sym_unquote_splicing_lit] = STATE(2078), - [sym_unquoting_lit] = STATE(2078), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2078), - [sym_package_lit] = STATE(2078), - [sym_include_reader_macro] = STATE(2078), - [sym_complex_num_lit] = STATE(2078), - [aux_sym_dis_expr_repeat1] = STATE(192), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3476), - [sym_comment] = ACTIONS(3476), - [anon_sym_POUND_] = ACTIONS(3479), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3482), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3484), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3482), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3487), - [anon_sym_POUND_CARET] = ACTIONS(3490), - [anon_sym_LPAREN] = ACTIONS(3493), - [anon_sym_RPAREN] = ACTIONS(3496), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [155] = { + [sym__gap] = STATE(257), + [sym_dis_expr] = STATE(257), + [sym__form] = STATE(2325), + [sym_num_lit] = STATE(2325), + [sym_kwd_lit] = STATE(2325), + [sym_str_lit] = STATE(2325), + [sym_char_lit] = STATE(2325), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2325), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2325), + [sym_set_lit] = STATE(2325), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2325), + [sym_splicing_read_cond_lit] = STATE(2325), + [sym_var_quoting_lit] = STATE(2325), + [sym_quoting_lit] = STATE(2325), + [sym_syn_quoting_lit] = STATE(2325), + [sym_unquote_splicing_lit] = STATE(2325), + [sym_unquoting_lit] = STATE(2325), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2325), + [sym_package_lit] = STATE(2325), + [sym_include_reader_macro] = STATE(2325), + [sym_complex_num_lit] = STATE(2325), + [aux_sym_dis_expr_repeat1] = STATE(257), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2912), + [sym_comment] = ACTIONS(2912), + [anon_sym_POUND_] = ACTIONS(2846), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2915), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2851), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2915), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_POUND_CARET] = ACTIONS(2857), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_RPAREN] = ACTIONS(2863), + [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(3482), - [anon_sym_cl] = ACTIONS(3498), - [aux_sym_accumulation_verb_token1] = ACTIONS(3501), - [anon_sym_for] = ACTIONS(3501), - [anon_sym_and] = ACTIONS(3501), - [anon_sym_as] = ACTIONS(3501), - [anon_sym_with] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_while] = ACTIONS(3501), - [anon_sym_until] = ACTIONS(3501), - [anon_sym_repeat] = ACTIONS(3501), - [anon_sym_when] = ACTIONS(3501), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_unless] = ACTIONS(3501), - [anon_sym_always] = ACTIONS(3501), - [anon_sym_thereis] = ACTIONS(3501), - [anon_sym_never] = ACTIONS(3501), - [anon_sym_else] = ACTIONS(3501), - [anon_sym_finally] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3501), - [anon_sym_initially] = ACTIONS(3501), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3503), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2915), + [anon_sym_cl] = ACTIONS(2865), + [aux_sym_accumulation_verb_token1] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_and] = ACTIONS(2868), + [anon_sym_as] = ACTIONS(2868), + [anon_sym_with] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_until] = ACTIONS(2868), + [anon_sym_repeat] = ACTIONS(2868), + [anon_sym_when] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_unless] = ACTIONS(2868), + [anon_sym_always] = ACTIONS(2868), + [anon_sym_thereis] = ACTIONS(2868), + [anon_sym_never] = ACTIONS(2868), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_finally] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_initially] = ACTIONS(2868), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2917), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2427), - [sym_num_lit] = STATE(2427), - [sym_kwd_lit] = STATE(2427), - [sym_str_lit] = STATE(2427), - [sym_char_lit] = STATE(2427), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2427), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2427), - [sym_set_lit] = STATE(2427), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2427), - [sym_splicing_read_cond_lit] = STATE(2427), - [sym_var_quoting_lit] = STATE(2427), - [sym_quoting_lit] = STATE(2427), - [sym_syn_quoting_lit] = STATE(2427), - [sym_unquote_splicing_lit] = STATE(2427), - [sym_unquoting_lit] = STATE(2427), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2427), - [sym_package_lit] = STATE(2427), - [sym_include_reader_macro] = STATE(2427), - [sym_complex_num_lit] = STATE(2427), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3505), - [sym_comment] = ACTIONS(3505), - [anon_sym_POUND_] = ACTIONS(3508), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3511), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3513), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3511), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [156] = { + [sym__gap] = STATE(87), + [sym_dis_expr] = STATE(87), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(87), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2919), + [sym_comment] = ACTIONS(2919), + [anon_sym_POUND_] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2922), + [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(2922), + [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(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(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3532), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2922), + [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(2924), + [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(139), - [sym_dis_expr] = STATE(139), - [sym__form] = STATE(2141), - [sym_num_lit] = STATE(2141), - [sym_kwd_lit] = STATE(2141), - [sym_str_lit] = STATE(2141), - [sym_char_lit] = STATE(2141), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2141), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2141), - [sym_set_lit] = STATE(2141), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2141), - [sym_splicing_read_cond_lit] = STATE(2141), - [sym_var_quoting_lit] = STATE(2141), - [sym_quoting_lit] = STATE(2141), - [sym_syn_quoting_lit] = STATE(2141), - [sym_unquote_splicing_lit] = STATE(2141), - [sym_unquoting_lit] = STATE(2141), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2141), - [sym_package_lit] = STATE(2141), - [sym_include_reader_macro] = STATE(2141), - [sym_complex_num_lit] = STATE(2141), - [aux_sym_dis_expr_repeat1] = STATE(139), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3534), - [sym_comment] = ACTIONS(3534), - [anon_sym_POUND_] = ACTIONS(3537), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3540), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3542), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3540), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [157] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2454), + [sym_num_lit] = STATE(2454), + [sym_kwd_lit] = STATE(2454), + [sym_str_lit] = STATE(2454), + [sym_char_lit] = STATE(2454), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2454), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2454), + [sym_set_lit] = STATE(2454), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2454), + [sym_splicing_read_cond_lit] = STATE(2454), + [sym_var_quoting_lit] = STATE(2454), + [sym_quoting_lit] = STATE(2454), + [sym_syn_quoting_lit] = STATE(2454), + [sym_unquote_splicing_lit] = STATE(2454), + [sym_unquoting_lit] = STATE(2454), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2454), + [sym_package_lit] = STATE(2454), + [sym_include_reader_macro] = STATE(2454), + [sym_complex_num_lit] = STATE(2454), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1580), + [sym_comment] = ACTIONS(1580), + [anon_sym_POUND_] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2926), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1523), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2926), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1526), + [anon_sym_POUND_CARET] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1535), + [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(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3561), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2926), + [anon_sym_cl] = ACTIONS(1537), + [aux_sym_accumulation_verb_token1] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_and] = ACTIONS(1540), + [anon_sym_as] = ACTIONS(1540), + [anon_sym_with] = ACTIONS(1540), + [anon_sym_do] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_until] = ACTIONS(1540), + [anon_sym_repeat] = ACTIONS(1540), + [anon_sym_when] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_unless] = ACTIONS(1540), + [anon_sym_always] = ACTIONS(1540), + [anon_sym_thereis] = ACTIONS(1540), + [anon_sym_never] = ACTIONS(1540), + [anon_sym_else] = ACTIONS(1540), + [anon_sym_finally] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_initially] = ACTIONS(1540), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2928), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2356), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2356), - [sym_set_lit] = STATE(2356), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2793), - [sym_comment] = ACTIONS(2793), - [anon_sym_POUND_] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3563), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3563), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2804), - [anon_sym_POUND_CARET] = ACTIONS(2807), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_RPAREN] = ACTIONS(2813), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [158] = { + [sym__gap] = STATE(91), + [sym_dis_expr] = STATE(91), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(91), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2930), + [sym_comment] = ACTIONS(2930), + [anon_sym_POUND_] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2933), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2326), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2933), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2329), + [anon_sym_POUND_CARET] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_RPAREN] = ACTIONS(2338), + [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(2815), - [aux_sym_accumulation_verb_token1] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_and] = ACTIONS(2818), - [anon_sym_as] = ACTIONS(2818), - [anon_sym_with] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_until] = ACTIONS(2818), - [anon_sym_repeat] = ACTIONS(2818), - [anon_sym_when] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_unless] = ACTIONS(2818), - [anon_sym_always] = ACTIONS(2818), - [anon_sym_thereis] = ACTIONS(2818), - [anon_sym_never] = ACTIONS(2818), - [anon_sym_else] = ACTIONS(2818), - [anon_sym_finally] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_initially] = ACTIONS(2818), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3565), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2933), + [anon_sym_cl] = ACTIONS(2340), + [aux_sym_accumulation_verb_token1] = ACTIONS(2343), + [anon_sym_for] = ACTIONS(2343), + [anon_sym_and] = ACTIONS(2343), + [anon_sym_as] = ACTIONS(2343), + [anon_sym_with] = ACTIONS(2343), + [anon_sym_do] = ACTIONS(2343), + [anon_sym_while] = ACTIONS(2343), + [anon_sym_until] = ACTIONS(2343), + [anon_sym_repeat] = ACTIONS(2343), + [anon_sym_when] = ACTIONS(2343), + [anon_sym_if] = ACTIONS(2343), + [anon_sym_unless] = ACTIONS(2343), + [anon_sym_always] = ACTIONS(2343), + [anon_sym_thereis] = ACTIONS(2343), + [anon_sym_never] = ACTIONS(2343), + [anon_sym_else] = ACTIONS(2343), + [anon_sym_finally] = ACTIONS(2343), + [anon_sym_return] = ACTIONS(2343), + [anon_sym_initially] = ACTIONS(2343), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2935), + [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(255), - [sym_dis_expr] = STATE(255), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2048), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2048), - [sym_set_lit] = STATE(2048), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(255), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3567), - [sym_comment] = ACTIONS(3567), - [anon_sym_POUND_] = ACTIONS(3100), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3570), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3570), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3108), - [anon_sym_POUND_CARET] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_RPAREN] = ACTIONS(3117), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [159] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2371), + [sym_num_lit] = STATE(2371), + [sym_kwd_lit] = STATE(2371), + [sym_str_lit] = STATE(2371), + [sym_char_lit] = STATE(2371), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2371), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2371), + [sym_set_lit] = STATE(2371), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2371), + [sym_splicing_read_cond_lit] = STATE(2371), + [sym_var_quoting_lit] = STATE(2371), + [sym_quoting_lit] = STATE(2371), + [sym_syn_quoting_lit] = STATE(2371), + [sym_unquote_splicing_lit] = STATE(2371), + [sym_unquoting_lit] = STATE(2371), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2371), + [sym_package_lit] = STATE(2371), + [sym_include_reader_macro] = STATE(2371), + [sym_complex_num_lit] = STATE(2371), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2843), + [sym_comment] = ACTIONS(2843), + [anon_sym_POUND_] = ACTIONS(2846), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2937), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2851), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2937), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_POUND_CARET] = ACTIONS(2857), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_RPAREN] = ACTIONS(2863), + [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(3570), - [anon_sym_cl] = ACTIONS(3119), - [aux_sym_accumulation_verb_token1] = ACTIONS(3122), - [anon_sym_for] = ACTIONS(3122), - [anon_sym_and] = ACTIONS(3122), - [anon_sym_as] = ACTIONS(3122), - [anon_sym_with] = ACTIONS(3122), - [anon_sym_do] = ACTIONS(3122), - [anon_sym_while] = ACTIONS(3122), - [anon_sym_until] = ACTIONS(3122), - [anon_sym_repeat] = ACTIONS(3122), - [anon_sym_when] = ACTIONS(3122), - [anon_sym_if] = ACTIONS(3122), - [anon_sym_unless] = ACTIONS(3122), - [anon_sym_always] = ACTIONS(3122), - [anon_sym_thereis] = ACTIONS(3122), - [anon_sym_never] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3122), - [anon_sym_finally] = ACTIONS(3122), - [anon_sym_return] = ACTIONS(3122), - [anon_sym_initially] = ACTIONS(3122), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3572), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2937), + [anon_sym_cl] = ACTIONS(2865), + [aux_sym_accumulation_verb_token1] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_and] = ACTIONS(2868), + [anon_sym_as] = ACTIONS(2868), + [anon_sym_with] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_until] = ACTIONS(2868), + [anon_sym_repeat] = ACTIONS(2868), + [anon_sym_when] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_unless] = ACTIONS(2868), + [anon_sym_always] = ACTIONS(2868), + [anon_sym_thereis] = ACTIONS(2868), + [anon_sym_never] = ACTIONS(2868), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_finally] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_initially] = ACTIONS(2868), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2939), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2049), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2049), - [sym_set_lit] = STATE(2049), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3368), - [sym_comment] = ACTIONS(3368), - [anon_sym_POUND_] = ACTIONS(3100), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3574), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3574), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3108), - [anon_sym_POUND_CARET] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_RPAREN] = ACTIONS(3117), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [160] = { + [sym__gap] = STATE(272), + [sym_dis_expr] = STATE(272), + [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(2766), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2680), + [sym__bare_list_lit] = STATE(1967), + [sym_vec_lit] = STATE(2680), + [sym_set_lit] = STATE(2680), + [sym__bare_set_lit] = STATE(1966), + [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(1967), + [sym_for_clause_word] = STATE(690), + [sym__for_part] = STATE(1553), + [sym_loop_macro] = STATE(1967), + [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(272), + [aux_sym_list_lit_repeat1] = STATE(2803), + [aux_sym_for_clause_repeat1] = STATE(1276), + [sym__ws] = ACTIONS(2941), + [sym_comment] = ACTIONS(2941), + [anon_sym_POUND_] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(2947), + [aux_sym_num_lit_token1] = ACTIONS(2949), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_nil_lit] = ACTIONS(2947), + [aux_sym_sym_lit_token1] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_POUND0A] = ACTIONS(2961), + [anon_sym_POUND0a] = ACTIONS(2961), + [anon_sym_POUND_QMARK] = ACTIONS(2963), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2965), + [anon_sym_POUND_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_COMMA_AT] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2975), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3574), - [anon_sym_cl] = ACTIONS(3119), - [aux_sym_accumulation_verb_token1] = ACTIONS(3122), - [anon_sym_for] = ACTIONS(3122), - [anon_sym_and] = ACTIONS(3122), - [anon_sym_as] = ACTIONS(3122), - [anon_sym_with] = ACTIONS(3122), - [anon_sym_do] = ACTIONS(3122), - [anon_sym_while] = ACTIONS(3122), - [anon_sym_until] = ACTIONS(3122), - [anon_sym_repeat] = ACTIONS(3122), - [anon_sym_when] = ACTIONS(3122), - [anon_sym_if] = ACTIONS(3122), - [anon_sym_unless] = ACTIONS(3122), - [anon_sym_always] = ACTIONS(3122), - [anon_sym_thereis] = ACTIONS(3122), - [anon_sym_never] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3122), - [anon_sym_finally] = ACTIONS(3122), - [anon_sym_return] = ACTIONS(3122), - [anon_sym_initially] = ACTIONS(3122), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3576), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2947), + [anon_sym_cl] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_across] = ACTIONS(2979), + [anon_sym_being] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [aux_sym_for_clause_word_token1] = ACTIONS(2981), + [anon_sym_below] = ACTIONS(2979), + [anon_sym_above] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_to] = ACTIONS(2979), + [anon_sym_upto] = ACTIONS(2979), + [anon_sym_upfrom] = ACTIONS(2979), + [anon_sym_downto] = ACTIONS(2979), + [anon_sym_downfrom] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_then] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_POUNDP] = ACTIONS(2983), + [anon_sym_POUNDp] = ACTIONS(2983), + [sym_self_referential_reader_macro] = ACTIONS(2985), + [anon_sym_POUND_PLUS] = ACTIONS(2987), + [anon_sym_POUND_DASH] = ACTIONS(2987), + [anon_sym_POUNDC] = ACTIONS(2989), + [anon_sym_POUNDc] = ACTIONS(2989), }, - [206] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2140), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2140), - [sym_set_lit] = STATE(2140), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3578), - [sym_comment] = ACTIONS(3578), - [anon_sym_POUND_] = ACTIONS(3537), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3581), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3542), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3581), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [161] = { + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2347), + [sym_comment] = ACTIONS(2347), + [anon_sym_POUND_] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2991), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2991), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2358), + [anon_sym_POUND_CARET] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2367), + [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(3581), - [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(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3583), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(2991), + [anon_sym_cl] = ACTIONS(2369), + [aux_sym_accumulation_verb_token1] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_and] = ACTIONS(2372), + [anon_sym_as] = ACTIONS(2372), + [anon_sym_with] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_until] = ACTIONS(2372), + [anon_sym_repeat] = ACTIONS(2372), + [anon_sym_when] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_unless] = ACTIONS(2372), + [anon_sym_always] = ACTIONS(2372), + [anon_sym_thereis] = ACTIONS(2372), + [anon_sym_never] = ACTIONS(2372), + [anon_sym_else] = ACTIONS(2372), + [anon_sym_finally] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_initially] = ACTIONS(2372), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2993), + [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(262), - [sym_dis_expr] = STATE(262), + [162] = { + [sym__gap] = STATE(95), + [sym_dis_expr] = STATE(95), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(95), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2995), + [sym_comment] = ACTIONS(2995), + [anon_sym_POUND_] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2998), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2998), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2358), + [anon_sym_POUND_CARET] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2367), + [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(2998), + [anon_sym_cl] = ACTIONS(2369), + [aux_sym_accumulation_verb_token1] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_and] = ACTIONS(2372), + [anon_sym_as] = ACTIONS(2372), + [anon_sym_with] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_until] = ACTIONS(2372), + [anon_sym_repeat] = ACTIONS(2372), + [anon_sym_when] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_unless] = ACTIONS(2372), + [anon_sym_always] = ACTIONS(2372), + [anon_sym_thereis] = ACTIONS(2372), + [anon_sym_never] = ACTIONS(2372), + [anon_sym_else] = ACTIONS(2372), + [anon_sym_finally] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_initially] = ACTIONS(2372), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3000), + [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(96), + [sym_dis_expr] = STATE(96), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(96), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3002), + [sym_comment] = ACTIONS(3002), + [anon_sym_POUND_] = ACTIONS(2415), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3005), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2420), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3005), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2423), + [anon_sym_POUND_CARET] = ACTIONS(2426), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_RPAREN] = ACTIONS(2432), + [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(3005), + [anon_sym_cl] = ACTIONS(2434), + [aux_sym_accumulation_verb_token1] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_and] = ACTIONS(2437), + [anon_sym_as] = ACTIONS(2437), + [anon_sym_with] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_until] = ACTIONS(2437), + [anon_sym_repeat] = ACTIONS(2437), + [anon_sym_when] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_unless] = ACTIONS(2437), + [anon_sym_always] = ACTIONS(2437), + [anon_sym_thereis] = ACTIONS(2437), + [anon_sym_never] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_finally] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_initially] = ACTIONS(2437), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3007), + [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(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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2441), + [sym_comment] = ACTIONS(2441), + [anon_sym_POUND_] = ACTIONS(2415), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3009), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2420), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3009), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2423), + [anon_sym_POUND_CARET] = ACTIONS(2426), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_RPAREN] = ACTIONS(2432), + [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(3009), + [anon_sym_cl] = ACTIONS(2434), + [aux_sym_accumulation_verb_token1] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_and] = ACTIONS(2437), + [anon_sym_as] = ACTIONS(2437), + [anon_sym_with] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_until] = ACTIONS(2437), + [anon_sym_repeat] = ACTIONS(2437), + [anon_sym_when] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_unless] = ACTIONS(2437), + [anon_sym_always] = ACTIONS(2437), + [anon_sym_thereis] = ACTIONS(2437), + [anon_sym_never] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_finally] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_initially] = ACTIONS(2437), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3011), + [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(43), + [sym_dis_expr] = STATE(43), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(43), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3013), + [sym_comment] = ACTIONS(3013), + [anon_sym_POUND_] = ACTIONS(1417), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3016), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1422), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3016), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym_POUND_CARET] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1434), + [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(3016), + [anon_sym_cl] = ACTIONS(1436), + [aux_sym_accumulation_verb_token1] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_and] = ACTIONS(1439), + [anon_sym_as] = ACTIONS(1439), + [anon_sym_with] = ACTIONS(1439), + [anon_sym_do] = ACTIONS(1439), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_until] = ACTIONS(1439), + [anon_sym_repeat] = ACTIONS(1439), + [anon_sym_when] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_unless] = ACTIONS(1439), + [anon_sym_always] = ACTIONS(1439), + [anon_sym_thereis] = ACTIONS(1439), + [anon_sym_never] = ACTIONS(1439), + [anon_sym_else] = ACTIONS(1439), + [anon_sym_finally] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1439), + [anon_sym_initially] = ACTIONS(1439), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3018), + [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(99), + [sym_dis_expr] = STATE(99), [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), [sym_list_lit] = STATE(2050), - [sym__bare_list_lit] = STATE(2536), + [sym__bare_list_lit] = STATE(2648), [sym_vec_lit] = STATE(2050), [sym_set_lit] = STATE(2050), - [sym__bare_set_lit] = STATE(2537), + [sym__bare_set_lit] = STATE(2647), [sym_read_cond_lit] = STATE(2050), [sym_splicing_read_cond_lit] = STATE(2050), [sym_var_quoting_lit] = STATE(2050), @@ -28266,3009 +24760,2579 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(2050), [sym_unquote_splicing_lit] = STATE(2050), [sym_unquoting_lit] = STATE(2050), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), + [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(262), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3585), - [sym_comment] = ACTIONS(3585), - [anon_sym_POUND_] = ACTIONS(3479), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3588), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3484), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3588), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3487), - [anon_sym_POUND_CARET] = ACTIONS(3490), - [anon_sym_LPAREN] = ACTIONS(3493), - [anon_sym_RPAREN] = ACTIONS(3496), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3588), - [anon_sym_cl] = ACTIONS(3498), - [aux_sym_accumulation_verb_token1] = ACTIONS(3501), - [anon_sym_for] = ACTIONS(3501), - [anon_sym_and] = ACTIONS(3501), - [anon_sym_as] = ACTIONS(3501), - [anon_sym_with] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_while] = ACTIONS(3501), - [anon_sym_until] = ACTIONS(3501), - [anon_sym_repeat] = ACTIONS(3501), - [anon_sym_when] = ACTIONS(3501), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_unless] = ACTIONS(3501), - [anon_sym_always] = ACTIONS(3501), - [anon_sym_thereis] = ACTIONS(3501), - [anon_sym_never] = ACTIONS(3501), - [anon_sym_else] = ACTIONS(3501), - [anon_sym_finally] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3501), - [anon_sym_initially] = ACTIONS(3501), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3590), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [208] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2138), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2138), - [sym_set_lit] = STATE(2138), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3592), - [sym_comment] = ACTIONS(3592), - [anon_sym_POUND_] = ACTIONS(3595), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3598), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3598), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3603), - [anon_sym_POUND_CARET] = ACTIONS(3606), - [anon_sym_LPAREN] = ACTIONS(3609), - [anon_sym_RPAREN] = ACTIONS(3612), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3598), - [anon_sym_cl] = ACTIONS(3614), - [aux_sym_accumulation_verb_token1] = ACTIONS(3617), - [anon_sym_for] = ACTIONS(3617), - [anon_sym_and] = ACTIONS(3617), - [anon_sym_as] = ACTIONS(3617), - [anon_sym_with] = ACTIONS(3617), - [anon_sym_do] = ACTIONS(3617), - [anon_sym_while] = ACTIONS(3617), - [anon_sym_until] = ACTIONS(3617), - [anon_sym_repeat] = ACTIONS(3617), - [anon_sym_when] = ACTIONS(3617), - [anon_sym_if] = ACTIONS(3617), - [anon_sym_unless] = ACTIONS(3617), - [anon_sym_always] = ACTIONS(3617), - [anon_sym_thereis] = ACTIONS(3617), - [anon_sym_never] = ACTIONS(3617), - [anon_sym_else] = ACTIONS(3617), - [anon_sym_finally] = ACTIONS(3617), - [anon_sym_return] = ACTIONS(3617), - [anon_sym_initially] = ACTIONS(3617), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3619), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [209] = { - [sym__gap] = STATE(142), - [sym_dis_expr] = STATE(142), - [sym__form] = STATE(2137), - [sym_num_lit] = STATE(2137), - [sym_kwd_lit] = STATE(2137), - [sym_str_lit] = STATE(2137), - [sym_char_lit] = STATE(2137), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2137), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2137), - [sym_set_lit] = STATE(2137), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2137), - [sym_splicing_read_cond_lit] = STATE(2137), - [sym_var_quoting_lit] = STATE(2137), - [sym_quoting_lit] = STATE(2137), - [sym_syn_quoting_lit] = STATE(2137), - [sym_unquote_splicing_lit] = STATE(2137), - [sym_unquoting_lit] = STATE(2137), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2137), - [sym_package_lit] = STATE(2137), - [sym_include_reader_macro] = STATE(2137), - [sym_complex_num_lit] = STATE(2137), - [aux_sym_dis_expr_repeat1] = STATE(142), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3621), - [sym_comment] = ACTIONS(3621), - [anon_sym_POUND_] = ACTIONS(3595), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3624), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3624), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3603), - [anon_sym_POUND_CARET] = ACTIONS(3606), - [anon_sym_LPAREN] = ACTIONS(3609), - [anon_sym_RPAREN] = ACTIONS(3612), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3624), - [anon_sym_cl] = ACTIONS(3614), - [aux_sym_accumulation_verb_token1] = ACTIONS(3617), - [anon_sym_for] = ACTIONS(3617), - [anon_sym_and] = ACTIONS(3617), - [anon_sym_as] = ACTIONS(3617), - [anon_sym_with] = ACTIONS(3617), - [anon_sym_do] = ACTIONS(3617), - [anon_sym_while] = ACTIONS(3617), - [anon_sym_until] = ACTIONS(3617), - [anon_sym_repeat] = ACTIONS(3617), - [anon_sym_when] = ACTIONS(3617), - [anon_sym_if] = ACTIONS(3617), - [anon_sym_unless] = ACTIONS(3617), - [anon_sym_always] = ACTIONS(3617), - [anon_sym_thereis] = ACTIONS(3617), - [anon_sym_never] = ACTIONS(3617), - [anon_sym_else] = ACTIONS(3617), - [anon_sym_finally] = ACTIONS(3617), - [anon_sym_return] = ACTIONS(3617), - [anon_sym_initially] = ACTIONS(3617), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3626), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [210] = { - [sym__gap] = STATE(65), - [sym_dis_expr] = STATE(65), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2373), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2373), - [sym_set_lit] = STATE(2373), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(65), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3628), - [sym_comment] = ACTIONS(3628), - [anon_sym_POUND_] = ACTIONS(2995), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3631), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3000), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3631), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3003), - [anon_sym_POUND_CARET] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3009), - [anon_sym_RPAREN] = ACTIONS(3012), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3631), - [anon_sym_cl] = ACTIONS(3014), - [aux_sym_accumulation_verb_token1] = ACTIONS(3017), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_and] = ACTIONS(3017), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_with] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_until] = ACTIONS(3017), - [anon_sym_repeat] = ACTIONS(3017), - [anon_sym_when] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_unless] = ACTIONS(3017), - [anon_sym_always] = ACTIONS(3017), - [anon_sym_thereis] = ACTIONS(3017), - [anon_sym_never] = ACTIONS(3017), - [anon_sym_else] = ACTIONS(3017), - [anon_sym_finally] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_initially] = ACTIONS(3017), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3633), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [211] = { - [sym__gap] = STATE(253), - [sym_dis_expr] = STATE(253), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2053), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2053), - [sym_set_lit] = STATE(2053), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(253), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3635), - [sym_comment] = ACTIONS(3635), - [anon_sym_POUND_] = ACTIONS(3100), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3638), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3638), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3108), - [anon_sym_POUND_CARET] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_RPAREN] = ACTIONS(3117), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3638), - [anon_sym_cl] = ACTIONS(3119), - [aux_sym_accumulation_verb_token1] = ACTIONS(3122), - [anon_sym_for] = ACTIONS(3122), - [anon_sym_and] = ACTIONS(3122), - [anon_sym_as] = ACTIONS(3122), - [anon_sym_with] = ACTIONS(3122), - [anon_sym_do] = ACTIONS(3122), - [anon_sym_while] = ACTIONS(3122), - [anon_sym_until] = ACTIONS(3122), - [anon_sym_repeat] = ACTIONS(3122), - [anon_sym_when] = ACTIONS(3122), - [anon_sym_if] = ACTIONS(3122), - [anon_sym_unless] = ACTIONS(3122), - [anon_sym_always] = ACTIONS(3122), - [anon_sym_thereis] = ACTIONS(3122), - [anon_sym_never] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3122), - [anon_sym_finally] = ACTIONS(3122), - [anon_sym_return] = ACTIONS(3122), - [anon_sym_initially] = ACTIONS(3122), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3640), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [212] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2409), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2409), - [sym_set_lit] = STATE(2409), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3642), - [sym_comment] = ACTIONS(3642), - [anon_sym_POUND_] = ACTIONS(3443), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3645), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3448), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3645), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3451), - [anon_sym_POUND_CARET] = ACTIONS(3454), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_RPAREN] = ACTIONS(3460), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [aux_sym_dis_expr_repeat1] = STATE(99), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3020), + [sym_comment] = ACTIONS(3020), + [anon_sym_POUND_] = ACTIONS(2415), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3023), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2420), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3023), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2423), + [anon_sym_POUND_CARET] = ACTIONS(2426), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_RPAREN] = ACTIONS(2432), + [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(3645), - [anon_sym_cl] = ACTIONS(3462), - [aux_sym_accumulation_verb_token1] = ACTIONS(3465), - [anon_sym_for] = ACTIONS(3465), - [anon_sym_and] = ACTIONS(3465), - [anon_sym_as] = ACTIONS(3465), - [anon_sym_with] = ACTIONS(3465), - [anon_sym_do] = ACTIONS(3465), - [anon_sym_while] = ACTIONS(3465), - [anon_sym_until] = ACTIONS(3465), - [anon_sym_repeat] = ACTIONS(3465), - [anon_sym_when] = ACTIONS(3465), - [anon_sym_if] = ACTIONS(3465), - [anon_sym_unless] = ACTIONS(3465), - [anon_sym_always] = ACTIONS(3465), - [anon_sym_thereis] = ACTIONS(3465), - [anon_sym_never] = ACTIONS(3465), - [anon_sym_else] = ACTIONS(3465), - [anon_sym_finally] = ACTIONS(3465), - [anon_sym_return] = ACTIONS(3465), - [anon_sym_initially] = ACTIONS(3465), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3647), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3023), + [anon_sym_cl] = ACTIONS(2434), + [aux_sym_accumulation_verb_token1] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_and] = ACTIONS(2437), + [anon_sym_as] = ACTIONS(2437), + [anon_sym_with] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_until] = ACTIONS(2437), + [anon_sym_repeat] = ACTIONS(2437), + [anon_sym_when] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_unless] = ACTIONS(2437), + [anon_sym_always] = ACTIONS(2437), + [anon_sym_thereis] = ACTIONS(2437), + [anon_sym_never] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_finally] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_initially] = ACTIONS(2437), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3025), + [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(143), - [sym_dis_expr] = STATE(143), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2135), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2135), - [sym_set_lit] = STATE(2135), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(143), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3649), - [sym_comment] = ACTIONS(3649), - [anon_sym_POUND_] = ACTIONS(3595), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3652), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3652), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3603), - [anon_sym_POUND_CARET] = ACTIONS(3606), - [anon_sym_LPAREN] = ACTIONS(3609), - [anon_sym_RPAREN] = ACTIONS(3612), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [167] = { + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(1349), + [sym_comment] = ACTIONS(1349), + [anon_sym_POUND_] = ACTIONS(1352), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3027), + [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(3027), + [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(3652), - [anon_sym_cl] = ACTIONS(3614), - [aux_sym_accumulation_verb_token1] = ACTIONS(3617), - [anon_sym_for] = ACTIONS(3617), - [anon_sym_and] = ACTIONS(3617), - [anon_sym_as] = ACTIONS(3617), - [anon_sym_with] = ACTIONS(3617), - [anon_sym_do] = ACTIONS(3617), - [anon_sym_while] = ACTIONS(3617), - [anon_sym_until] = ACTIONS(3617), - [anon_sym_repeat] = ACTIONS(3617), - [anon_sym_when] = ACTIONS(3617), - [anon_sym_if] = ACTIONS(3617), - [anon_sym_unless] = ACTIONS(3617), - [anon_sym_always] = ACTIONS(3617), - [anon_sym_thereis] = ACTIONS(3617), - [anon_sym_never] = ACTIONS(3617), - [anon_sym_else] = ACTIONS(3617), - [anon_sym_finally] = ACTIONS(3617), - [anon_sym_return] = ACTIONS(3617), - [anon_sym_initially] = ACTIONS(3617), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3654), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3027), + [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(3029), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2134), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2134), - [sym_set_lit] = STATE(2134), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3592), - [sym_comment] = ACTIONS(3592), - [anon_sym_POUND_] = ACTIONS(3595), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3656), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3656), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3603), - [anon_sym_POUND_CARET] = ACTIONS(3606), - [anon_sym_LPAREN] = ACTIONS(3609), - [anon_sym_RPAREN] = ACTIONS(3612), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [168] = { + [sym__gap] = STATE(101), + [sym_dis_expr] = STATE(101), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(101), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3031), + [sym_comment] = ACTIONS(3031), + [anon_sym_POUND_] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3034), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3034), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2358), + [anon_sym_POUND_CARET] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2367), + [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(3656), - [anon_sym_cl] = ACTIONS(3614), - [aux_sym_accumulation_verb_token1] = ACTIONS(3617), - [anon_sym_for] = ACTIONS(3617), - [anon_sym_and] = ACTIONS(3617), - [anon_sym_as] = ACTIONS(3617), - [anon_sym_with] = ACTIONS(3617), - [anon_sym_do] = ACTIONS(3617), - [anon_sym_while] = ACTIONS(3617), - [anon_sym_until] = ACTIONS(3617), - [anon_sym_repeat] = ACTIONS(3617), - [anon_sym_when] = ACTIONS(3617), - [anon_sym_if] = ACTIONS(3617), - [anon_sym_unless] = ACTIONS(3617), - [anon_sym_always] = ACTIONS(3617), - [anon_sym_thereis] = ACTIONS(3617), - [anon_sym_never] = ACTIONS(3617), - [anon_sym_else] = ACTIONS(3617), - [anon_sym_finally] = ACTIONS(3617), - [anon_sym_return] = ACTIONS(3617), - [anon_sym_initially] = ACTIONS(3617), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3658), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3034), + [anon_sym_cl] = ACTIONS(2369), + [aux_sym_accumulation_verb_token1] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_and] = ACTIONS(2372), + [anon_sym_as] = ACTIONS(2372), + [anon_sym_with] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_until] = ACTIONS(2372), + [anon_sym_repeat] = ACTIONS(2372), + [anon_sym_when] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_unless] = ACTIONS(2372), + [anon_sym_always] = ACTIONS(2372), + [anon_sym_thereis] = ACTIONS(2372), + [anon_sym_never] = ACTIONS(2372), + [anon_sym_else] = ACTIONS(2372), + [anon_sym_finally] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_initially] = ACTIONS(2372), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3036), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2131), - [sym_num_lit] = STATE(2131), - [sym_kwd_lit] = STATE(2131), - [sym_str_lit] = STATE(2131), - [sym_char_lit] = STATE(2131), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2131), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2131), - [sym_set_lit] = STATE(2131), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2131), - [sym_splicing_read_cond_lit] = STATE(2131), - [sym_var_quoting_lit] = STATE(2131), - [sym_quoting_lit] = STATE(2131), - [sym_syn_quoting_lit] = STATE(2131), - [sym_unquote_splicing_lit] = STATE(2131), - [sym_unquoting_lit] = STATE(2131), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2131), - [sym_package_lit] = STATE(2131), - [sym_include_reader_macro] = STATE(2131), - [sym_complex_num_lit] = STATE(2131), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3578), - [sym_comment] = ACTIONS(3578), - [anon_sym_POUND_] = ACTIONS(3537), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3660), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3542), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3660), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [169] = { + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2347), + [sym_comment] = ACTIONS(2347), + [anon_sym_POUND_] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3038), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2355), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3038), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2358), + [anon_sym_POUND_CARET] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2367), + [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(3660), - [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(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3662), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3038), + [anon_sym_cl] = ACTIONS(2369), + [aux_sym_accumulation_verb_token1] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_and] = ACTIONS(2372), + [anon_sym_as] = ACTIONS(2372), + [anon_sym_with] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_until] = ACTIONS(2372), + [anon_sym_repeat] = ACTIONS(2372), + [anon_sym_when] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_unless] = ACTIONS(2372), + [anon_sym_always] = ACTIONS(2372), + [anon_sym_thereis] = ACTIONS(2372), + [anon_sym_never] = ACTIONS(2372), + [anon_sym_else] = ACTIONS(2372), + [anon_sym_finally] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_initially] = ACTIONS(2372), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3040), + [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(245), - [sym_dis_expr] = STATE(245), - [sym__form] = STATE(2055), - [sym_num_lit] = STATE(2055), - [sym_kwd_lit] = STATE(2055), - [sym_str_lit] = STATE(2055), - [sym_char_lit] = STATE(2055), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2055), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2055), - [sym_set_lit] = STATE(2055), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2055), - [sym_splicing_read_cond_lit] = STATE(2055), - [sym_var_quoting_lit] = STATE(2055), - [sym_quoting_lit] = STATE(2055), - [sym_syn_quoting_lit] = STATE(2055), - [sym_unquote_splicing_lit] = STATE(2055), - [sym_unquoting_lit] = STATE(2055), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2055), - [sym_package_lit] = STATE(2055), - [sym_include_reader_macro] = STATE(2055), - [sym_complex_num_lit] = STATE(2055), - [aux_sym_dis_expr_repeat1] = STATE(245), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3664), - [sym_comment] = ACTIONS(3664), - [anon_sym_POUND_] = ACTIONS(3667), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3670), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3672), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3670), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(80), - [anon_sym_POUND_CARET] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym_RPAREN] = ACTIONS(89), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [170] = { + [sym__gap] = STATE(254), + [sym_dis_expr] = STATE(254), + [sym__form] = STATE(2418), + [sym_num_lit] = STATE(2418), + [sym_kwd_lit] = STATE(2418), + [sym_str_lit] = STATE(2418), + [sym_char_lit] = STATE(2418), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2418), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2418), + [sym_set_lit] = STATE(2418), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2418), + [sym_splicing_read_cond_lit] = STATE(2418), + [sym_var_quoting_lit] = STATE(2418), + [sym_quoting_lit] = STATE(2418), + [sym_syn_quoting_lit] = STATE(2418), + [sym_unquote_splicing_lit] = STATE(2418), + [sym_unquoting_lit] = STATE(2418), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2418), + [sym_package_lit] = STATE(2418), + [sym_include_reader_macro] = STATE(2418), + [sym_complex_num_lit] = STATE(2418), + [aux_sym_dis_expr_repeat1] = STATE(254), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3042), + [sym_comment] = ACTIONS(3042), + [anon_sym_POUND_] = ACTIONS(1352), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3045), + [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(3045), + [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(3670), - [anon_sym_cl] = ACTIONS(3678), - [aux_sym_accumulation_verb_token1] = ACTIONS(112), - [anon_sym_for] = ACTIONS(112), - [anon_sym_and] = ACTIONS(112), - [anon_sym_as] = ACTIONS(112), - [anon_sym_with] = ACTIONS(112), - [anon_sym_do] = ACTIONS(112), - [anon_sym_while] = ACTIONS(112), - [anon_sym_until] = ACTIONS(112), - [anon_sym_repeat] = ACTIONS(112), - [anon_sym_when] = ACTIONS(112), - [anon_sym_if] = ACTIONS(112), - [anon_sym_unless] = ACTIONS(112), - [anon_sym_always] = ACTIONS(112), - [anon_sym_thereis] = ACTIONS(112), - [anon_sym_never] = ACTIONS(112), - [anon_sym_else] = ACTIONS(112), - [anon_sym_finally] = ACTIONS(112), - [anon_sym_return] = ACTIONS(112), - [anon_sym_initially] = ACTIONS(112), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3681), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3045), + [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(3047), + [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(196), - [sym_dis_expr] = STATE(196), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2360), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2360), - [sym_set_lit] = STATE(2360), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(196), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3683), - [sym_comment] = ACTIONS(3683), - [anon_sym_POUND_] = ACTIONS(3443), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3686), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3448), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3686), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3451), - [anon_sym_POUND_CARET] = ACTIONS(3454), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_RPAREN] = ACTIONS(3460), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [171] = { + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2810), + [sym_comment] = ACTIONS(2810), + [anon_sym_POUND_] = ACTIONS(2813), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3049), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2818), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3049), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2821), + [anon_sym_POUND_CARET] = ACTIONS(2824), + [anon_sym_LPAREN] = ACTIONS(2827), + [anon_sym_RPAREN] = ACTIONS(2830), + [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(3686), - [anon_sym_cl] = ACTIONS(3462), - [aux_sym_accumulation_verb_token1] = ACTIONS(3465), - [anon_sym_for] = ACTIONS(3465), - [anon_sym_and] = ACTIONS(3465), - [anon_sym_as] = ACTIONS(3465), - [anon_sym_with] = ACTIONS(3465), - [anon_sym_do] = ACTIONS(3465), - [anon_sym_while] = ACTIONS(3465), - [anon_sym_until] = ACTIONS(3465), - [anon_sym_repeat] = ACTIONS(3465), - [anon_sym_when] = ACTIONS(3465), - [anon_sym_if] = ACTIONS(3465), - [anon_sym_unless] = ACTIONS(3465), - [anon_sym_always] = ACTIONS(3465), - [anon_sym_thereis] = ACTIONS(3465), - [anon_sym_never] = ACTIONS(3465), - [anon_sym_else] = ACTIONS(3465), - [anon_sym_finally] = ACTIONS(3465), - [anon_sym_return] = ACTIONS(3465), - [anon_sym_initially] = ACTIONS(3465), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3688), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3049), + [anon_sym_cl] = ACTIONS(2832), + [aux_sym_accumulation_verb_token1] = ACTIONS(2835), + [anon_sym_for] = ACTIONS(2835), + [anon_sym_and] = ACTIONS(2835), + [anon_sym_as] = ACTIONS(2835), + [anon_sym_with] = ACTIONS(2835), + [anon_sym_do] = ACTIONS(2835), + [anon_sym_while] = ACTIONS(2835), + [anon_sym_until] = ACTIONS(2835), + [anon_sym_repeat] = ACTIONS(2835), + [anon_sym_when] = ACTIONS(2835), + [anon_sym_if] = ACTIONS(2835), + [anon_sym_unless] = ACTIONS(2835), + [anon_sym_always] = ACTIONS(2835), + [anon_sym_thereis] = ACTIONS(2835), + [anon_sym_never] = ACTIONS(2835), + [anon_sym_else] = ACTIONS(2835), + [anon_sym_finally] = ACTIONS(2835), + [anon_sym_return] = ACTIONS(2835), + [anon_sym_initially] = ACTIONS(2835), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3051), + [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(74), - [sym_dis_expr] = STATE(74), - [sym__form] = STATE(2361), - [sym_num_lit] = STATE(2361), - [sym_kwd_lit] = STATE(2361), - [sym_str_lit] = STATE(2361), - [sym_char_lit] = STATE(2361), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2361), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2361), - [sym_set_lit] = STATE(2361), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2361), - [sym_splicing_read_cond_lit] = STATE(2361), - [sym_var_quoting_lit] = STATE(2361), - [sym_quoting_lit] = STATE(2361), - [sym_syn_quoting_lit] = STATE(2361), - [sym_unquote_splicing_lit] = STATE(2361), - [sym_unquoting_lit] = STATE(2361), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2361), - [sym_package_lit] = STATE(2361), - [sym_include_reader_macro] = STATE(2361), - [sym_complex_num_lit] = STATE(2361), - [aux_sym_dis_expr_repeat1] = STATE(74), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3690), - [sym_comment] = ACTIONS(3690), - [anon_sym_POUND_] = ACTIONS(2995), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3693), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3000), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3693), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3003), - [anon_sym_POUND_CARET] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3009), - [anon_sym_RPAREN] = ACTIONS(3012), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [172] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2529), + [sym_num_lit] = STATE(2529), + [sym_kwd_lit] = STATE(2529), + [sym_str_lit] = STATE(2529), + [sym_char_lit] = STATE(2529), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2529), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2529), + [sym_set_lit] = STATE(2529), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2529), + [sym_splicing_read_cond_lit] = STATE(2529), + [sym_var_quoting_lit] = STATE(2529), + [sym_quoting_lit] = STATE(2529), + [sym_syn_quoting_lit] = STATE(2529), + [sym_unquote_splicing_lit] = STATE(2529), + [sym_unquoting_lit] = STATE(2529), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2529), + [sym_package_lit] = STATE(2529), + [sym_include_reader_macro] = STATE(2529), + [sym_complex_num_lit] = STATE(2529), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2843), + [sym_comment] = ACTIONS(2843), + [anon_sym_POUND_] = ACTIONS(2846), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3053), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2851), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3053), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_POUND_CARET] = ACTIONS(2857), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_RPAREN] = ACTIONS(2863), + [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(3693), - [anon_sym_cl] = ACTIONS(3014), - [aux_sym_accumulation_verb_token1] = ACTIONS(3017), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_and] = ACTIONS(3017), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_with] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_until] = ACTIONS(3017), - [anon_sym_repeat] = ACTIONS(3017), - [anon_sym_when] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_unless] = ACTIONS(3017), - [anon_sym_always] = ACTIONS(3017), - [anon_sym_thereis] = ACTIONS(3017), - [anon_sym_never] = ACTIONS(3017), - [anon_sym_else] = ACTIONS(3017), - [anon_sym_finally] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_initially] = ACTIONS(3017), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3695), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3053), + [anon_sym_cl] = ACTIONS(2865), + [aux_sym_accumulation_verb_token1] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_and] = ACTIONS(2868), + [anon_sym_as] = ACTIONS(2868), + [anon_sym_with] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_until] = ACTIONS(2868), + [anon_sym_repeat] = ACTIONS(2868), + [anon_sym_when] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_unless] = ACTIONS(2868), + [anon_sym_always] = ACTIONS(2868), + [anon_sym_thereis] = ACTIONS(2868), + [anon_sym_never] = ACTIONS(2868), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_finally] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_initially] = ACTIONS(2868), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3055), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, - [219] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2118), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2118), - [sym_set_lit] = STATE(2118), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3697), - [sym_comment] = ACTIONS(3697), - [anon_sym_POUND_] = ACTIONS(3700), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3703), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3705), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3703), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3708), - [anon_sym_POUND_CARET] = ACTIONS(3711), - [anon_sym_LPAREN] = ACTIONS(3714), - [anon_sym_RPAREN] = ACTIONS(3717), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [173] = { + [sym__gap] = STATE(249), + [sym_dis_expr] = STATE(249), + [sym__form] = STATE(2500), + [sym_num_lit] = STATE(2500), + [sym_kwd_lit] = STATE(2500), + [sym_str_lit] = STATE(2500), + [sym_char_lit] = STATE(2500), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2500), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2500), + [sym_set_lit] = STATE(2500), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2500), + [sym_splicing_read_cond_lit] = STATE(2500), + [sym_var_quoting_lit] = STATE(2500), + [sym_quoting_lit] = STATE(2500), + [sym_syn_quoting_lit] = STATE(2500), + [sym_unquote_splicing_lit] = STATE(2500), + [sym_unquoting_lit] = STATE(2500), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2500), + [sym_package_lit] = STATE(2500), + [sym_include_reader_macro] = STATE(2500), + [sym_complex_num_lit] = STATE(2500), + [aux_sym_dis_expr_repeat1] = STATE(249), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3057), + [sym_comment] = ACTIONS(3057), + [anon_sym_POUND_] = ACTIONS(2846), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3060), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2851), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3060), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_POUND_CARET] = ACTIONS(2857), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_RPAREN] = ACTIONS(2863), + [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(3703), - [anon_sym_cl] = ACTIONS(3719), - [aux_sym_accumulation_verb_token1] = ACTIONS(3722), - [anon_sym_for] = ACTIONS(3722), - [anon_sym_and] = ACTIONS(3722), - [anon_sym_as] = ACTIONS(3722), - [anon_sym_with] = ACTIONS(3722), - [anon_sym_do] = ACTIONS(3722), - [anon_sym_while] = ACTIONS(3722), - [anon_sym_until] = ACTIONS(3722), - [anon_sym_repeat] = ACTIONS(3722), - [anon_sym_when] = ACTIONS(3722), - [anon_sym_if] = ACTIONS(3722), - [anon_sym_unless] = ACTIONS(3722), - [anon_sym_always] = ACTIONS(3722), - [anon_sym_thereis] = ACTIONS(3722), - [anon_sym_never] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(3722), - [anon_sym_finally] = ACTIONS(3722), - [anon_sym_return] = ACTIONS(3722), - [anon_sym_initially] = ACTIONS(3722), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3724), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3060), + [anon_sym_cl] = ACTIONS(2865), + [aux_sym_accumulation_verb_token1] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_and] = ACTIONS(2868), + [anon_sym_as] = ACTIONS(2868), + [anon_sym_with] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_until] = ACTIONS(2868), + [anon_sym_repeat] = ACTIONS(2868), + [anon_sym_when] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_unless] = ACTIONS(2868), + [anon_sym_always] = ACTIONS(2868), + [anon_sym_thereis] = ACTIONS(2868), + [anon_sym_never] = ACTIONS(2868), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_finally] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_initially] = ACTIONS(2868), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3062), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2368), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2368), - [sym_set_lit] = STATE(2368), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2560), - [sym_comment] = ACTIONS(2560), - [anon_sym_POUND_] = ACTIONS(2563), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3726), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2568), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3726), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2571), - [anon_sym_POUND_CARET] = ACTIONS(2574), - [anon_sym_LPAREN] = ACTIONS(2577), - [anon_sym_RPAREN] = ACTIONS(2580), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [174] = { + [sym__gap] = STATE(246), + [sym_dis_expr] = STATE(246), + [sym__form] = STATE(2384), + [sym_num_lit] = STATE(2384), + [sym_kwd_lit] = STATE(2384), + [sym_str_lit] = STATE(2384), + [sym_char_lit] = STATE(2384), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2384), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2384), + [sym_set_lit] = STATE(2384), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2384), + [sym_splicing_read_cond_lit] = STATE(2384), + [sym_var_quoting_lit] = STATE(2384), + [sym_quoting_lit] = STATE(2384), + [sym_syn_quoting_lit] = STATE(2384), + [sym_unquote_splicing_lit] = STATE(2384), + [sym_unquoting_lit] = STATE(2384), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2384), + [sym_package_lit] = STATE(2384), + [sym_include_reader_macro] = STATE(2384), + [sym_complex_num_lit] = STATE(2384), + [aux_sym_dis_expr_repeat1] = STATE(246), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3064), + [sym_comment] = ACTIONS(3064), + [anon_sym_POUND_] = ACTIONS(2846), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3067), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2851), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3067), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_POUND_CARET] = ACTIONS(2857), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_RPAREN] = ACTIONS(2863), + [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(3726), - [anon_sym_cl] = ACTIONS(2582), - [aux_sym_accumulation_verb_token1] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2585), - [anon_sym_and] = ACTIONS(2585), - [anon_sym_as] = ACTIONS(2585), - [anon_sym_with] = ACTIONS(2585), - [anon_sym_do] = ACTIONS(2585), - [anon_sym_while] = ACTIONS(2585), - [anon_sym_until] = ACTIONS(2585), - [anon_sym_repeat] = ACTIONS(2585), - [anon_sym_when] = ACTIONS(2585), - [anon_sym_if] = ACTIONS(2585), - [anon_sym_unless] = ACTIONS(2585), - [anon_sym_always] = ACTIONS(2585), - [anon_sym_thereis] = ACTIONS(2585), - [anon_sym_never] = ACTIONS(2585), - [anon_sym_else] = ACTIONS(2585), - [anon_sym_finally] = ACTIONS(2585), - [anon_sym_return] = ACTIONS(2585), - [anon_sym_initially] = ACTIONS(2585), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3728), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3067), + [anon_sym_cl] = ACTIONS(2865), + [aux_sym_accumulation_verb_token1] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_and] = ACTIONS(2868), + [anon_sym_as] = ACTIONS(2868), + [anon_sym_with] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_until] = ACTIONS(2868), + [anon_sym_repeat] = ACTIONS(2868), + [anon_sym_when] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_unless] = ACTIONS(2868), + [anon_sym_always] = ACTIONS(2868), + [anon_sym_thereis] = ACTIONS(2868), + [anon_sym_never] = ACTIONS(2868), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_finally] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_initially] = ACTIONS(2868), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3069), + [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(188), - [sym_dis_expr] = STATE(188), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2081), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2081), - [sym_set_lit] = STATE(2081), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(188), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3730), - [sym_comment] = ACTIONS(3730), - [anon_sym_POUND_] = ACTIONS(3100), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3733), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3733), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3108), - [anon_sym_POUND_CARET] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_RPAREN] = ACTIONS(3117), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [175] = { + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2509), + [sym_comment] = ACTIONS(2509), + [anon_sym_POUND_] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3071), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2094), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3071), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2097), + [anon_sym_POUND_CARET] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_RPAREN] = ACTIONS(2106), + [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(3733), - [anon_sym_cl] = ACTIONS(3119), - [aux_sym_accumulation_verb_token1] = ACTIONS(3122), - [anon_sym_for] = ACTIONS(3122), - [anon_sym_and] = ACTIONS(3122), - [anon_sym_as] = ACTIONS(3122), - [anon_sym_with] = ACTIONS(3122), - [anon_sym_do] = ACTIONS(3122), - [anon_sym_while] = ACTIONS(3122), - [anon_sym_until] = ACTIONS(3122), - [anon_sym_repeat] = ACTIONS(3122), - [anon_sym_when] = ACTIONS(3122), - [anon_sym_if] = ACTIONS(3122), - [anon_sym_unless] = ACTIONS(3122), - [anon_sym_always] = ACTIONS(3122), - [anon_sym_thereis] = ACTIONS(3122), - [anon_sym_never] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3122), - [anon_sym_finally] = ACTIONS(3122), - [anon_sym_return] = ACTIONS(3122), - [anon_sym_initially] = ACTIONS(3122), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3735), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3071), + [anon_sym_cl] = ACTIONS(2108), + [aux_sym_accumulation_verb_token1] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_and] = ACTIONS(2111), + [anon_sym_as] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_until] = ACTIONS(2111), + [anon_sym_repeat] = ACTIONS(2111), + [anon_sym_when] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_unless] = ACTIONS(2111), + [anon_sym_always] = ACTIONS(2111), + [anon_sym_thereis] = ACTIONS(2111), + [anon_sym_never] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_initially] = ACTIONS(2111), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3073), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2443), - [sym_num_lit] = STATE(2443), - [sym_kwd_lit] = STATE(2443), - [sym_str_lit] = STATE(2443), - [sym_char_lit] = STATE(2443), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2443), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2443), - [sym_set_lit] = STATE(2443), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2443), - [sym_splicing_read_cond_lit] = STATE(2443), - [sym_var_quoting_lit] = STATE(2443), - [sym_quoting_lit] = STATE(2443), - [sym_syn_quoting_lit] = STATE(2443), - [sym_unquote_splicing_lit] = STATE(2443), - [sym_unquoting_lit] = STATE(2443), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2443), - [sym_package_lit] = STATE(2443), - [sym_include_reader_macro] = STATE(2443), - [sym_complex_num_lit] = STATE(2443), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1461), - [sym_comment] = ACTIONS(1461), - [anon_sym_POUND_] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3737), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1469), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3737), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1472), - [anon_sym_POUND_CARET] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(1481), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [176] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2204), + [sym_num_lit] = STATE(2204), + [sym_kwd_lit] = STATE(2204), + [sym_str_lit] = STATE(2204), + [sym_char_lit] = STATE(2204), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2204), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2204), + [sym_set_lit] = STATE(2204), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2204), + [sym_splicing_read_cond_lit] = STATE(2204), + [sym_var_quoting_lit] = STATE(2204), + [sym_quoting_lit] = STATE(2204), + [sym_syn_quoting_lit] = STATE(2204), + [sym_unquote_splicing_lit] = STATE(2204), + [sym_unquoting_lit] = STATE(2204), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2204), + [sym_package_lit] = STATE(2204), + [sym_include_reader_macro] = STATE(2204), + [sym_complex_num_lit] = STATE(2204), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2843), + [sym_comment] = ACTIONS(2843), + [anon_sym_POUND_] = ACTIONS(2846), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3075), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2851), + [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(2854), + [anon_sym_POUND_CARET] = ACTIONS(2857), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_RPAREN] = ACTIONS(2863), + [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(3737), - [anon_sym_cl] = ACTIONS(1483), - [aux_sym_accumulation_verb_token1] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_as] = ACTIONS(1486), - [anon_sym_with] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_until] = ACTIONS(1486), - [anon_sym_repeat] = ACTIONS(1486), - [anon_sym_when] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_unless] = ACTIONS(1486), - [anon_sym_always] = ACTIONS(1486), - [anon_sym_thereis] = ACTIONS(1486), - [anon_sym_never] = ACTIONS(1486), - [anon_sym_else] = ACTIONS(1486), - [anon_sym_finally] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_initially] = ACTIONS(1486), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3739), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3075), + [anon_sym_cl] = ACTIONS(2865), + [aux_sym_accumulation_verb_token1] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_and] = ACTIONS(2868), + [anon_sym_as] = ACTIONS(2868), + [anon_sym_with] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_until] = ACTIONS(2868), + [anon_sym_repeat] = ACTIONS(2868), + [anon_sym_when] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_unless] = ACTIONS(2868), + [anon_sym_always] = ACTIONS(2868), + [anon_sym_thereis] = ACTIONS(2868), + [anon_sym_never] = ACTIONS(2868), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_finally] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_initially] = ACTIONS(2868), + [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), }, - [223] = { - [sym__gap] = STATE(268), - [sym_dis_expr] = STATE(268), - [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(2744), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2717), - [sym__bare_list_lit] = STATE(1926), - [sym_vec_lit] = STATE(2717), - [sym_set_lit] = STATE(2717), - [sym__bare_set_lit] = STATE(1927), - [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(1926), - [sym_for_clause_word] = STATE(549), - [sym__for_part] = STATE(1556), - [sym_loop_macro] = STATE(1926), - [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(268), - [aux_sym_list_lit_repeat1] = STATE(2781), - [aux_sym_for_clause_repeat1] = STATE(1263), - [sym__ws] = ACTIONS(3741), - [sym_comment] = ACTIONS(3741), - [anon_sym_POUND_] = ACTIONS(2310), - [anon_sym_POUND] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(3743), - [aux_sym_num_lit_token1] = ACTIONS(2316), - [anon_sym_COLON] = ACTIONS(2318), - [anon_sym_COLON_COLON] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2322), - [sym_nil_lit] = ACTIONS(3743), - [aux_sym_sym_lit_token1] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_POUND0A] = ACTIONS(2328), - [anon_sym_POUND0a] = ACTIONS(2328), - [anon_sym_POUND_QMARK] = ACTIONS(2330), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2332), - [anon_sym_POUND_SQUOTE] = ACTIONS(2334), - [anon_sym_SQUOTE] = ACTIONS(2336), - [anon_sym_BQUOTE] = ACTIONS(2338), - [anon_sym_COMMA_AT] = ACTIONS(2340), - [anon_sym_COMMA] = ACTIONS(2342), + [177] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2288), + [sym_num_lit] = STATE(2288), + [sym_kwd_lit] = STATE(2288), + [sym_str_lit] = STATE(2288), + [sym_char_lit] = STATE(2288), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2288), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2288), + [sym_set_lit] = STATE(2288), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2288), + [sym_splicing_read_cond_lit] = STATE(2288), + [sym_var_quoting_lit] = STATE(2288), + [sym_quoting_lit] = STATE(2288), + [sym_syn_quoting_lit] = STATE(2288), + [sym_unquote_splicing_lit] = STATE(2288), + [sym_unquoting_lit] = STATE(2288), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2288), + [sym_package_lit] = STATE(2288), + [sym_include_reader_macro] = STATE(2288), + [sym_complex_num_lit] = STATE(2288), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3079), + [sym_comment] = ACTIONS(3079), + [anon_sym_POUND_] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3085), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3085), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_POUND_CARET] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_RPAREN] = ACTIONS(3099), + [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(3743), - [anon_sym_cl] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2346), - [anon_sym_across] = ACTIONS(2346), - [anon_sym_being] = ACTIONS(2346), - [anon_sym_using] = ACTIONS(2346), - [aux_sym_for_clause_word_token1] = ACTIONS(2348), - [anon_sym_below] = ACTIONS(2346), - [anon_sym_above] = ACTIONS(2346), - [anon_sym_from] = ACTIONS(2346), - [anon_sym_to] = ACTIONS(2346), - [anon_sym_upto] = ACTIONS(2346), - [anon_sym_upfrom] = ACTIONS(2346), - [anon_sym_downto] = ACTIONS(2346), - [anon_sym_downfrom] = ACTIONS(2346), - [anon_sym_on] = ACTIONS(2346), - [anon_sym_by] = ACTIONS(2346), - [anon_sym_then] = ACTIONS(2346), - [anon_sym_EQ] = ACTIONS(2346), - [anon_sym_POUNDP] = ACTIONS(2350), - [anon_sym_POUNDp] = ACTIONS(2350), - [sym_self_referential_reader_macro] = ACTIONS(3745), - [anon_sym_POUND_PLUS] = ACTIONS(2354), - [anon_sym_POUND_DASH] = ACTIONS(2354), - [anon_sym_POUNDC] = ACTIONS(2356), - [anon_sym_POUNDc] = ACTIONS(2356), + [sym_fancy_literal] = ACTIONS(3085), + [anon_sym_cl] = ACTIONS(3101), + [aux_sym_accumulation_verb_token1] = ACTIONS(3104), + [anon_sym_for] = ACTIONS(3104), + [anon_sym_and] = ACTIONS(3104), + [anon_sym_as] = ACTIONS(3104), + [anon_sym_with] = ACTIONS(3104), + [anon_sym_do] = ACTIONS(3104), + [anon_sym_while] = ACTIONS(3104), + [anon_sym_until] = ACTIONS(3104), + [anon_sym_repeat] = ACTIONS(3104), + [anon_sym_when] = ACTIONS(3104), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_unless] = ACTIONS(3104), + [anon_sym_always] = ACTIONS(3104), + [anon_sym_thereis] = ACTIONS(3104), + [anon_sym_never] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3104), + [anon_sym_finally] = ACTIONS(3104), + [anon_sym_return] = ACTIONS(3104), + [anon_sym_initially] = ACTIONS(3104), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3106), + [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(266), - [sym_dis_expr] = STATE(266), - [sym__form] = STATE(2681), - [sym_num_lit] = STATE(2681), - [sym_kwd_lit] = STATE(2681), - [sym_str_lit] = STATE(2681), - [sym_char_lit] = STATE(2681), - [sym_sym_lit] = STATE(2744), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2681), - [sym__bare_list_lit] = STATE(1926), - [sym_vec_lit] = STATE(2681), - [sym_set_lit] = STATE(2681), - [sym__bare_set_lit] = STATE(1927), - [sym_read_cond_lit] = STATE(2681), - [sym_splicing_read_cond_lit] = STATE(2681), - [sym_var_quoting_lit] = STATE(2681), - [sym_quoting_lit] = STATE(2681), - [sym_syn_quoting_lit] = STATE(2681), - [sym_unquote_splicing_lit] = STATE(2681), - [sym_unquoting_lit] = STATE(2681), - [sym_defun] = STATE(1926), - [sym_for_clause_word] = STATE(549), - [sym__for_part] = STATE(1556), - [sym_loop_macro] = STATE(1926), - [sym_path_lit] = STATE(2681), - [sym_package_lit] = STATE(2681), - [sym_include_reader_macro] = STATE(2681), - [sym_complex_num_lit] = STATE(2681), - [aux_sym_dis_expr_repeat1] = STATE(266), - [aux_sym_list_lit_repeat1] = STATE(2781), - [aux_sym_for_clause_repeat1] = STATE(1253), - [sym__ws] = ACTIONS(3747), - [sym_comment] = ACTIONS(3747), - [anon_sym_POUND_] = ACTIONS(2310), - [anon_sym_POUND] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(3749), - [aux_sym_num_lit_token1] = ACTIONS(2316), - [anon_sym_COLON] = ACTIONS(2318), - [anon_sym_COLON_COLON] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2322), - [sym_nil_lit] = ACTIONS(3749), - [aux_sym_sym_lit_token1] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_POUND0A] = ACTIONS(2328), - [anon_sym_POUND0a] = ACTIONS(2328), - [anon_sym_POUND_QMARK] = ACTIONS(2330), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2332), - [anon_sym_POUND_SQUOTE] = ACTIONS(2334), - [anon_sym_SQUOTE] = ACTIONS(2336), - [anon_sym_BQUOTE] = ACTIONS(2338), - [anon_sym_COMMA_AT] = ACTIONS(2340), - [anon_sym_COMMA] = ACTIONS(2342), + [178] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2069), + [sym_num_lit] = STATE(2069), + [sym_kwd_lit] = STATE(2069), + [sym_str_lit] = STATE(2069), + [sym_char_lit] = STATE(2069), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2069), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2069), + [sym_set_lit] = STATE(2069), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2069), + [sym_splicing_read_cond_lit] = STATE(2069), + [sym_var_quoting_lit] = STATE(2069), + [sym_quoting_lit] = STATE(2069), + [sym_syn_quoting_lit] = STATE(2069), + [sym_unquote_splicing_lit] = STATE(2069), + [sym_unquoting_lit] = STATE(2069), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2069), + [sym_package_lit] = STATE(2069), + [sym_include_reader_macro] = STATE(2069), + [sym_complex_num_lit] = STATE(2069), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3108), + [sym_comment] = ACTIONS(3108), + [anon_sym_POUND_] = ACTIONS(3111), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3114), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3116), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3114), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3119), + [anon_sym_POUND_CARET] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3125), + [anon_sym_RPAREN] = ACTIONS(3128), + [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(3749), - [anon_sym_cl] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2346), - [anon_sym_across] = ACTIONS(2346), - [anon_sym_being] = ACTIONS(2346), - [anon_sym_using] = ACTIONS(2346), - [aux_sym_for_clause_word_token1] = ACTIONS(2348), - [anon_sym_below] = ACTIONS(2346), - [anon_sym_above] = ACTIONS(2346), - [anon_sym_from] = ACTIONS(2346), - [anon_sym_to] = ACTIONS(2346), - [anon_sym_upto] = ACTIONS(2346), - [anon_sym_upfrom] = ACTIONS(2346), - [anon_sym_downto] = ACTIONS(2346), - [anon_sym_downfrom] = ACTIONS(2346), - [anon_sym_on] = ACTIONS(2346), - [anon_sym_by] = ACTIONS(2346), - [anon_sym_then] = ACTIONS(2346), - [anon_sym_EQ] = ACTIONS(2346), - [anon_sym_POUNDP] = ACTIONS(2350), - [anon_sym_POUNDp] = ACTIONS(2350), - [sym_self_referential_reader_macro] = ACTIONS(3751), - [anon_sym_POUND_PLUS] = ACTIONS(2354), - [anon_sym_POUND_DASH] = ACTIONS(2354), - [anon_sym_POUNDC] = ACTIONS(2356), - [anon_sym_POUNDc] = ACTIONS(2356), + [sym_fancy_literal] = ACTIONS(3114), + [anon_sym_cl] = ACTIONS(3130), + [aux_sym_accumulation_verb_token1] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_and] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_with] = ACTIONS(3133), + [anon_sym_do] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_until] = ACTIONS(3133), + [anon_sym_repeat] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_unless] = ACTIONS(3133), + [anon_sym_always] = ACTIONS(3133), + [anon_sym_thereis] = ACTIONS(3133), + [anon_sym_never] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_finally] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_initially] = ACTIONS(3133), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3135), + [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(156), - [sym_dis_expr] = STATE(156), - [sym__form] = STATE(2122), - [sym_num_lit] = STATE(2122), - [sym_kwd_lit] = STATE(2122), - [sym_str_lit] = STATE(2122), - [sym_char_lit] = STATE(2122), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2122), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2122), - [sym_set_lit] = STATE(2122), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2122), - [sym_splicing_read_cond_lit] = STATE(2122), - [sym_var_quoting_lit] = STATE(2122), - [sym_quoting_lit] = STATE(2122), - [sym_syn_quoting_lit] = STATE(2122), - [sym_unquote_splicing_lit] = STATE(2122), - [sym_unquoting_lit] = STATE(2122), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2122), - [sym_package_lit] = STATE(2122), - [sym_include_reader_macro] = STATE(2122), - [sym_complex_num_lit] = STATE(2122), - [aux_sym_dis_expr_repeat1] = STATE(156), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3753), - [sym_comment] = ACTIONS(3753), - [anon_sym_POUND_] = ACTIONS(3700), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3756), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3705), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3756), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3708), - [anon_sym_POUND_CARET] = ACTIONS(3711), - [anon_sym_LPAREN] = ACTIONS(3714), - [anon_sym_RPAREN] = ACTIONS(3717), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [179] = { + [sym__gap] = STATE(239), + [sym_dis_expr] = STATE(239), + [sym__form] = STATE(2398), + [sym_num_lit] = STATE(2398), + [sym_kwd_lit] = STATE(2398), + [sym_str_lit] = STATE(2398), + [sym_char_lit] = STATE(2398), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2398), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2398), + [sym_set_lit] = STATE(2398), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2398), + [sym_splicing_read_cond_lit] = STATE(2398), + [sym_var_quoting_lit] = STATE(2398), + [sym_quoting_lit] = STATE(2398), + [sym_syn_quoting_lit] = STATE(2398), + [sym_unquote_splicing_lit] = STATE(2398), + [sym_unquoting_lit] = STATE(2398), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2398), + [sym_package_lit] = STATE(2398), + [sym_include_reader_macro] = STATE(2398), + [sym_complex_num_lit] = STATE(2398), + [aux_sym_dis_expr_repeat1] = STATE(239), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3137), + [sym_comment] = ACTIONS(3137), + [anon_sym_POUND_] = ACTIONS(3111), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3140), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3116), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3140), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3119), + [anon_sym_POUND_CARET] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3125), + [anon_sym_RPAREN] = ACTIONS(3128), + [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(3756), - [anon_sym_cl] = ACTIONS(3719), - [aux_sym_accumulation_verb_token1] = ACTIONS(3722), - [anon_sym_for] = ACTIONS(3722), - [anon_sym_and] = ACTIONS(3722), - [anon_sym_as] = ACTIONS(3722), - [anon_sym_with] = ACTIONS(3722), - [anon_sym_do] = ACTIONS(3722), - [anon_sym_while] = ACTIONS(3722), - [anon_sym_until] = ACTIONS(3722), - [anon_sym_repeat] = ACTIONS(3722), - [anon_sym_when] = ACTIONS(3722), - [anon_sym_if] = ACTIONS(3722), - [anon_sym_unless] = ACTIONS(3722), - [anon_sym_always] = ACTIONS(3722), - [anon_sym_thereis] = ACTIONS(3722), - [anon_sym_never] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(3722), - [anon_sym_finally] = ACTIONS(3722), - [anon_sym_return] = ACTIONS(3722), - [anon_sym_initially] = ACTIONS(3722), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3758), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3140), + [anon_sym_cl] = ACTIONS(3130), + [aux_sym_accumulation_verb_token1] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_and] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_with] = ACTIONS(3133), + [anon_sym_do] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_until] = ACTIONS(3133), + [anon_sym_repeat] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_unless] = ACTIONS(3133), + [anon_sym_always] = ACTIONS(3133), + [anon_sym_thereis] = ACTIONS(3133), + [anon_sym_never] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_finally] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_initially] = ACTIONS(3133), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3142), + [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(267), - [sym_dis_expr] = STATE(267), - [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(2744), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2682), - [sym__bare_list_lit] = STATE(1926), - [sym_vec_lit] = STATE(2682), - [sym_set_lit] = STATE(2682), - [sym__bare_set_lit] = STATE(1927), - [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(1926), - [sym_for_clause_word] = STATE(549), - [sym__for_part] = STATE(1556), - [sym_loop_macro] = STATE(1926), - [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(267), - [aux_sym_list_lit_repeat1] = STATE(2781), - [aux_sym_for_clause_repeat1] = STATE(1252), - [sym__ws] = ACTIONS(3760), - [sym_comment] = ACTIONS(3760), - [anon_sym_POUND_] = ACTIONS(2310), - [anon_sym_POUND] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(3762), - [aux_sym_num_lit_token1] = ACTIONS(2316), - [anon_sym_COLON] = ACTIONS(2318), - [anon_sym_COLON_COLON] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2322), - [sym_nil_lit] = ACTIONS(3762), - [aux_sym_sym_lit_token1] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_POUND0A] = ACTIONS(2328), - [anon_sym_POUND0a] = ACTIONS(2328), - [anon_sym_POUND_QMARK] = ACTIONS(2330), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2332), - [anon_sym_POUND_SQUOTE] = ACTIONS(2334), - [anon_sym_SQUOTE] = ACTIONS(2336), - [anon_sym_BQUOTE] = ACTIONS(2338), - [anon_sym_COMMA_AT] = ACTIONS(2340), - [anon_sym_COMMA] = ACTIONS(2342), + [180] = { + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(3144), + [sym_comment] = ACTIONS(3144), + [anon_sym_POUND_] = ACTIONS(3147), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3150), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3150), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3155), + [anon_sym_POUND_CARET] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_RPAREN] = ACTIONS(3164), + [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(3762), - [anon_sym_cl] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2346), - [anon_sym_across] = ACTIONS(2346), - [anon_sym_being] = ACTIONS(2346), - [anon_sym_using] = ACTIONS(2346), - [aux_sym_for_clause_word_token1] = ACTIONS(2348), - [anon_sym_below] = ACTIONS(2346), - [anon_sym_above] = ACTIONS(2346), - [anon_sym_from] = ACTIONS(2346), - [anon_sym_to] = ACTIONS(2346), - [anon_sym_upto] = ACTIONS(2346), - [anon_sym_upfrom] = ACTIONS(2346), - [anon_sym_downto] = ACTIONS(2346), - [anon_sym_downfrom] = ACTIONS(2346), - [anon_sym_on] = ACTIONS(2346), - [anon_sym_by] = ACTIONS(2346), - [anon_sym_then] = ACTIONS(2346), - [anon_sym_EQ] = ACTIONS(2346), - [anon_sym_POUNDP] = ACTIONS(2350), - [anon_sym_POUNDp] = ACTIONS(2350), - [sym_self_referential_reader_macro] = ACTIONS(3764), - [anon_sym_POUND_PLUS] = ACTIONS(2354), - [anon_sym_POUND_DASH] = ACTIONS(2354), - [anon_sym_POUNDC] = ACTIONS(2356), - [anon_sym_POUNDc] = ACTIONS(2356), + [sym_fancy_literal] = ACTIONS(3150), + [anon_sym_cl] = ACTIONS(3166), + [aux_sym_accumulation_verb_token1] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_and] = ACTIONS(3169), + [anon_sym_as] = ACTIONS(3169), + [anon_sym_with] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_until] = ACTIONS(3169), + [anon_sym_repeat] = ACTIONS(3169), + [anon_sym_when] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_unless] = ACTIONS(3169), + [anon_sym_always] = ACTIONS(3169), + [anon_sym_thereis] = ACTIONS(3169), + [anon_sym_never] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3169), + [anon_sym_finally] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_initially] = ACTIONS(3169), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3171), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2441), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2441), - [sym_set_lit] = STATE(2441), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1407), - [sym_comment] = ACTIONS(1407), - [anon_sym_POUND_] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3766), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1415), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3766), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [181] = { + [sym__gap] = STATE(180), + [sym_dis_expr] = STATE(180), + [sym__form] = STATE(2417), + [sym_num_lit] = STATE(2417), + [sym_kwd_lit] = STATE(2417), + [sym_str_lit] = STATE(2417), + [sym_char_lit] = STATE(2417), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2417), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2417), + [sym_set_lit] = STATE(2417), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2417), + [sym_splicing_read_cond_lit] = STATE(2417), + [sym_var_quoting_lit] = STATE(2417), + [sym_quoting_lit] = STATE(2417), + [sym_syn_quoting_lit] = STATE(2417), + [sym_unquote_splicing_lit] = STATE(2417), + [sym_unquoting_lit] = STATE(2417), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2417), + [sym_package_lit] = STATE(2417), + [sym_include_reader_macro] = STATE(2417), + [sym_complex_num_lit] = STATE(2417), + [aux_sym_dis_expr_repeat1] = STATE(180), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3173), + [sym_comment] = ACTIONS(3173), + [anon_sym_POUND_] = ACTIONS(3176), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3179), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3181), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3179), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3184), + [anon_sym_POUND_CARET] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3190), + [anon_sym_RPAREN] = ACTIONS(3193), + [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(3766), - [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(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3768), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3179), + [anon_sym_cl] = ACTIONS(3195), + [aux_sym_accumulation_verb_token1] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_and] = ACTIONS(3198), + [anon_sym_as] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_until] = ACTIONS(3198), + [anon_sym_repeat] = ACTIONS(3198), + [anon_sym_when] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_unless] = ACTIONS(3198), + [anon_sym_always] = ACTIONS(3198), + [anon_sym_thereis] = ACTIONS(3198), + [anon_sym_never] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3198), + [anon_sym_finally] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_initially] = ACTIONS(3198), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3200), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, - [228] = { - [sym__gap] = STATE(243), - [sym_dis_expr] = STATE(243), - [sym__form] = STATE(2440), - [sym_num_lit] = STATE(2440), - [sym_kwd_lit] = STATE(2440), - [sym_str_lit] = STATE(2440), - [sym_char_lit] = STATE(2440), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2440), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2440), - [sym_set_lit] = STATE(2440), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2440), - [sym_splicing_read_cond_lit] = STATE(2440), - [sym_var_quoting_lit] = STATE(2440), - [sym_quoting_lit] = STATE(2440), - [sym_syn_quoting_lit] = STATE(2440), - [sym_unquote_splicing_lit] = STATE(2440), - [sym_unquoting_lit] = STATE(2440), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2440), - [sym_package_lit] = STATE(2440), - [sym_include_reader_macro] = STATE(2440), - [sym_complex_num_lit] = STATE(2440), - [aux_sym_dis_expr_repeat1] = STATE(243), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3770), - [sym_comment] = ACTIONS(3770), - [anon_sym_POUND_] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3773), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1415), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3773), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [182] = { + [sym__gap] = STATE(238), + [sym_dis_expr] = STATE(238), + [sym__form] = STATE(2513), + [sym_num_lit] = STATE(2513), + [sym_kwd_lit] = STATE(2513), + [sym_str_lit] = STATE(2513), + [sym_char_lit] = STATE(2513), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2513), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2513), + [sym_set_lit] = STATE(2513), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2513), + [sym_splicing_read_cond_lit] = STATE(2513), + [sym_var_quoting_lit] = STATE(2513), + [sym_quoting_lit] = STATE(2513), + [sym_syn_quoting_lit] = STATE(2513), + [sym_unquote_splicing_lit] = STATE(2513), + [sym_unquoting_lit] = STATE(2513), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2513), + [sym_package_lit] = STATE(2513), + [sym_include_reader_macro] = STATE(2513), + [sym_complex_num_lit] = STATE(2513), + [aux_sym_dis_expr_repeat1] = STATE(238), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3202), + [sym_comment] = ACTIONS(3202), + [anon_sym_POUND_] = ACTIONS(3111), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3205), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3116), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3205), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3119), + [anon_sym_POUND_CARET] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3125), + [anon_sym_RPAREN] = ACTIONS(3128), + [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(3773), - [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(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3775), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3205), + [anon_sym_cl] = ACTIONS(3130), + [aux_sym_accumulation_verb_token1] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_and] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_with] = ACTIONS(3133), + [anon_sym_do] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_until] = ACTIONS(3133), + [anon_sym_repeat] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_unless] = ACTIONS(3133), + [anon_sym_always] = ACTIONS(3133), + [anon_sym_thereis] = ACTIONS(3133), + [anon_sym_never] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_finally] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_initially] = ACTIONS(3133), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3207), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2391), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2391), - [sym_set_lit] = STATE(2391), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1588), - [sym_comment] = ACTIONS(1588), - [anon_sym_POUND_] = ACTIONS(1562), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3777), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1567), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3777), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1570), - [anon_sym_POUND_CARET] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_RPAREN] = ACTIONS(1579), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [183] = { + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(3209), + [sym_comment] = ACTIONS(3209), + [anon_sym_POUND_] = ACTIONS(3176), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3212), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3181), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3212), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3184), + [anon_sym_POUND_CARET] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3190), + [anon_sym_RPAREN] = ACTIONS(3193), + [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(3777), - [anon_sym_cl] = ACTIONS(1581), - [aux_sym_accumulation_verb_token1] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_and] = ACTIONS(1584), - [anon_sym_as] = ACTIONS(1584), - [anon_sym_with] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_until] = ACTIONS(1584), - [anon_sym_repeat] = ACTIONS(1584), - [anon_sym_when] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_unless] = ACTIONS(1584), - [anon_sym_always] = ACTIONS(1584), - [anon_sym_thereis] = ACTIONS(1584), - [anon_sym_never] = ACTIONS(1584), - [anon_sym_else] = ACTIONS(1584), - [anon_sym_finally] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_initially] = ACTIONS(1584), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3779), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3212), + [anon_sym_cl] = ACTIONS(3195), + [aux_sym_accumulation_verb_token1] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_and] = ACTIONS(3198), + [anon_sym_as] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_until] = ACTIONS(3198), + [anon_sym_repeat] = ACTIONS(3198), + [anon_sym_when] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_unless] = ACTIONS(3198), + [anon_sym_always] = ACTIONS(3198), + [anon_sym_thereis] = ACTIONS(3198), + [anon_sym_never] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3198), + [anon_sym_finally] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_initially] = ACTIONS(3198), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3214), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, - [230] = { - [sym__gap] = STATE(162), - [sym_dis_expr] = STATE(162), - [sym__form] = STATE(2119), - [sym_num_lit] = STATE(2119), - [sym_kwd_lit] = STATE(2119), - [sym_str_lit] = STATE(2119), - [sym_char_lit] = STATE(2119), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2119), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2119), - [sym_set_lit] = STATE(2119), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2119), - [sym_splicing_read_cond_lit] = STATE(2119), - [sym_var_quoting_lit] = STATE(2119), - [sym_quoting_lit] = STATE(2119), - [sym_syn_quoting_lit] = STATE(2119), - [sym_unquote_splicing_lit] = STATE(2119), - [sym_unquoting_lit] = STATE(2119), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2119), - [sym_package_lit] = STATE(2119), - [sym_include_reader_macro] = STATE(2119), - [sym_complex_num_lit] = STATE(2119), - [aux_sym_dis_expr_repeat1] = STATE(162), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3781), - [sym_comment] = ACTIONS(3781), - [anon_sym_POUND_] = ACTIONS(3784), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3787), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3789), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3787), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3792), - [anon_sym_POUND_CARET] = ACTIONS(3795), - [anon_sym_LPAREN] = ACTIONS(3798), - [anon_sym_RPAREN] = ACTIONS(3801), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [184] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2408), + [sym_num_lit] = STATE(2408), + [sym_kwd_lit] = STATE(2408), + [sym_str_lit] = STATE(2408), + [sym_char_lit] = STATE(2408), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2408), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2408), + [sym_set_lit] = STATE(2408), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2408), + [sym_splicing_read_cond_lit] = STATE(2408), + [sym_var_quoting_lit] = STATE(2408), + [sym_quoting_lit] = STATE(2408), + [sym_syn_quoting_lit] = STATE(2408), + [sym_unquote_splicing_lit] = STATE(2408), + [sym_unquoting_lit] = STATE(2408), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2408), + [sym_package_lit] = STATE(2408), + [sym_include_reader_macro] = STATE(2408), + [sym_complex_num_lit] = STATE(2408), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3209), + [sym_comment] = ACTIONS(3209), + [anon_sym_POUND_] = ACTIONS(3176), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3216), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3181), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3216), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3184), + [anon_sym_POUND_CARET] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3190), + [anon_sym_RPAREN] = ACTIONS(3193), + [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(3787), - [anon_sym_cl] = ACTIONS(3803), - [aux_sym_accumulation_verb_token1] = ACTIONS(3806), - [anon_sym_for] = ACTIONS(3806), - [anon_sym_and] = ACTIONS(3806), - [anon_sym_as] = ACTIONS(3806), - [anon_sym_with] = ACTIONS(3806), - [anon_sym_do] = ACTIONS(3806), - [anon_sym_while] = ACTIONS(3806), - [anon_sym_until] = ACTIONS(3806), - [anon_sym_repeat] = ACTIONS(3806), - [anon_sym_when] = ACTIONS(3806), - [anon_sym_if] = ACTIONS(3806), - [anon_sym_unless] = ACTIONS(3806), - [anon_sym_always] = ACTIONS(3806), - [anon_sym_thereis] = ACTIONS(3806), - [anon_sym_never] = ACTIONS(3806), - [anon_sym_else] = ACTIONS(3806), - [anon_sym_finally] = ACTIONS(3806), - [anon_sym_return] = ACTIONS(3806), - [anon_sym_initially] = ACTIONS(3806), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3808), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3216), + [anon_sym_cl] = ACTIONS(3195), + [aux_sym_accumulation_verb_token1] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_and] = ACTIONS(3198), + [anon_sym_as] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_until] = ACTIONS(3198), + [anon_sym_repeat] = ACTIONS(3198), + [anon_sym_when] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_unless] = ACTIONS(3198), + [anon_sym_always] = ACTIONS(3198), + [anon_sym_thereis] = ACTIONS(3198), + [anon_sym_never] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3198), + [anon_sym_finally] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_initially] = ACTIONS(3198), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3218), + [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(234), - [sym_dis_expr] = STATE(234), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2413), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2413), - [sym_set_lit] = STATE(2413), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(234), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3810), - [sym_comment] = ACTIONS(3810), - [anon_sym_POUND_] = ACTIONS(3508), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3813), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3513), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3813), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [185] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3108), + [sym_comment] = ACTIONS(3108), + [anon_sym_POUND_] = ACTIONS(3111), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3220), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3116), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3220), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3119), + [anon_sym_POUND_CARET] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3125), + [anon_sym_RPAREN] = ACTIONS(3128), + [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(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(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3815), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3220), + [anon_sym_cl] = ACTIONS(3130), + [aux_sym_accumulation_verb_token1] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_and] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_with] = ACTIONS(3133), + [anon_sym_do] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_until] = ACTIONS(3133), + [anon_sym_repeat] = ACTIONS(3133), + [anon_sym_when] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_unless] = ACTIONS(3133), + [anon_sym_always] = ACTIONS(3133), + [anon_sym_thereis] = ACTIONS(3133), + [anon_sym_never] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_finally] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_initially] = ACTIONS(3133), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3222), + [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(219), - [sym_dis_expr] = STATE(219), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2057), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2057), - [sym_set_lit] = STATE(2057), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(219), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3817), - [sym_comment] = ACTIONS(3817), - [anon_sym_POUND_] = ACTIONS(3667), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3820), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3672), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3820), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(80), - [anon_sym_POUND_CARET] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym_RPAREN] = ACTIONS(89), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [186] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2386), + [sym_num_lit] = STATE(2386), + [sym_kwd_lit] = STATE(2386), + [sym_str_lit] = STATE(2386), + [sym_char_lit] = STATE(2386), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2386), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2386), + [sym_set_lit] = STATE(2386), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2386), + [sym_splicing_read_cond_lit] = STATE(2386), + [sym_var_quoting_lit] = STATE(2386), + [sym_quoting_lit] = STATE(2386), + [sym_syn_quoting_lit] = STATE(2386), + [sym_unquote_splicing_lit] = STATE(2386), + [sym_unquoting_lit] = STATE(2386), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2386), + [sym_package_lit] = STATE(2386), + [sym_include_reader_macro] = STATE(2386), + [sym_complex_num_lit] = STATE(2386), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3224), + [sym_comment] = ACTIONS(3224), + [anon_sym_POUND_] = ACTIONS(3227), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3230), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3232), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3230), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3235), + [anon_sym_POUND_CARET] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_RPAREN] = ACTIONS(3244), + [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(3820), - [anon_sym_cl] = ACTIONS(3678), - [aux_sym_accumulation_verb_token1] = ACTIONS(112), - [anon_sym_for] = ACTIONS(112), - [anon_sym_and] = ACTIONS(112), - [anon_sym_as] = ACTIONS(112), - [anon_sym_with] = ACTIONS(112), - [anon_sym_do] = ACTIONS(112), - [anon_sym_while] = ACTIONS(112), - [anon_sym_until] = ACTIONS(112), - [anon_sym_repeat] = ACTIONS(112), - [anon_sym_when] = ACTIONS(112), - [anon_sym_if] = ACTIONS(112), - [anon_sym_unless] = ACTIONS(112), - [anon_sym_always] = ACTIONS(112), - [anon_sym_thereis] = ACTIONS(112), - [anon_sym_never] = ACTIONS(112), - [anon_sym_else] = ACTIONS(112), - [anon_sym_finally] = ACTIONS(112), - [anon_sym_return] = ACTIONS(112), - [anon_sym_initially] = ACTIONS(112), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3822), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3230), + [anon_sym_cl] = ACTIONS(3246), + [aux_sym_accumulation_verb_token1] = ACTIONS(3249), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_and] = ACTIONS(3249), + [anon_sym_as] = ACTIONS(3249), + [anon_sym_with] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_until] = ACTIONS(3249), + [anon_sym_repeat] = ACTIONS(3249), + [anon_sym_when] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_unless] = ACTIONS(3249), + [anon_sym_always] = ACTIONS(3249), + [anon_sym_thereis] = ACTIONS(3249), + [anon_sym_never] = ACTIONS(3249), + [anon_sym_else] = ACTIONS(3249), + [anon_sym_finally] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_initially] = ACTIONS(3249), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3251), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2415), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2415), - [sym_set_lit] = STATE(2415), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3505), - [sym_comment] = ACTIONS(3505), - [anon_sym_POUND_] = ACTIONS(3508), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3824), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3513), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3824), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [187] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3253), + [sym_comment] = ACTIONS(3253), + [anon_sym_POUND_] = ACTIONS(3256), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3259), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3259), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3264), + [anon_sym_POUND_CARET] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym_RPAREN] = ACTIONS(3273), + [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(3824), - [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(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3826), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3259), + [anon_sym_cl] = ACTIONS(3275), + [aux_sym_accumulation_verb_token1] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_and] = ACTIONS(3278), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_with] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_until] = ACTIONS(3278), + [anon_sym_repeat] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_unless] = ACTIONS(3278), + [anon_sym_always] = ACTIONS(3278), + [anon_sym_thereis] = ACTIONS(3278), + [anon_sym_never] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_finally] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_initially] = ACTIONS(3278), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3280), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2349), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2349), - [sym_set_lit] = STATE(2349), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3828), - [sym_comment] = ACTIONS(3828), - [anon_sym_POUND_] = ACTIONS(3831), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3834), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3836), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3834), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3839), - [anon_sym_POUND_CARET] = ACTIONS(3842), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_RPAREN] = ACTIONS(3848), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [188] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2125), + [sym_num_lit] = STATE(2125), + [sym_kwd_lit] = STATE(2125), + [sym_str_lit] = STATE(2125), + [sym_char_lit] = STATE(2125), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2125), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2125), + [sym_set_lit] = STATE(2125), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2125), + [sym_splicing_read_cond_lit] = STATE(2125), + [sym_var_quoting_lit] = STATE(2125), + [sym_quoting_lit] = STATE(2125), + [sym_syn_quoting_lit] = STATE(2125), + [sym_unquote_splicing_lit] = STATE(2125), + [sym_unquoting_lit] = STATE(2125), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2125), + [sym_package_lit] = STATE(2125), + [sym_include_reader_macro] = STATE(2125), + [sym_complex_num_lit] = STATE(2125), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3079), + [sym_comment] = ACTIONS(3079), + [anon_sym_POUND_] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3282), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3282), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_POUND_CARET] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_RPAREN] = ACTIONS(3099), + [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(3834), - [anon_sym_cl] = ACTIONS(3850), - [aux_sym_accumulation_verb_token1] = ACTIONS(3853), - [anon_sym_for] = ACTIONS(3853), - [anon_sym_and] = ACTIONS(3853), - [anon_sym_as] = ACTIONS(3853), - [anon_sym_with] = ACTIONS(3853), - [anon_sym_do] = ACTIONS(3853), - [anon_sym_while] = ACTIONS(3853), - [anon_sym_until] = ACTIONS(3853), - [anon_sym_repeat] = ACTIONS(3853), - [anon_sym_when] = ACTIONS(3853), - [anon_sym_if] = ACTIONS(3853), - [anon_sym_unless] = ACTIONS(3853), - [anon_sym_always] = ACTIONS(3853), - [anon_sym_thereis] = ACTIONS(3853), - [anon_sym_never] = ACTIONS(3853), - [anon_sym_else] = ACTIONS(3853), - [anon_sym_finally] = ACTIONS(3853), - [anon_sym_return] = ACTIONS(3853), - [anon_sym_initially] = ACTIONS(3853), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3855), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3282), + [anon_sym_cl] = ACTIONS(3101), + [aux_sym_accumulation_verb_token1] = ACTIONS(3104), + [anon_sym_for] = ACTIONS(3104), + [anon_sym_and] = ACTIONS(3104), + [anon_sym_as] = ACTIONS(3104), + [anon_sym_with] = ACTIONS(3104), + [anon_sym_do] = ACTIONS(3104), + [anon_sym_while] = ACTIONS(3104), + [anon_sym_until] = ACTIONS(3104), + [anon_sym_repeat] = ACTIONS(3104), + [anon_sym_when] = ACTIONS(3104), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_unless] = ACTIONS(3104), + [anon_sym_always] = ACTIONS(3104), + [anon_sym_thereis] = ACTIONS(3104), + [anon_sym_never] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3104), + [anon_sym_finally] = ACTIONS(3104), + [anon_sym_return] = ACTIONS(3104), + [anon_sym_initially] = ACTIONS(3104), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3284), + [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(165), - [sym_dis_expr] = STATE(165), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2116), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2116), - [sym_set_lit] = STATE(2116), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(165), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3857), - [sym_comment] = ACTIONS(3857), - [anon_sym_POUND_] = ACTIONS(3700), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3860), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3705), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3860), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3708), - [anon_sym_POUND_CARET] = ACTIONS(3711), - [anon_sym_LPAREN] = ACTIONS(3714), - [anon_sym_RPAREN] = ACTIONS(3717), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [189] = { + [sym__gap] = STATE(225), + [sym_dis_expr] = STATE(225), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(225), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3286), + [sym_comment] = ACTIONS(3286), + [anon_sym_POUND_] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3289), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3087), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3289), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_POUND_CARET] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_RPAREN] = ACTIONS(3099), + [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(3860), - [anon_sym_cl] = ACTIONS(3719), - [aux_sym_accumulation_verb_token1] = ACTIONS(3722), - [anon_sym_for] = ACTIONS(3722), - [anon_sym_and] = ACTIONS(3722), - [anon_sym_as] = ACTIONS(3722), - [anon_sym_with] = ACTIONS(3722), - [anon_sym_do] = ACTIONS(3722), - [anon_sym_while] = ACTIONS(3722), - [anon_sym_until] = ACTIONS(3722), - [anon_sym_repeat] = ACTIONS(3722), - [anon_sym_when] = ACTIONS(3722), - [anon_sym_if] = ACTIONS(3722), - [anon_sym_unless] = ACTIONS(3722), - [anon_sym_always] = ACTIONS(3722), - [anon_sym_thereis] = ACTIONS(3722), - [anon_sym_never] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(3722), - [anon_sym_finally] = ACTIONS(3722), - [anon_sym_return] = ACTIONS(3722), - [anon_sym_initially] = ACTIONS(3722), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3862), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3289), + [anon_sym_cl] = ACTIONS(3101), + [aux_sym_accumulation_verb_token1] = ACTIONS(3104), + [anon_sym_for] = ACTIONS(3104), + [anon_sym_and] = ACTIONS(3104), + [anon_sym_as] = ACTIONS(3104), + [anon_sym_with] = ACTIONS(3104), + [anon_sym_do] = ACTIONS(3104), + [anon_sym_while] = ACTIONS(3104), + [anon_sym_until] = ACTIONS(3104), + [anon_sym_repeat] = ACTIONS(3104), + [anon_sym_when] = ACTIONS(3104), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_unless] = ACTIONS(3104), + [anon_sym_always] = ACTIONS(3104), + [anon_sym_thereis] = ACTIONS(3104), + [anon_sym_never] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3104), + [anon_sym_finally] = ACTIONS(3104), + [anon_sym_return] = ACTIONS(3104), + [anon_sym_initially] = ACTIONS(3104), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3291), + [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(59), - [sym_dis_expr] = STATE(59), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2390), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2390), - [sym_set_lit] = STATE(2390), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(59), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3864), - [sym_comment] = ACTIONS(3864), - [anon_sym_POUND_] = ACTIONS(1562), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3867), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1567), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3867), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(1570), - [anon_sym_POUND_CARET] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_RPAREN] = ACTIONS(1579), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [190] = { + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(3253), + [sym_comment] = ACTIONS(3253), + [anon_sym_POUND_] = ACTIONS(3256), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3293), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3261), + [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(3264), + [anon_sym_POUND_CARET] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym_RPAREN] = ACTIONS(3273), + [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(3867), - [anon_sym_cl] = ACTIONS(1581), - [aux_sym_accumulation_verb_token1] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_and] = ACTIONS(1584), - [anon_sym_as] = ACTIONS(1584), - [anon_sym_with] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_until] = ACTIONS(1584), - [anon_sym_repeat] = ACTIONS(1584), - [anon_sym_when] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_unless] = ACTIONS(1584), - [anon_sym_always] = ACTIONS(1584), - [anon_sym_thereis] = ACTIONS(1584), - [anon_sym_never] = ACTIONS(1584), - [anon_sym_else] = ACTIONS(1584), - [anon_sym_finally] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_initially] = ACTIONS(1584), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3869), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3293), + [anon_sym_cl] = ACTIONS(3275), + [aux_sym_accumulation_verb_token1] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_and] = ACTIONS(3278), + [anon_sym_as] = ACTIONS(3278), + [anon_sym_with] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_until] = ACTIONS(3278), + [anon_sym_repeat] = ACTIONS(3278), + [anon_sym_when] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_unless] = ACTIONS(3278), + [anon_sym_always] = ACTIONS(3278), + [anon_sym_thereis] = ACTIONS(3278), + [anon_sym_never] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_finally] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_initially] = ACTIONS(3278), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3295), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2417), - [sym_num_lit] = STATE(2417), - [sym_kwd_lit] = STATE(2417), - [sym_str_lit] = STATE(2417), - [sym_char_lit] = STATE(2417), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2417), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2417), - [sym_set_lit] = STATE(2417), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2417), - [sym_splicing_read_cond_lit] = STATE(2417), - [sym_var_quoting_lit] = STATE(2417), - [sym_quoting_lit] = STATE(2417), - [sym_syn_quoting_lit] = STATE(2417), - [sym_unquote_splicing_lit] = STATE(2417), - [sym_unquoting_lit] = STATE(2417), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2417), - [sym_package_lit] = STATE(2417), - [sym_include_reader_macro] = STATE(2417), - [sym_complex_num_lit] = STATE(2417), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2851), - [sym_comment] = ACTIONS(2851), - [anon_sym_POUND_] = ACTIONS(2854), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3871), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3871), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2862), - [anon_sym_POUND_CARET] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_RPAREN] = ACTIONS(2871), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [191] = { + [sym__gap] = STATE(123), + [sym_dis_expr] = STATE(123), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(123), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3297), + [sym_comment] = ACTIONS(3297), + [anon_sym_POUND_] = ACTIONS(2274), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3300), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2279), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3300), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_POUND_CARET] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_RPAREN] = ACTIONS(2291), + [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(3871), - [anon_sym_cl] = ACTIONS(2873), - [aux_sym_accumulation_verb_token1] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_and] = ACTIONS(2876), - [anon_sym_as] = ACTIONS(2876), - [anon_sym_with] = ACTIONS(2876), - [anon_sym_do] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [anon_sym_until] = ACTIONS(2876), - [anon_sym_repeat] = ACTIONS(2876), - [anon_sym_when] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_unless] = ACTIONS(2876), - [anon_sym_always] = ACTIONS(2876), - [anon_sym_thereis] = ACTIONS(2876), - [anon_sym_never] = ACTIONS(2876), - [anon_sym_else] = ACTIONS(2876), - [anon_sym_finally] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_initially] = ACTIONS(2876), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3873), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3300), + [anon_sym_cl] = ACTIONS(2293), + [aux_sym_accumulation_verb_token1] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_and] = ACTIONS(2296), + [anon_sym_as] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_until] = ACTIONS(2296), + [anon_sym_repeat] = ACTIONS(2296), + [anon_sym_when] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_unless] = ACTIONS(2296), + [anon_sym_always] = ACTIONS(2296), + [anon_sym_thereis] = ACTIONS(2296), + [anon_sym_never] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_finally] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_initially] = ACTIONS(2296), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3302), + [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(144), - [sym_dis_expr] = STATE(144), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2419), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2419), - [sym_set_lit] = STATE(2419), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(144), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3875), - [sym_comment] = ACTIONS(3875), - [anon_sym_POUND_] = ACTIONS(2854), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3878), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3878), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2862), - [anon_sym_POUND_CARET] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_RPAREN] = ACTIONS(2871), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [192] = { + [sym__gap] = STATE(110), + [sym_dis_expr] = STATE(110), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(110), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3304), + [sym_comment] = ACTIONS(3304), + [anon_sym_POUND_] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3310), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3312), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3310), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3315), + [anon_sym_POUND_CARET] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_RPAREN] = ACTIONS(3324), + [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(2873), - [aux_sym_accumulation_verb_token1] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_and] = ACTIONS(2876), - [anon_sym_as] = ACTIONS(2876), - [anon_sym_with] = ACTIONS(2876), - [anon_sym_do] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [anon_sym_until] = ACTIONS(2876), - [anon_sym_repeat] = ACTIONS(2876), - [anon_sym_when] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_unless] = ACTIONS(2876), - [anon_sym_always] = ACTIONS(2876), - [anon_sym_thereis] = ACTIONS(2876), - [anon_sym_never] = ACTIONS(2876), - [anon_sym_else] = ACTIONS(2876), - [anon_sym_finally] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_initially] = ACTIONS(2876), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3880), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3310), + [anon_sym_cl] = ACTIONS(3326), + [aux_sym_accumulation_verb_token1] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3329), + [anon_sym_and] = ACTIONS(3329), + [anon_sym_as] = ACTIONS(3329), + [anon_sym_with] = ACTIONS(3329), + [anon_sym_do] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3329), + [anon_sym_until] = ACTIONS(3329), + [anon_sym_repeat] = ACTIONS(3329), + [anon_sym_when] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_unless] = ACTIONS(3329), + [anon_sym_always] = ACTIONS(3329), + [anon_sym_thereis] = ACTIONS(3329), + [anon_sym_never] = ACTIONS(3329), + [anon_sym_else] = ACTIONS(3329), + [anon_sym_finally] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3329), + [anon_sym_initially] = ACTIONS(3329), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3331), + [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(246), - [sym_dis_expr] = STATE(246), - [sym__form] = STATE(2438), - [sym_num_lit] = STATE(2438), - [sym_kwd_lit] = STATE(2438), - [sym_str_lit] = STATE(2438), - [sym_char_lit] = STATE(2438), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2438), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2438), - [sym_set_lit] = STATE(2438), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2438), - [sym_splicing_read_cond_lit] = STATE(2438), - [sym_var_quoting_lit] = STATE(2438), - [sym_quoting_lit] = STATE(2438), - [sym_syn_quoting_lit] = STATE(2438), - [sym_unquote_splicing_lit] = STATE(2438), - [sym_unquoting_lit] = STATE(2438), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2438), - [sym_package_lit] = STATE(2438), - [sym_include_reader_macro] = STATE(2438), - [sym_complex_num_lit] = STATE(2438), - [aux_sym_dis_expr_repeat1] = STATE(246), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3882), - [sym_comment] = ACTIONS(3882), - [anon_sym_POUND_] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3885), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1415), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3885), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [193] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2309), + [sym_num_lit] = STATE(2309), + [sym_kwd_lit] = STATE(2309), + [sym_str_lit] = STATE(2309), + [sym_char_lit] = STATE(2309), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2309), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2309), + [sym_set_lit] = STATE(2309), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2309), + [sym_splicing_read_cond_lit] = STATE(2309), + [sym_var_quoting_lit] = STATE(2309), + [sym_quoting_lit] = STATE(2309), + [sym_syn_quoting_lit] = STATE(2309), + [sym_unquote_splicing_lit] = STATE(2309), + [sym_unquoting_lit] = STATE(2309), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2309), + [sym_package_lit] = STATE(2309), + [sym_include_reader_macro] = STATE(2309), + [sym_complex_num_lit] = STATE(2309), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3333), + [sym_comment] = ACTIONS(3333), + [anon_sym_POUND_] = ACTIONS(3336), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3339), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3341), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3339), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3344), + [anon_sym_POUND_CARET] = ACTIONS(3347), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_RPAREN] = ACTIONS(3353), + [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(3885), - [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(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3887), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3339), + [anon_sym_cl] = ACTIONS(3355), + [aux_sym_accumulation_verb_token1] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_and] = ACTIONS(3358), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_with] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_until] = ACTIONS(3358), + [anon_sym_repeat] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_unless] = ACTIONS(3358), + [anon_sym_always] = ACTIONS(3358), + [anon_sym_thereis] = ACTIONS(3358), + [anon_sym_never] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_finally] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_initially] = ACTIONS(3358), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3360), + [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(168), - [sym_dis_expr] = STATE(168), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2114), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2114), - [sym_set_lit] = STATE(2114), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(168), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3889), - [sym_comment] = ACTIONS(3889), - [anon_sym_POUND_] = ACTIONS(3700), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3892), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3705), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3892), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3708), - [anon_sym_POUND_CARET] = ACTIONS(3711), - [anon_sym_LPAREN] = ACTIONS(3714), - [anon_sym_RPAREN] = ACTIONS(3717), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [194] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2511), + [sym_num_lit] = STATE(2511), + [sym_kwd_lit] = STATE(2511), + [sym_str_lit] = STATE(2511), + [sym_char_lit] = STATE(2511), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2511), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2511), + [sym_set_lit] = STATE(2511), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2511), + [sym_splicing_read_cond_lit] = STATE(2511), + [sym_var_quoting_lit] = STATE(2511), + [sym_quoting_lit] = STATE(2511), + [sym_syn_quoting_lit] = STATE(2511), + [sym_unquote_splicing_lit] = STATE(2511), + [sym_unquoting_lit] = STATE(2511), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2511), + [sym_package_lit] = STATE(2511), + [sym_include_reader_macro] = STATE(2511), + [sym_complex_num_lit] = STATE(2511), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2144), + [sym_comment] = ACTIONS(2144), + [anon_sym_POUND_] = ACTIONS(2118), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3362), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2123), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3362), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_POUND_CARET] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2132), + [anon_sym_RPAREN] = ACTIONS(2135), + [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(3892), - [anon_sym_cl] = ACTIONS(3719), - [aux_sym_accumulation_verb_token1] = ACTIONS(3722), - [anon_sym_for] = ACTIONS(3722), - [anon_sym_and] = ACTIONS(3722), - [anon_sym_as] = ACTIONS(3722), - [anon_sym_with] = ACTIONS(3722), - [anon_sym_do] = ACTIONS(3722), - [anon_sym_while] = ACTIONS(3722), - [anon_sym_until] = ACTIONS(3722), - [anon_sym_repeat] = ACTIONS(3722), - [anon_sym_when] = ACTIONS(3722), - [anon_sym_if] = ACTIONS(3722), - [anon_sym_unless] = ACTIONS(3722), - [anon_sym_always] = ACTIONS(3722), - [anon_sym_thereis] = ACTIONS(3722), - [anon_sym_never] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(3722), - [anon_sym_finally] = ACTIONS(3722), - [anon_sym_return] = ACTIONS(3722), - [anon_sym_initially] = ACTIONS(3722), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3894), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3362), + [anon_sym_cl] = ACTIONS(2137), + [aux_sym_accumulation_verb_token1] = ACTIONS(2140), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_and] = ACTIONS(2140), + [anon_sym_as] = ACTIONS(2140), + [anon_sym_with] = ACTIONS(2140), + [anon_sym_do] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2140), + [anon_sym_until] = ACTIONS(2140), + [anon_sym_repeat] = ACTIONS(2140), + [anon_sym_when] = ACTIONS(2140), + [anon_sym_if] = ACTIONS(2140), + [anon_sym_unless] = ACTIONS(2140), + [anon_sym_always] = ACTIONS(2140), + [anon_sym_thereis] = ACTIONS(2140), + [anon_sym_never] = ACTIONS(2140), + [anon_sym_else] = ACTIONS(2140), + [anon_sym_finally] = ACTIONS(2140), + [anon_sym_return] = ACTIONS(2140), + [anon_sym_initially] = ACTIONS(2140), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3364), + [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(151), - [sym_dis_expr] = STATE(151), - [sym__form] = STATE(2033), - [sym_num_lit] = STATE(2033), - [sym_kwd_lit] = STATE(2033), - [sym_str_lit] = STATE(2033), - [sym_char_lit] = STATE(2033), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2033), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2033), - [sym_set_lit] = STATE(2033), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2033), - [sym_splicing_read_cond_lit] = STATE(2033), - [sym_var_quoting_lit] = STATE(2033), - [sym_quoting_lit] = STATE(2033), - [sym_syn_quoting_lit] = STATE(2033), - [sym_unquote_splicing_lit] = STATE(2033), - [sym_unquoting_lit] = STATE(2033), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2033), - [sym_package_lit] = STATE(2033), - [sym_include_reader_macro] = STATE(2033), - [sym_complex_num_lit] = STATE(2033), - [aux_sym_dis_expr_repeat1] = STATE(151), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3896), - [sym_comment] = ACTIONS(3896), - [anon_sym_POUND_] = ACTIONS(3899), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3902), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3904), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3902), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(659), - [anon_sym_POUND_CARET] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(3907), - [anon_sym_RPAREN] = ACTIONS(668), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [195] = { + [sym__gap] = STATE(114), + [sym_dis_expr] = STATE(114), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(114), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3366), + [sym_comment] = ACTIONS(3366), + [anon_sym_POUND_] = ACTIONS(3369), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3372), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3374), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3372), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3377), + [anon_sym_POUND_CARET] = ACTIONS(3380), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_RPAREN] = ACTIONS(3386), + [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(3902), - [anon_sym_cl] = ACTIONS(3910), - [aux_sym_accumulation_verb_token1] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_and] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_with] = ACTIONS(675), - [anon_sym_do] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [anon_sym_until] = ACTIONS(675), - [anon_sym_repeat] = ACTIONS(675), - [anon_sym_when] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_unless] = ACTIONS(675), - [anon_sym_always] = ACTIONS(675), - [anon_sym_thereis] = ACTIONS(675), - [anon_sym_never] = ACTIONS(675), - [anon_sym_else] = ACTIONS(675), - [anon_sym_finally] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_initially] = ACTIONS(675), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3913), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3372), + [anon_sym_cl] = ACTIONS(3388), + [aux_sym_accumulation_verb_token1] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_and] = ACTIONS(3391), + [anon_sym_as] = ACTIONS(3391), + [anon_sym_with] = ACTIONS(3391), + [anon_sym_do] = ACTIONS(3391), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_until] = ACTIONS(3391), + [anon_sym_repeat] = ACTIONS(3391), + [anon_sym_when] = ACTIONS(3391), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_unless] = ACTIONS(3391), + [anon_sym_always] = ACTIONS(3391), + [anon_sym_thereis] = ACTIONS(3391), + [anon_sym_never] = ACTIONS(3391), + [anon_sym_else] = ACTIONS(3391), + [anon_sym_finally] = ACTIONS(3391), + [anon_sym_return] = ACTIONS(3391), + [anon_sym_initially] = ACTIONS(3391), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3393), + [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(77), - [sym_dis_expr] = STATE(77), + [196] = { + [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), [sym_list_lit] = STATE(2353), - [sym__bare_list_lit] = STATE(2536), + [sym__bare_list_lit] = STATE(2648), [sym_vec_lit] = STATE(2353), [sym_set_lit] = STATE(2353), - [sym__bare_set_lit] = STATE(2537), + [sym__bare_set_lit] = STATE(2647), [sym_read_cond_lit] = STATE(2353), [sym_splicing_read_cond_lit] = STATE(2353), [sym_var_quoting_lit] = STATE(2353), @@ -31276,343 +27340,343 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(2353), [sym_unquote_splicing_lit] = STATE(2353), [sym_unquoting_lit] = STATE(2353), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), + [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(77), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3915), - [sym_comment] = ACTIONS(3915), - [anon_sym_POUND_] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3918), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3918), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2804), - [anon_sym_POUND_CARET] = ACTIONS(2807), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_RPAREN] = ACTIONS(2813), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3395), + [sym_comment] = ACTIONS(3395), + [anon_sym_POUND_] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3398), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3312), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3398), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3315), + [anon_sym_POUND_CARET] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_RPAREN] = ACTIONS(3324), + [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(3918), - [anon_sym_cl] = ACTIONS(2815), - [aux_sym_accumulation_verb_token1] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_and] = ACTIONS(2818), - [anon_sym_as] = ACTIONS(2818), - [anon_sym_with] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_until] = ACTIONS(2818), - [anon_sym_repeat] = ACTIONS(2818), - [anon_sym_when] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_unless] = ACTIONS(2818), - [anon_sym_always] = ACTIONS(2818), - [anon_sym_thereis] = ACTIONS(2818), - [anon_sym_never] = ACTIONS(2818), - [anon_sym_else] = ACTIONS(2818), - [anon_sym_finally] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_initially] = ACTIONS(2818), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3920), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3398), + [anon_sym_cl] = ACTIONS(3326), + [aux_sym_accumulation_verb_token1] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3329), + [anon_sym_and] = ACTIONS(3329), + [anon_sym_as] = ACTIONS(3329), + [anon_sym_with] = ACTIONS(3329), + [anon_sym_do] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3329), + [anon_sym_until] = ACTIONS(3329), + [anon_sym_repeat] = ACTIONS(3329), + [anon_sym_when] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_unless] = ACTIONS(3329), + [anon_sym_always] = ACTIONS(3329), + [anon_sym_thereis] = ACTIONS(3329), + [anon_sym_never] = ACTIONS(3329), + [anon_sym_else] = ACTIONS(3329), + [anon_sym_finally] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3329), + [anon_sym_initially] = ACTIONS(3329), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3400), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2364), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2364), - [sym_set_lit] = STATE(2364), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2992), - [sym_comment] = ACTIONS(2992), - [anon_sym_POUND_] = ACTIONS(2995), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3922), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3000), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3922), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3003), - [anon_sym_POUND_CARET] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3009), - [anon_sym_RPAREN] = ACTIONS(3012), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [197] = { + [sym__gap] = STATE(117), + [sym_dis_expr] = STATE(117), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(117), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3402), + [sym_comment] = ACTIONS(3402), + [anon_sym_POUND_] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3405), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3312), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3405), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3315), + [anon_sym_POUND_CARET] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_RPAREN] = ACTIONS(3324), + [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(3922), - [anon_sym_cl] = ACTIONS(3014), - [aux_sym_accumulation_verb_token1] = ACTIONS(3017), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_and] = ACTIONS(3017), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_with] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_until] = ACTIONS(3017), - [anon_sym_repeat] = ACTIONS(3017), - [anon_sym_when] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_unless] = ACTIONS(3017), - [anon_sym_always] = ACTIONS(3017), - [anon_sym_thereis] = ACTIONS(3017), - [anon_sym_never] = ACTIONS(3017), - [anon_sym_else] = ACTIONS(3017), - [anon_sym_finally] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_initially] = ACTIONS(3017), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3924), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3405), + [anon_sym_cl] = ACTIONS(3326), + [aux_sym_accumulation_verb_token1] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3329), + [anon_sym_and] = ACTIONS(3329), + [anon_sym_as] = ACTIONS(3329), + [anon_sym_with] = ACTIONS(3329), + [anon_sym_do] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3329), + [anon_sym_until] = ACTIONS(3329), + [anon_sym_repeat] = ACTIONS(3329), + [anon_sym_when] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_unless] = ACTIONS(3329), + [anon_sym_always] = ACTIONS(3329), + [anon_sym_thereis] = ACTIONS(3329), + [anon_sym_never] = ACTIONS(3329), + [anon_sym_else] = ACTIONS(3329), + [anon_sym_finally] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3329), + [anon_sym_initially] = ACTIONS(3329), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3407), + [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(171), - [sym_dis_expr] = STATE(171), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2111), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2111), - [sym_set_lit] = STATE(2111), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(171), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3926), - [sym_comment] = ACTIONS(3926), - [anon_sym_POUND_] = ACTIONS(3784), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3929), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3789), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3929), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3792), - [anon_sym_POUND_CARET] = ACTIONS(3795), - [anon_sym_LPAREN] = ACTIONS(3798), - [anon_sym_RPAREN] = ACTIONS(3801), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [198] = { + [sym__gap] = STATE(145), + [sym_dis_expr] = STATE(145), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(145), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3409), + [sym_comment] = ACTIONS(3409), + [anon_sym_POUND_] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3412), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1487), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3412), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym_POUND_CARET] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1499), + [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(3929), - [anon_sym_cl] = ACTIONS(3803), - [aux_sym_accumulation_verb_token1] = ACTIONS(3806), - [anon_sym_for] = ACTIONS(3806), - [anon_sym_and] = ACTIONS(3806), - [anon_sym_as] = ACTIONS(3806), - [anon_sym_with] = ACTIONS(3806), - [anon_sym_do] = ACTIONS(3806), - [anon_sym_while] = ACTIONS(3806), - [anon_sym_until] = ACTIONS(3806), - [anon_sym_repeat] = ACTIONS(3806), - [anon_sym_when] = ACTIONS(3806), - [anon_sym_if] = ACTIONS(3806), - [anon_sym_unless] = ACTIONS(3806), - [anon_sym_always] = ACTIONS(3806), - [anon_sym_thereis] = ACTIONS(3806), - [anon_sym_never] = ACTIONS(3806), - [anon_sym_else] = ACTIONS(3806), - [anon_sym_finally] = ACTIONS(3806), - [anon_sym_return] = ACTIONS(3806), - [anon_sym_initially] = ACTIONS(3806), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3931), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3412), + [anon_sym_cl] = ACTIONS(1501), + [aux_sym_accumulation_verb_token1] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_and] = ACTIONS(1504), + [anon_sym_as] = ACTIONS(1504), + [anon_sym_with] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_until] = ACTIONS(1504), + [anon_sym_repeat] = ACTIONS(1504), + [anon_sym_when] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_unless] = ACTIONS(1504), + [anon_sym_always] = ACTIONS(1504), + [anon_sym_thereis] = ACTIONS(1504), + [anon_sym_never] = ACTIONS(1504), + [anon_sym_else] = ACTIONS(1504), + [anon_sym_finally] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_initially] = ACTIONS(1504), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3414), + [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(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2110), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2110), - [sym_set_lit] = STATE(2110), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3697), - [sym_comment] = ACTIONS(3697), - [anon_sym_POUND_] = ACTIONS(3700), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3933), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3705), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3933), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3708), - [anon_sym_POUND_CARET] = ACTIONS(3711), - [anon_sym_LPAREN] = ACTIONS(3714), - [anon_sym_RPAREN] = ACTIONS(3717), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [199] = { + [sym__gap] = STATE(120), + [sym_dis_expr] = STATE(120), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(120), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3416), + [sym_comment] = ACTIONS(3416), + [anon_sym_POUND_] = ACTIONS(3419), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3422), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3424), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3422), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3427), + [anon_sym_POUND_CARET] = ACTIONS(3430), + [anon_sym_LPAREN] = ACTIONS(3433), + [anon_sym_RPAREN] = ACTIONS(3436), + [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(3719), - [aux_sym_accumulation_verb_token1] = ACTIONS(3722), - [anon_sym_for] = ACTIONS(3722), - [anon_sym_and] = ACTIONS(3722), - [anon_sym_as] = ACTIONS(3722), - [anon_sym_with] = ACTIONS(3722), - [anon_sym_do] = ACTIONS(3722), - [anon_sym_while] = ACTIONS(3722), - [anon_sym_until] = ACTIONS(3722), - [anon_sym_repeat] = ACTIONS(3722), - [anon_sym_when] = ACTIONS(3722), - [anon_sym_if] = ACTIONS(3722), - [anon_sym_unless] = ACTIONS(3722), - [anon_sym_always] = ACTIONS(3722), - [anon_sym_thereis] = ACTIONS(3722), - [anon_sym_never] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(3722), - [anon_sym_finally] = ACTIONS(3722), - [anon_sym_return] = ACTIONS(3722), - [anon_sym_initially] = ACTIONS(3722), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3935), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3422), + [anon_sym_cl] = ACTIONS(3438), + [aux_sym_accumulation_verb_token1] = ACTIONS(3441), + [anon_sym_for] = ACTIONS(3441), + [anon_sym_and] = ACTIONS(3441), + [anon_sym_as] = ACTIONS(3441), + [anon_sym_with] = ACTIONS(3441), + [anon_sym_do] = ACTIONS(3441), + [anon_sym_while] = ACTIONS(3441), + [anon_sym_until] = ACTIONS(3441), + [anon_sym_repeat] = ACTIONS(3441), + [anon_sym_when] = ACTIONS(3441), + [anon_sym_if] = ACTIONS(3441), + [anon_sym_unless] = ACTIONS(3441), + [anon_sym_always] = ACTIONS(3441), + [anon_sym_thereis] = ACTIONS(3441), + [anon_sym_never] = ACTIONS(3441), + [anon_sym_else] = ACTIONS(3441), + [anon_sym_finally] = ACTIONS(3441), + [anon_sym_return] = ACTIONS(3441), + [anon_sym_initially] = ACTIONS(3441), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3443), + [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(982), - [sym_dis_expr] = STATE(982), + [200] = { + [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), [sym_list_lit] = STATE(2362), - [sym__bare_list_lit] = STATE(2536), + [sym__bare_list_lit] = STATE(2648), [sym_vec_lit] = STATE(2362), [sym_set_lit] = STATE(2362), - [sym__bare_set_lit] = STATE(2537), + [sym__bare_set_lit] = STATE(2647), [sym_read_cond_lit] = STATE(2362), [sym_splicing_read_cond_lit] = STATE(2362), [sym_var_quoting_lit] = STATE(2362), @@ -31620,1887 +27684,6607 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(2362), [sym_unquote_splicing_lit] = STATE(2362), [sym_unquoting_lit] = STATE(2362), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), + [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(2992), - [sym_comment] = ACTIONS(2992), - [anon_sym_POUND_] = ACTIONS(2995), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3937), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3000), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3937), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3003), - [anon_sym_POUND_CARET] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3009), - [anon_sym_RPAREN] = ACTIONS(3012), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3937), - [anon_sym_cl] = ACTIONS(3014), - [aux_sym_accumulation_verb_token1] = ACTIONS(3017), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_and] = ACTIONS(3017), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_with] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_until] = ACTIONS(3017), - [anon_sym_repeat] = ACTIONS(3017), - [anon_sym_when] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_unless] = ACTIONS(3017), - [anon_sym_always] = ACTIONS(3017), - [anon_sym_thereis] = ACTIONS(3017), - [anon_sym_never] = ACTIONS(3017), - [anon_sym_else] = ACTIONS(3017), - [anon_sym_finally] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_initially] = ACTIONS(3017), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3939), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [247] = { - [sym__gap] = STATE(174), - [sym_dis_expr] = STATE(174), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2108), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2108), - [sym_set_lit] = STATE(2108), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(174), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3941), - [sym_comment] = ACTIONS(3941), - [anon_sym_POUND_] = ACTIONS(3700), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3944), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3705), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3944), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3708), - [anon_sym_POUND_CARET] = ACTIONS(3711), - [anon_sym_LPAREN] = ACTIONS(3714), - [anon_sym_RPAREN] = ACTIONS(3717), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3944), - [anon_sym_cl] = ACTIONS(3719), - [aux_sym_accumulation_verb_token1] = ACTIONS(3722), - [anon_sym_for] = ACTIONS(3722), - [anon_sym_and] = ACTIONS(3722), - [anon_sym_as] = ACTIONS(3722), - [anon_sym_with] = ACTIONS(3722), - [anon_sym_do] = ACTIONS(3722), - [anon_sym_while] = ACTIONS(3722), - [anon_sym_until] = ACTIONS(3722), - [anon_sym_repeat] = ACTIONS(3722), - [anon_sym_when] = ACTIONS(3722), - [anon_sym_if] = ACTIONS(3722), - [anon_sym_unless] = ACTIONS(3722), - [anon_sym_always] = ACTIONS(3722), - [anon_sym_thereis] = ACTIONS(3722), - [anon_sym_never] = ACTIONS(3722), - [anon_sym_else] = ACTIONS(3722), - [anon_sym_finally] = ACTIONS(3722), - [anon_sym_return] = ACTIONS(3722), - [anon_sym_initially] = ACTIONS(3722), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3946), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [248] = { - [sym__gap] = STATE(206), - [sym_dis_expr] = STATE(206), - [sym__form] = STATE(2068), - [sym_num_lit] = STATE(2068), - [sym_kwd_lit] = STATE(2068), - [sym_str_lit] = STATE(2068), - [sym_char_lit] = STATE(2068), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2068), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2068), - [sym_set_lit] = STATE(2068), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2068), - [sym_splicing_read_cond_lit] = STATE(2068), - [sym_var_quoting_lit] = STATE(2068), - [sym_quoting_lit] = STATE(2068), - [sym_syn_quoting_lit] = STATE(2068), - [sym_unquote_splicing_lit] = STATE(2068), - [sym_unquoting_lit] = STATE(2068), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2068), - [sym_package_lit] = STATE(2068), - [sym_include_reader_macro] = STATE(2068), - [sym_complex_num_lit] = STATE(2068), - [aux_sym_dis_expr_repeat1] = STATE(206), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3948), - [sym_comment] = ACTIONS(3948), - [anon_sym_POUND_] = ACTIONS(3143), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3951), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3951), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3151), - [anon_sym_POUND_CARET] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_RPAREN] = ACTIONS(3160), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3445), + [sym_comment] = ACTIONS(3445), + [anon_sym_POUND_] = ACTIONS(3448), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3451), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3453), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3451), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3456), + [anon_sym_POUND_CARET] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_RPAREN] = ACTIONS(3465), + [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(3951), - [anon_sym_cl] = ACTIONS(3162), - [aux_sym_accumulation_verb_token1] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_and] = ACTIONS(3165), - [anon_sym_as] = ACTIONS(3165), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_until] = ACTIONS(3165), - [anon_sym_repeat] = ACTIONS(3165), - [anon_sym_when] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_unless] = ACTIONS(3165), - [anon_sym_always] = ACTIONS(3165), - [anon_sym_thereis] = ACTIONS(3165), - [anon_sym_never] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_finally] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_initially] = ACTIONS(3165), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3953), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3451), + [anon_sym_cl] = ACTIONS(3467), + [aux_sym_accumulation_verb_token1] = ACTIONS(3470), + [anon_sym_for] = ACTIONS(3470), + [anon_sym_and] = ACTIONS(3470), + [anon_sym_as] = ACTIONS(3470), + [anon_sym_with] = ACTIONS(3470), + [anon_sym_do] = ACTIONS(3470), + [anon_sym_while] = ACTIONS(3470), + [anon_sym_until] = ACTIONS(3470), + [anon_sym_repeat] = ACTIONS(3470), + [anon_sym_when] = ACTIONS(3470), + [anon_sym_if] = ACTIONS(3470), + [anon_sym_unless] = ACTIONS(3470), + [anon_sym_always] = ACTIONS(3470), + [anon_sym_thereis] = ACTIONS(3470), + [anon_sym_never] = ACTIONS(3470), + [anon_sym_else] = ACTIONS(3470), + [anon_sym_finally] = ACTIONS(3470), + [anon_sym_return] = ACTIONS(3470), + [anon_sym_initially] = ACTIONS(3470), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3472), + [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(203), - [sym_dis_expr] = STATE(203), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2423), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2423), - [sym_set_lit] = STATE(2423), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(203), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3955), - [sym_comment] = ACTIONS(3955), - [anon_sym_POUND_] = ACTIONS(2854), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3958), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3958), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(2862), - [anon_sym_POUND_CARET] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_RPAREN] = ACTIONS(2871), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(3958), - [anon_sym_cl] = ACTIONS(2873), - [aux_sym_accumulation_verb_token1] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_and] = ACTIONS(2876), - [anon_sym_as] = ACTIONS(2876), - [anon_sym_with] = ACTIONS(2876), - [anon_sym_do] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [anon_sym_until] = ACTIONS(2876), - [anon_sym_repeat] = ACTIONS(2876), - [anon_sym_when] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_unless] = ACTIONS(2876), - [anon_sym_always] = ACTIONS(2876), - [anon_sym_thereis] = ACTIONS(2876), - [anon_sym_never] = ACTIONS(2876), - [anon_sym_else] = ACTIONS(2876), - [anon_sym_finally] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_initially] = ACTIONS(2876), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3960), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [250] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2435), - [sym_num_lit] = STATE(2435), - [sym_kwd_lit] = STATE(2435), - [sym_str_lit] = STATE(2435), - [sym_char_lit] = STATE(2435), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2435), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2435), - [sym_set_lit] = STATE(2435), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2435), - [sym_splicing_read_cond_lit] = STATE(2435), - [sym_var_quoting_lit] = STATE(2435), - [sym_quoting_lit] = STATE(2435), - [sym_syn_quoting_lit] = STATE(2435), - [sym_unquote_splicing_lit] = STATE(2435), - [sym_unquoting_lit] = STATE(2435), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2435), - [sym_package_lit] = STATE(2435), - [sym_include_reader_macro] = STATE(2435), - [sym_complex_num_lit] = STATE(2435), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(1407), - [sym_comment] = ACTIONS(1407), - [anon_sym_POUND_] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3962), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(1415), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3962), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [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(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [201] = { + [sym__gap] = STATE(125), + [sym_dis_expr] = STATE(125), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(125), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3474), + [sym_comment] = ACTIONS(3474), + [anon_sym_POUND_] = ACTIONS(3448), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3477), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3453), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3477), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3456), + [anon_sym_POUND_CARET] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_RPAREN] = ACTIONS(3465), + [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(3962), - [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(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3964), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3477), + [anon_sym_cl] = ACTIONS(3467), + [aux_sym_accumulation_verb_token1] = ACTIONS(3470), + [anon_sym_for] = ACTIONS(3470), + [anon_sym_and] = ACTIONS(3470), + [anon_sym_as] = ACTIONS(3470), + [anon_sym_with] = ACTIONS(3470), + [anon_sym_do] = ACTIONS(3470), + [anon_sym_while] = ACTIONS(3470), + [anon_sym_until] = ACTIONS(3470), + [anon_sym_repeat] = ACTIONS(3470), + [anon_sym_when] = ACTIONS(3470), + [anon_sym_if] = ACTIONS(3470), + [anon_sym_unless] = ACTIONS(3470), + [anon_sym_always] = ACTIONS(3470), + [anon_sym_thereis] = ACTIONS(3470), + [anon_sym_never] = ACTIONS(3470), + [anon_sym_else] = ACTIONS(3470), + [anon_sym_finally] = ACTIONS(3470), + [anon_sym_return] = ACTIONS(3470), + [anon_sym_initially] = ACTIONS(3470), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3479), + [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(176), - [sym_dis_expr] = STATE(176), - [sym__form] = STATE(2102), - [sym_num_lit] = STATE(2102), - [sym_kwd_lit] = STATE(2102), - [sym_str_lit] = STATE(2102), - [sym_char_lit] = STATE(2102), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2102), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2102), - [sym_set_lit] = STATE(2102), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2102), - [sym_splicing_read_cond_lit] = STATE(2102), - [sym_var_quoting_lit] = STATE(2102), - [sym_quoting_lit] = STATE(2102), - [sym_syn_quoting_lit] = STATE(2102), - [sym_unquote_splicing_lit] = STATE(2102), - [sym_unquoting_lit] = STATE(2102), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2102), - [sym_package_lit] = STATE(2102), - [sym_include_reader_macro] = STATE(2102), - [sym_complex_num_lit] = STATE(2102), - [aux_sym_dis_expr_repeat1] = STATE(176), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3966), - [sym_comment] = ACTIONS(3966), - [anon_sym_POUND_] = ACTIONS(3306), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(3969), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(3969), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3314), - [anon_sym_POUND_CARET] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3320), - [anon_sym_RPAREN] = ACTIONS(3323), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [202] = { + [sym__gap] = STATE(121), + [sym_dis_expr] = STATE(121), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(121), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3481), + [sym_comment] = ACTIONS(3481), + [anon_sym_POUND_] = ACTIONS(2274), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3484), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2279), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3484), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_POUND_CARET] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_RPAREN] = ACTIONS(2291), + [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(3969), - [anon_sym_cl] = ACTIONS(3325), - [aux_sym_accumulation_verb_token1] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_and] = ACTIONS(3328), - [anon_sym_as] = ACTIONS(3328), - [anon_sym_with] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_until] = ACTIONS(3328), - [anon_sym_repeat] = ACTIONS(3328), - [anon_sym_when] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_unless] = ACTIONS(3328), - [anon_sym_always] = ACTIONS(3328), - [anon_sym_thereis] = ACTIONS(3328), - [anon_sym_never] = ACTIONS(3328), - [anon_sym_else] = ACTIONS(3328), - [anon_sym_finally] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_initially] = ACTIONS(3328), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(3971), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(3484), + [anon_sym_cl] = ACTIONS(2293), + [aux_sym_accumulation_verb_token1] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_and] = ACTIONS(2296), + [anon_sym_as] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_until] = ACTIONS(2296), + [anon_sym_repeat] = ACTIONS(2296), + [anon_sym_when] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_unless] = ACTIONS(2296), + [anon_sym_always] = ACTIONS(2296), + [anon_sym_thereis] = ACTIONS(2296), + [anon_sym_never] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_finally] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_initially] = ACTIONS(2296), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3486), + [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(127), + [sym_dis_expr] = STATE(127), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(127), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3488), + [sym_comment] = ACTIONS(3488), + [anon_sym_POUND_] = ACTIONS(3491), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3494), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3496), + [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(3499), + [anon_sym_POUND_CARET] = ACTIONS(3502), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_RPAREN] = ACTIONS(3508), + [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(3510), + [aux_sym_accumulation_verb_token1] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3513), + [anon_sym_and] = ACTIONS(3513), + [anon_sym_as] = ACTIONS(3513), + [anon_sym_with] = ACTIONS(3513), + [anon_sym_do] = ACTIONS(3513), + [anon_sym_while] = ACTIONS(3513), + [anon_sym_until] = ACTIONS(3513), + [anon_sym_repeat] = ACTIONS(3513), + [anon_sym_when] = ACTIONS(3513), + [anon_sym_if] = ACTIONS(3513), + [anon_sym_unless] = ACTIONS(3513), + [anon_sym_always] = ACTIONS(3513), + [anon_sym_thereis] = ACTIONS(3513), + [anon_sym_never] = ACTIONS(3513), + [anon_sym_else] = ACTIONS(3513), + [anon_sym_finally] = ACTIONS(3513), + [anon_sym_return] = ACTIONS(3513), + [anon_sym_initially] = ACTIONS(3513), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3515), + [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(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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(3517), + [sym_comment] = ACTIONS(3517), + [anon_sym_POUND_] = ACTIONS(3491), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3520), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3496), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3520), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3499), + [anon_sym_POUND_CARET] = ACTIONS(3502), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_RPAREN] = ACTIONS(3508), + [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(3520), + [anon_sym_cl] = ACTIONS(3510), + [aux_sym_accumulation_verb_token1] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3513), + [anon_sym_and] = ACTIONS(3513), + [anon_sym_as] = ACTIONS(3513), + [anon_sym_with] = ACTIONS(3513), + [anon_sym_do] = ACTIONS(3513), + [anon_sym_while] = ACTIONS(3513), + [anon_sym_until] = ACTIONS(3513), + [anon_sym_repeat] = ACTIONS(3513), + [anon_sym_when] = ACTIONS(3513), + [anon_sym_if] = ACTIONS(3513), + [anon_sym_unless] = ACTIONS(3513), + [anon_sym_always] = ACTIONS(3513), + [anon_sym_thereis] = ACTIONS(3513), + [anon_sym_never] = ACTIONS(3513), + [anon_sym_else] = ACTIONS(3513), + [anon_sym_finally] = ACTIONS(3513), + [anon_sym_return] = ACTIONS(3513), + [anon_sym_initially] = ACTIONS(3513), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3522), + [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(130), + [sym_dis_expr] = STATE(130), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(130), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3524), + [sym_comment] = ACTIONS(3524), + [anon_sym_POUND_] = ACTIONS(3491), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3527), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3496), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3527), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3499), + [anon_sym_POUND_CARET] = ACTIONS(3502), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_RPAREN] = ACTIONS(3508), + [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(3527), + [anon_sym_cl] = ACTIONS(3510), + [aux_sym_accumulation_verb_token1] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3513), + [anon_sym_and] = ACTIONS(3513), + [anon_sym_as] = ACTIONS(3513), + [anon_sym_with] = ACTIONS(3513), + [anon_sym_do] = ACTIONS(3513), + [anon_sym_while] = ACTIONS(3513), + [anon_sym_until] = ACTIONS(3513), + [anon_sym_repeat] = ACTIONS(3513), + [anon_sym_when] = ACTIONS(3513), + [anon_sym_if] = ACTIONS(3513), + [anon_sym_unless] = ACTIONS(3513), + [anon_sym_always] = ACTIONS(3513), + [anon_sym_thereis] = ACTIONS(3513), + [anon_sym_never] = ACTIONS(3513), + [anon_sym_else] = ACTIONS(3513), + [anon_sym_finally] = ACTIONS(3513), + [anon_sym_return] = ACTIONS(3513), + [anon_sym_initially] = ACTIONS(3513), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3529), + [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(131), + [sym_dis_expr] = STATE(131), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(131), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3531), + [sym_comment] = ACTIONS(3531), + [anon_sym_POUND_] = ACTIONS(3448), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3534), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3453), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3534), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3456), + [anon_sym_POUND_CARET] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_RPAREN] = ACTIONS(3465), + [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(3534), + [anon_sym_cl] = ACTIONS(3467), + [aux_sym_accumulation_verb_token1] = ACTIONS(3470), + [anon_sym_for] = ACTIONS(3470), + [anon_sym_and] = ACTIONS(3470), + [anon_sym_as] = ACTIONS(3470), + [anon_sym_with] = ACTIONS(3470), + [anon_sym_do] = ACTIONS(3470), + [anon_sym_while] = ACTIONS(3470), + [anon_sym_until] = ACTIONS(3470), + [anon_sym_repeat] = ACTIONS(3470), + [anon_sym_when] = ACTIONS(3470), + [anon_sym_if] = ACTIONS(3470), + [anon_sym_unless] = ACTIONS(3470), + [anon_sym_always] = ACTIONS(3470), + [anon_sym_thereis] = ACTIONS(3470), + [anon_sym_never] = ACTIONS(3470), + [anon_sym_else] = ACTIONS(3470), + [anon_sym_finally] = ACTIONS(3470), + [anon_sym_return] = ACTIONS(3470), + [anon_sym_initially] = ACTIONS(3470), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3536), + [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(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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(3445), + [sym_comment] = ACTIONS(3445), + [anon_sym_POUND_] = ACTIONS(3448), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3538), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3453), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3538), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3456), + [anon_sym_POUND_CARET] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_RPAREN] = ACTIONS(3465), + [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(3538), + [anon_sym_cl] = ACTIONS(3467), + [aux_sym_accumulation_verb_token1] = ACTIONS(3470), + [anon_sym_for] = ACTIONS(3470), + [anon_sym_and] = ACTIONS(3470), + [anon_sym_as] = ACTIONS(3470), + [anon_sym_with] = ACTIONS(3470), + [anon_sym_do] = ACTIONS(3470), + [anon_sym_while] = ACTIONS(3470), + [anon_sym_until] = ACTIONS(3470), + [anon_sym_repeat] = ACTIONS(3470), + [anon_sym_when] = ACTIONS(3470), + [anon_sym_if] = ACTIONS(3470), + [anon_sym_unless] = ACTIONS(3470), + [anon_sym_always] = ACTIONS(3470), + [anon_sym_thereis] = ACTIONS(3470), + [anon_sym_never] = ACTIONS(3470), + [anon_sym_else] = ACTIONS(3470), + [anon_sym_finally] = ACTIONS(3470), + [anon_sym_return] = ACTIONS(3470), + [anon_sym_initially] = ACTIONS(3470), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3540), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [208] = { + [sym__gap] = STATE(220), + [sym_dis_expr] = STATE(220), + [sym__form] = STATE(2121), + [sym_num_lit] = STATE(2121), + [sym_kwd_lit] = STATE(2121), + [sym_str_lit] = STATE(2121), + [sym_char_lit] = STATE(2121), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2121), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2121), + [sym_set_lit] = STATE(2121), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2121), + [sym_splicing_read_cond_lit] = STATE(2121), + [sym_var_quoting_lit] = STATE(2121), + [sym_quoting_lit] = STATE(2121), + [sym_syn_quoting_lit] = STATE(2121), + [sym_unquote_splicing_lit] = STATE(2121), + [sym_unquoting_lit] = STATE(2121), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2121), + [sym_package_lit] = STATE(2121), + [sym_include_reader_macro] = STATE(2121), + [sym_complex_num_lit] = STATE(2121), + [aux_sym_dis_expr_repeat1] = STATE(220), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3542), + [sym_comment] = ACTIONS(3542), + [anon_sym_POUND_] = ACTIONS(3545), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3548), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3550), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3548), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3553), + [anon_sym_POUND_CARET] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3559), + [anon_sym_RPAREN] = ACTIONS(3562), + [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(3548), + [anon_sym_cl] = ACTIONS(3564), + [aux_sym_accumulation_verb_token1] = ACTIONS(3567), + [anon_sym_for] = ACTIONS(3567), + [anon_sym_and] = ACTIONS(3567), + [anon_sym_as] = ACTIONS(3567), + [anon_sym_with] = ACTIONS(3567), + [anon_sym_do] = ACTIONS(3567), + [anon_sym_while] = ACTIONS(3567), + [anon_sym_until] = ACTIONS(3567), + [anon_sym_repeat] = ACTIONS(3567), + [anon_sym_when] = ACTIONS(3567), + [anon_sym_if] = ACTIONS(3567), + [anon_sym_unless] = ACTIONS(3567), + [anon_sym_always] = ACTIONS(3567), + [anon_sym_thereis] = ACTIONS(3567), + [anon_sym_never] = ACTIONS(3567), + [anon_sym_else] = ACTIONS(3567), + [anon_sym_finally] = ACTIONS(3567), + [anon_sym_return] = ACTIONS(3567), + [anon_sym_initially] = ACTIONS(3567), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3569), + [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(2273), + [sym_num_lit] = STATE(2273), + [sym_kwd_lit] = STATE(2273), + [sym_str_lit] = STATE(2273), + [sym_char_lit] = STATE(2273), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2273), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2273), + [sym_set_lit] = STATE(2273), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2273), + [sym_splicing_read_cond_lit] = STATE(2273), + [sym_var_quoting_lit] = STATE(2273), + [sym_quoting_lit] = STATE(2273), + [sym_syn_quoting_lit] = STATE(2273), + [sym_unquote_splicing_lit] = STATE(2273), + [sym_unquoting_lit] = STATE(2273), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2273), + [sym_package_lit] = STATE(2273), + [sym_include_reader_macro] = STATE(2273), + [sym_complex_num_lit] = STATE(2273), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3571), + [sym_comment] = ACTIONS(3571), + [anon_sym_POUND_] = ACTIONS(3574), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3577), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3579), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3577), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3582), + [anon_sym_POUND_CARET] = ACTIONS(3585), + [anon_sym_LPAREN] = ACTIONS(3588), + [anon_sym_RPAREN] = ACTIONS(3591), + [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(3577), + [anon_sym_cl] = ACTIONS(3593), + [aux_sym_accumulation_verb_token1] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [anon_sym_and] = ACTIONS(3596), + [anon_sym_as] = ACTIONS(3596), + [anon_sym_with] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_until] = ACTIONS(3596), + [anon_sym_repeat] = ACTIONS(3596), + [anon_sym_when] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [anon_sym_unless] = ACTIONS(3596), + [anon_sym_always] = ACTIONS(3596), + [anon_sym_thereis] = ACTIONS(3596), + [anon_sym_never] = ACTIONS(3596), + [anon_sym_else] = ACTIONS(3596), + [anon_sym_finally] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_initially] = ACTIONS(3596), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3598), + [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(183), + [sym_dis_expr] = STATE(183), + [sym__form] = STATE(2260), + [sym_num_lit] = STATE(2260), + [sym_kwd_lit] = STATE(2260), + [sym_str_lit] = STATE(2260), + [sym_char_lit] = STATE(2260), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2260), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2260), + [sym_set_lit] = STATE(2260), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2260), + [sym_splicing_read_cond_lit] = STATE(2260), + [sym_var_quoting_lit] = STATE(2260), + [sym_quoting_lit] = STATE(2260), + [sym_syn_quoting_lit] = STATE(2260), + [sym_unquote_splicing_lit] = STATE(2260), + [sym_unquoting_lit] = STATE(2260), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2260), + [sym_package_lit] = STATE(2260), + [sym_include_reader_macro] = STATE(2260), + [sym_complex_num_lit] = STATE(2260), + [aux_sym_dis_expr_repeat1] = STATE(183), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3600), + [sym_comment] = ACTIONS(3600), + [anon_sym_POUND_] = ACTIONS(3574), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3603), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3579), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3603), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3582), + [anon_sym_POUND_CARET] = ACTIONS(3585), + [anon_sym_LPAREN] = ACTIONS(3588), + [anon_sym_RPAREN] = ACTIONS(3591), + [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(3603), + [anon_sym_cl] = ACTIONS(3593), + [aux_sym_accumulation_verb_token1] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [anon_sym_and] = ACTIONS(3596), + [anon_sym_as] = ACTIONS(3596), + [anon_sym_with] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_until] = ACTIONS(3596), + [anon_sym_repeat] = ACTIONS(3596), + [anon_sym_when] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [anon_sym_unless] = ACTIONS(3596), + [anon_sym_always] = ACTIONS(3596), + [anon_sym_thereis] = ACTIONS(3596), + [anon_sym_never] = ACTIONS(3596), + [anon_sym_else] = ACTIONS(3596), + [anon_sym_finally] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_initially] = ACTIONS(3596), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3605), + [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(2537), + [sym_num_lit] = STATE(2537), + [sym_kwd_lit] = STATE(2537), + [sym_str_lit] = STATE(2537), + [sym_char_lit] = STATE(2537), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2537), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2537), + [sym_set_lit] = STATE(2537), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2537), + [sym_splicing_read_cond_lit] = STATE(2537), + [sym_var_quoting_lit] = STATE(2537), + [sym_quoting_lit] = STATE(2537), + [sym_syn_quoting_lit] = STATE(2537), + [sym_unquote_splicing_lit] = STATE(2537), + [sym_unquoting_lit] = STATE(2537), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2537), + [sym_package_lit] = STATE(2537), + [sym_include_reader_macro] = STATE(2537), + [sym_complex_num_lit] = STATE(2537), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2151), + [sym_comment] = ACTIONS(2151), + [anon_sym_POUND_] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3607), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2159), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3607), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2162), + [anon_sym_POUND_CARET] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_RPAREN] = ACTIONS(2171), + [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(3607), + [anon_sym_cl] = ACTIONS(2173), + [aux_sym_accumulation_verb_token1] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_and] = ACTIONS(2176), + [anon_sym_as] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_until] = ACTIONS(2176), + [anon_sym_repeat] = ACTIONS(2176), + [anon_sym_when] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_unless] = ACTIONS(2176), + [anon_sym_always] = ACTIONS(2176), + [anon_sym_thereis] = ACTIONS(2176), + [anon_sym_never] = ACTIONS(2176), + [anon_sym_else] = ACTIONS(2176), + [anon_sym_finally] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_initially] = ACTIONS(2176), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3609), + [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(100), + [sym_dis_expr] = STATE(100), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(100), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3611), + [sym_comment] = ACTIONS(3611), + [anon_sym_POUND_] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3614), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2159), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3614), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2162), + [anon_sym_POUND_CARET] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_RPAREN] = ACTIONS(2171), + [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(3614), + [anon_sym_cl] = ACTIONS(2173), + [aux_sym_accumulation_verb_token1] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_and] = ACTIONS(2176), + [anon_sym_as] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_until] = ACTIONS(2176), + [anon_sym_repeat] = ACTIONS(2176), + [anon_sym_when] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_unless] = ACTIONS(2176), + [anon_sym_always] = ACTIONS(2176), + [anon_sym_thereis] = ACTIONS(2176), + [anon_sym_never] = ACTIONS(2176), + [anon_sym_else] = ACTIONS(2176), + [anon_sym_finally] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_initially] = ACTIONS(2176), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3616), + [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(102), + [sym_dis_expr] = STATE(102), + [sym__form] = STATE(2545), + [sym_num_lit] = STATE(2545), + [sym_kwd_lit] = STATE(2545), + [sym_str_lit] = STATE(2545), + [sym_char_lit] = STATE(2545), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2545), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2545), + [sym_set_lit] = STATE(2545), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2545), + [sym_splicing_read_cond_lit] = STATE(2545), + [sym_var_quoting_lit] = STATE(2545), + [sym_quoting_lit] = STATE(2545), + [sym_syn_quoting_lit] = STATE(2545), + [sym_unquote_splicing_lit] = STATE(2545), + [sym_unquoting_lit] = STATE(2545), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2545), + [sym_package_lit] = STATE(2545), + [sym_include_reader_macro] = STATE(2545), + [sym_complex_num_lit] = STATE(2545), + [aux_sym_dis_expr_repeat1] = STATE(102), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3618), + [sym_comment] = ACTIONS(3618), + [anon_sym_POUND_] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3621), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2159), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3621), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2162), + [anon_sym_POUND_CARET] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_RPAREN] = ACTIONS(2171), + [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(3621), + [anon_sym_cl] = ACTIONS(2173), + [aux_sym_accumulation_verb_token1] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_and] = ACTIONS(2176), + [anon_sym_as] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_until] = ACTIONS(2176), + [anon_sym_repeat] = ACTIONS(2176), + [anon_sym_when] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_unless] = ACTIONS(2176), + [anon_sym_always] = ACTIONS(2176), + [anon_sym_thereis] = ACTIONS(2176), + [anon_sym_never] = ACTIONS(2176), + [anon_sym_else] = ACTIONS(2176), + [anon_sym_finally] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_initially] = ACTIONS(2176), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3623), + [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(143), + [sym_dis_expr] = STATE(143), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(143), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3625), + [sym_comment] = ACTIONS(3625), + [anon_sym_POUND_] = ACTIONS(3628), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3631), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3633), + [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(575), + [anon_sym_POUND_CARET] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_RPAREN] = ACTIONS(584), + [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(3639), + [aux_sym_accumulation_verb_token1] = ACTIONS(591), + [anon_sym_for] = ACTIONS(591), + [anon_sym_and] = ACTIONS(591), + [anon_sym_as] = ACTIONS(591), + [anon_sym_with] = ACTIONS(591), + [anon_sym_do] = ACTIONS(591), + [anon_sym_while] = ACTIONS(591), + [anon_sym_until] = ACTIONS(591), + [anon_sym_repeat] = ACTIONS(591), + [anon_sym_when] = ACTIONS(591), + [anon_sym_if] = ACTIONS(591), + [anon_sym_unless] = ACTIONS(591), + [anon_sym_always] = ACTIONS(591), + [anon_sym_thereis] = ACTIONS(591), + [anon_sym_never] = ACTIONS(591), + [anon_sym_else] = ACTIONS(591), + [anon_sym_finally] = ACTIONS(591), + [anon_sym_return] = ACTIONS(591), + [anon_sym_initially] = ACTIONS(591), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3642), + [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(995), + [sym_dis_expr] = STATE(995), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3644), + [sym_comment] = ACTIONS(3644), + [anon_sym_POUND_] = ACTIONS(3545), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3647), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3550), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3647), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3553), + [anon_sym_POUND_CARET] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3559), + [anon_sym_RPAREN] = ACTIONS(3562), + [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(3647), + [anon_sym_cl] = ACTIONS(3564), + [aux_sym_accumulation_verb_token1] = ACTIONS(3567), + [anon_sym_for] = ACTIONS(3567), + [anon_sym_and] = ACTIONS(3567), + [anon_sym_as] = ACTIONS(3567), + [anon_sym_with] = ACTIONS(3567), + [anon_sym_do] = ACTIONS(3567), + [anon_sym_while] = ACTIONS(3567), + [anon_sym_until] = ACTIONS(3567), + [anon_sym_repeat] = ACTIONS(3567), + [anon_sym_when] = ACTIONS(3567), + [anon_sym_if] = ACTIONS(3567), + [anon_sym_unless] = ACTIONS(3567), + [anon_sym_always] = ACTIONS(3567), + [anon_sym_thereis] = ACTIONS(3567), + [anon_sym_never] = ACTIONS(3567), + [anon_sym_else] = ACTIONS(3567), + [anon_sym_finally] = ACTIONS(3567), + [anon_sym_return] = ACTIONS(3567), + [anon_sym_initially] = ACTIONS(3567), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3649), + [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(184), + [sym_dis_expr] = STATE(184), + [sym__form] = STATE(2139), + [sym_num_lit] = STATE(2139), + [sym_kwd_lit] = STATE(2139), + [sym_str_lit] = STATE(2139), + [sym_char_lit] = STATE(2139), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2139), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2139), + [sym_set_lit] = STATE(2139), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2139), + [sym_splicing_read_cond_lit] = STATE(2139), + [sym_var_quoting_lit] = STATE(2139), + [sym_quoting_lit] = STATE(2139), + [sym_syn_quoting_lit] = STATE(2139), + [sym_unquote_splicing_lit] = STATE(2139), + [sym_unquoting_lit] = STATE(2139), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2139), + [sym_package_lit] = STATE(2139), + [sym_include_reader_macro] = STATE(2139), + [sym_complex_num_lit] = STATE(2139), + [aux_sym_dis_expr_repeat1] = STATE(184), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3651), + [sym_comment] = ACTIONS(3651), + [anon_sym_POUND_] = ACTIONS(3574), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3654), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3579), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3654), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3582), + [anon_sym_POUND_CARET] = ACTIONS(3585), + [anon_sym_LPAREN] = ACTIONS(3588), + [anon_sym_RPAREN] = ACTIONS(3591), + [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(3654), + [anon_sym_cl] = ACTIONS(3593), + [aux_sym_accumulation_verb_token1] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [anon_sym_and] = ACTIONS(3596), + [anon_sym_as] = ACTIONS(3596), + [anon_sym_with] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_until] = ACTIONS(3596), + [anon_sym_repeat] = ACTIONS(3596), + [anon_sym_when] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [anon_sym_unless] = ACTIONS(3596), + [anon_sym_always] = ACTIONS(3596), + [anon_sym_thereis] = ACTIONS(3596), + [anon_sym_never] = ACTIONS(3596), + [anon_sym_else] = ACTIONS(3596), + [anon_sym_finally] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_initially] = ACTIONS(3596), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3656), + [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(915), + [sym_dis_expr] = STATE(915), + [sym__form] = STATE(240), + [sym_num_lit] = STATE(240), + [sym_kwd_lit] = STATE(240), + [sym_str_lit] = STATE(240), + [sym_char_lit] = STATE(240), + [sym_sym_lit] = STATE(1486), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(240), + [sym__bare_list_lit] = STATE(1485), + [sym_vec_lit] = STATE(240), + [sym_set_lit] = STATE(240), + [sym__bare_set_lit] = STATE(1484), + [sym_read_cond_lit] = STATE(240), + [sym_splicing_read_cond_lit] = STATE(240), + [sym_var_quoting_lit] = STATE(240), + [sym_quoting_lit] = STATE(240), + [sym_syn_quoting_lit] = STATE(240), + [sym_unquote_splicing_lit] = STATE(240), + [sym_unquoting_lit] = STATE(240), + [sym_defun] = STATE(1485), + [sym_loop_macro] = STATE(1485), + [sym_path_lit] = STATE(240), + [sym_package_lit] = STATE(240), + [sym_include_reader_macro] = STATE(240), + [sym_complex_num_lit] = STATE(240), + [aux_sym_dis_expr_repeat1] = STATE(915), + [aux_sym_list_lit_repeat1] = STATE(2831), + [sym__ws] = ACTIONS(3658), + [sym_comment] = ACTIONS(3658), + [anon_sym_POUND_] = ACTIONS(3661), + [anon_sym_POUND] = ACTIONS(2675), + [anon_sym_DOT] = ACTIONS(3664), + [aux_sym_num_lit_token1] = ACTIONS(2679), + [anon_sym_COLON] = ACTIONS(3666), + [anon_sym_COLON_COLON] = ACTIONS(2684), + [anon_sym_DQUOTE] = ACTIONS(2686), + [sym_nil_lit] = ACTIONS(3664), + [aux_sym_sym_lit_token1] = ACTIONS(2688), + [anon_sym_CARET] = ACTIONS(3669), + [anon_sym_POUND_CARET] = ACTIONS(3672), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym_RPAREN] = ACTIONS(3678), + [anon_sym_POUND0A] = ACTIONS(2701), + [anon_sym_POUND0a] = ACTIONS(2701), + [anon_sym_POUND_QMARK] = ACTIONS(2703), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2705), + [anon_sym_POUND_SQUOTE] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2709), + [anon_sym_BQUOTE] = ACTIONS(2711), + [anon_sym_COMMA_AT] = ACTIONS(2713), + [anon_sym_COMMA] = ACTIONS(2715), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3664), + [anon_sym_cl] = ACTIONS(3680), + [aux_sym_accumulation_verb_token1] = ACTIONS(3683), + [anon_sym_for] = ACTIONS(3683), + [anon_sym_and] = ACTIONS(3683), + [anon_sym_as] = ACTIONS(3683), + [anon_sym_with] = ACTIONS(3683), + [anon_sym_do] = ACTIONS(3683), + [anon_sym_while] = ACTIONS(3683), + [anon_sym_until] = ACTIONS(3683), + [anon_sym_repeat] = ACTIONS(3683), + [anon_sym_when] = ACTIONS(3683), + [anon_sym_if] = ACTIONS(3683), + [anon_sym_unless] = ACTIONS(3683), + [anon_sym_always] = ACTIONS(3683), + [anon_sym_thereis] = ACTIONS(3683), + [anon_sym_never] = ACTIONS(3683), + [anon_sym_else] = ACTIONS(3683), + [anon_sym_finally] = ACTIONS(3683), + [anon_sym_return] = ACTIONS(3683), + [anon_sym_initially] = ACTIONS(3683), + [anon_sym_POUNDP] = ACTIONS(2722), + [anon_sym_POUNDp] = ACTIONS(2722), + [sym_self_referential_reader_macro] = ACTIONS(3685), + [anon_sym_POUND_PLUS] = ACTIONS(2726), + [anon_sym_POUND_DASH] = ACTIONS(2726), + [anon_sym_POUNDC] = ACTIONS(2728), + [anon_sym_POUNDc] = ACTIONS(2728), + }, + [218] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2479), + [sym_num_lit] = STATE(2479), + [sym_kwd_lit] = STATE(2479), + [sym_str_lit] = STATE(2479), + [sym_char_lit] = STATE(2479), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2479), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2479), + [sym_set_lit] = STATE(2479), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2479), + [sym_splicing_read_cond_lit] = STATE(2479), + [sym_var_quoting_lit] = STATE(2479), + [sym_quoting_lit] = STATE(2479), + [sym_syn_quoting_lit] = STATE(2479), + [sym_unquote_splicing_lit] = STATE(2479), + [sym_unquoting_lit] = STATE(2479), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2479), + [sym_package_lit] = STATE(2479), + [sym_include_reader_macro] = STATE(2479), + [sym_complex_num_lit] = STATE(2479), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2271), + [sym_comment] = ACTIONS(2271), + [anon_sym_POUND_] = ACTIONS(2274), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3687), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2279), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3687), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_POUND_CARET] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_RPAREN] = ACTIONS(2291), + [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(3687), + [anon_sym_cl] = ACTIONS(2293), + [aux_sym_accumulation_verb_token1] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_and] = ACTIONS(2296), + [anon_sym_as] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_until] = ACTIONS(2296), + [anon_sym_repeat] = ACTIONS(2296), + [anon_sym_when] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_unless] = ACTIONS(2296), + [anon_sym_always] = ACTIONS(2296), + [anon_sym_thereis] = ACTIONS(2296), + [anon_sym_never] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_finally] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_initially] = ACTIONS(2296), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3689), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [219] = { + [sym__gap] = STATE(278), + [sym_dis_expr] = STATE(278), + [sym__form] = STATE(2728), + [sym_num_lit] = STATE(2728), + [sym_kwd_lit] = STATE(2728), + [sym_str_lit] = STATE(2728), + [sym_char_lit] = STATE(2728), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2728), + [sym__bare_list_lit] = STATE(1967), + [sym_vec_lit] = STATE(2728), + [sym_set_lit] = STATE(2728), + [sym__bare_set_lit] = STATE(1966), + [sym_read_cond_lit] = STATE(2728), + [sym_splicing_read_cond_lit] = STATE(2728), + [sym_var_quoting_lit] = STATE(2728), + [sym_quoting_lit] = STATE(2728), + [sym_syn_quoting_lit] = STATE(2728), + [sym_unquote_splicing_lit] = STATE(2728), + [sym_unquoting_lit] = STATE(2728), + [sym_defun] = STATE(1967), + [sym_for_clause_word] = STATE(690), + [sym__for_part] = STATE(1553), + [sym_loop_macro] = STATE(1967), + [sym_path_lit] = STATE(2728), + [sym_package_lit] = STATE(2728), + [sym_include_reader_macro] = STATE(2728), + [sym_complex_num_lit] = STATE(2728), + [aux_sym_dis_expr_repeat1] = STATE(278), + [aux_sym_list_lit_repeat1] = STATE(2803), + [aux_sym_for_clause_repeat1] = STATE(1260), + [sym__ws] = ACTIONS(3691), + [sym_comment] = ACTIONS(3691), + [anon_sym_POUND_] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(3693), + [aux_sym_num_lit_token1] = ACTIONS(2949), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_nil_lit] = ACTIONS(3693), + [aux_sym_sym_lit_token1] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_POUND0A] = ACTIONS(2961), + [anon_sym_POUND0a] = ACTIONS(2961), + [anon_sym_POUND_QMARK] = ACTIONS(2963), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2965), + [anon_sym_POUND_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_COMMA_AT] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2975), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3693), + [anon_sym_cl] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_across] = ACTIONS(2979), + [anon_sym_being] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [aux_sym_for_clause_word_token1] = ACTIONS(2981), + [anon_sym_below] = ACTIONS(2979), + [anon_sym_above] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_to] = ACTIONS(2979), + [anon_sym_upto] = ACTIONS(2979), + [anon_sym_upfrom] = ACTIONS(2979), + [anon_sym_downto] = ACTIONS(2979), + [anon_sym_downfrom] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_then] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_POUNDP] = ACTIONS(2983), + [anon_sym_POUNDp] = ACTIONS(2983), + [sym_self_referential_reader_macro] = ACTIONS(3695), + [anon_sym_POUND_PLUS] = ACTIONS(2987), + [anon_sym_POUND_DASH] = ACTIONS(2987), + [anon_sym_POUNDC] = ACTIONS(2989), + [anon_sym_POUNDc] = ACTIONS(2989), + }, + [220] = { + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(3571), + [sym_comment] = ACTIONS(3571), + [anon_sym_POUND_] = ACTIONS(3574), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3697), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3579), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3697), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3582), + [anon_sym_POUND_CARET] = ACTIONS(3585), + [anon_sym_LPAREN] = ACTIONS(3588), + [anon_sym_RPAREN] = ACTIONS(3591), + [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(3697), + [anon_sym_cl] = ACTIONS(3593), + [aux_sym_accumulation_verb_token1] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [anon_sym_and] = ACTIONS(3596), + [anon_sym_as] = ACTIONS(3596), + [anon_sym_with] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_until] = ACTIONS(3596), + [anon_sym_repeat] = ACTIONS(3596), + [anon_sym_when] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [anon_sym_unless] = ACTIONS(3596), + [anon_sym_always] = ACTIONS(3596), + [anon_sym_thereis] = ACTIONS(3596), + [anon_sym_never] = ACTIONS(3596), + [anon_sym_else] = ACTIONS(3596), + [anon_sym_finally] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_initially] = ACTIONS(3596), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3699), + [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(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2488), + [sym_num_lit] = STATE(2488), + [sym_kwd_lit] = STATE(2488), + [sym_str_lit] = STATE(2488), + [sym_char_lit] = STATE(2488), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2488), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2488), + [sym_set_lit] = STATE(2488), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2488), + [sym_splicing_read_cond_lit] = STATE(2488), + [sym_var_quoting_lit] = STATE(2488), + [sym_quoting_lit] = STATE(2488), + [sym_syn_quoting_lit] = STATE(2488), + [sym_unquote_splicing_lit] = STATE(2488), + [sym_unquoting_lit] = STATE(2488), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2488), + [sym_package_lit] = STATE(2488), + [sym_include_reader_macro] = STATE(2488), + [sym_complex_num_lit] = STATE(2488), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2198), + [sym_comment] = ACTIONS(2198), + [anon_sym_POUND_] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3701), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2206), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3701), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2209), + [anon_sym_POUND_CARET] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_RPAREN] = ACTIONS(2218), + [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(3701), + [anon_sym_cl] = ACTIONS(2220), + [aux_sym_accumulation_verb_token1] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_and] = ACTIONS(2223), + [anon_sym_as] = ACTIONS(2223), + [anon_sym_with] = ACTIONS(2223), + [anon_sym_do] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [anon_sym_until] = ACTIONS(2223), + [anon_sym_repeat] = ACTIONS(2223), + [anon_sym_when] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_unless] = ACTIONS(2223), + [anon_sym_always] = ACTIONS(2223), + [anon_sym_thereis] = ACTIONS(2223), + [anon_sym_never] = ACTIONS(2223), + [anon_sym_else] = ACTIONS(2223), + [anon_sym_finally] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_initially] = ACTIONS(2223), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3703), + [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(2458), + [sym_num_lit] = STATE(2458), + [sym_kwd_lit] = STATE(2458), + [sym_str_lit] = STATE(2458), + [sym_char_lit] = STATE(2458), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2458), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2458), + [sym_set_lit] = STATE(2458), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2458), + [sym_splicing_read_cond_lit] = STATE(2458), + [sym_var_quoting_lit] = STATE(2458), + [sym_quoting_lit] = STATE(2458), + [sym_syn_quoting_lit] = STATE(2458), + [sym_unquote_splicing_lit] = STATE(2458), + [sym_unquoting_lit] = STATE(2458), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2458), + [sym_package_lit] = STATE(2458), + [sym_include_reader_macro] = STATE(2458), + [sym_complex_num_lit] = STATE(2458), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1479), + [sym_comment] = ACTIONS(1479), + [anon_sym_POUND_] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3705), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1487), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3705), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym_POUND_CARET] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1499), + [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(3705), + [anon_sym_cl] = ACTIONS(1501), + [aux_sym_accumulation_verb_token1] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_and] = ACTIONS(1504), + [anon_sym_as] = ACTIONS(1504), + [anon_sym_with] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_until] = ACTIONS(1504), + [anon_sym_repeat] = ACTIONS(1504), + [anon_sym_when] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_unless] = ACTIONS(1504), + [anon_sym_always] = ACTIONS(1504), + [anon_sym_thereis] = ACTIONS(1504), + [anon_sym_never] = ACTIONS(1504), + [anon_sym_else] = ACTIONS(1504), + [anon_sym_finally] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_initially] = ACTIONS(1504), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3707), + [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(995), + [sym_dis_expr] = STATE(995), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2151), + [sym_comment] = ACTIONS(2151), + [anon_sym_POUND_] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3709), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2159), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3709), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2162), + [anon_sym_POUND_CARET] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_RPAREN] = ACTIONS(2171), + [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(3709), + [anon_sym_cl] = ACTIONS(2173), + [aux_sym_accumulation_verb_token1] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_and] = ACTIONS(2176), + [anon_sym_as] = ACTIONS(2176), + [anon_sym_with] = ACTIONS(2176), + [anon_sym_do] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_until] = ACTIONS(2176), + [anon_sym_repeat] = ACTIONS(2176), + [anon_sym_when] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_unless] = ACTIONS(2176), + [anon_sym_always] = ACTIONS(2176), + [anon_sym_thereis] = ACTIONS(2176), + [anon_sym_never] = ACTIONS(2176), + [anon_sym_else] = ACTIONS(2176), + [anon_sym_finally] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_initially] = ACTIONS(2176), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3711), + [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(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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(3713), + [sym_comment] = ACTIONS(3713), + [anon_sym_POUND_] = ACTIONS(3628), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3716), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3633), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3716), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(575), + [anon_sym_POUND_CARET] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_RPAREN] = ACTIONS(584), + [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(3716), + [anon_sym_cl] = ACTIONS(3639), + [aux_sym_accumulation_verb_token1] = ACTIONS(591), + [anon_sym_for] = ACTIONS(591), + [anon_sym_and] = ACTIONS(591), + [anon_sym_as] = ACTIONS(591), + [anon_sym_with] = ACTIONS(591), + [anon_sym_do] = ACTIONS(591), + [anon_sym_while] = ACTIONS(591), + [anon_sym_until] = ACTIONS(591), + [anon_sym_repeat] = ACTIONS(591), + [anon_sym_when] = ACTIONS(591), + [anon_sym_if] = ACTIONS(591), + [anon_sym_unless] = ACTIONS(591), + [anon_sym_always] = ACTIONS(591), + [anon_sym_thereis] = ACTIONS(591), + [anon_sym_never] = ACTIONS(591), + [anon_sym_else] = ACTIONS(591), + [anon_sym_finally] = ACTIONS(591), + [anon_sym_return] = ACTIONS(591), + [anon_sym_initially] = ACTIONS(591), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3718), + [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(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2203), + [sym_num_lit] = STATE(2203), + [sym_kwd_lit] = STATE(2203), + [sym_str_lit] = STATE(2203), + [sym_char_lit] = STATE(2203), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2203), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2203), + [sym_set_lit] = STATE(2203), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2203), + [sym_splicing_read_cond_lit] = STATE(2203), + [sym_var_quoting_lit] = STATE(2203), + [sym_quoting_lit] = STATE(2203), + [sym_syn_quoting_lit] = STATE(2203), + [sym_unquote_splicing_lit] = STATE(2203), + [sym_unquoting_lit] = STATE(2203), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2203), + [sym_package_lit] = STATE(2203), + [sym_include_reader_macro] = STATE(2203), + [sym_complex_num_lit] = STATE(2203), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3720), + [sym_comment] = ACTIONS(3720), + [anon_sym_POUND_] = ACTIONS(3723), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3726), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3728), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3726), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3731), + [anon_sym_POUND_CARET] = ACTIONS(3734), + [anon_sym_LPAREN] = ACTIONS(3737), + [anon_sym_RPAREN] = ACTIONS(3740), + [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(3726), + [anon_sym_cl] = ACTIONS(3742), + [aux_sym_accumulation_verb_token1] = ACTIONS(3745), + [anon_sym_for] = ACTIONS(3745), + [anon_sym_and] = ACTIONS(3745), + [anon_sym_as] = ACTIONS(3745), + [anon_sym_with] = ACTIONS(3745), + [anon_sym_do] = ACTIONS(3745), + [anon_sym_while] = ACTIONS(3745), + [anon_sym_until] = ACTIONS(3745), + [anon_sym_repeat] = ACTIONS(3745), + [anon_sym_when] = ACTIONS(3745), + [anon_sym_if] = ACTIONS(3745), + [anon_sym_unless] = ACTIONS(3745), + [anon_sym_always] = ACTIONS(3745), + [anon_sym_thereis] = ACTIONS(3745), + [anon_sym_never] = ACTIONS(3745), + [anon_sym_else] = ACTIONS(3745), + [anon_sym_finally] = ACTIONS(3745), + [anon_sym_return] = ACTIONS(3745), + [anon_sym_initially] = ACTIONS(3745), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3747), + [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(276), + [sym_dis_expr] = STATE(276), + [sym__form] = STATE(2732), + [sym_num_lit] = STATE(2732), + [sym_kwd_lit] = STATE(2732), + [sym_str_lit] = STATE(2732), + [sym_char_lit] = STATE(2732), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2732), + [sym__bare_list_lit] = STATE(1967), + [sym_vec_lit] = STATE(2732), + [sym_set_lit] = STATE(2732), + [sym__bare_set_lit] = STATE(1966), + [sym_read_cond_lit] = STATE(2732), + [sym_splicing_read_cond_lit] = STATE(2732), + [sym_var_quoting_lit] = STATE(2732), + [sym_quoting_lit] = STATE(2732), + [sym_syn_quoting_lit] = STATE(2732), + [sym_unquote_splicing_lit] = STATE(2732), + [sym_unquoting_lit] = STATE(2732), + [sym_defun] = STATE(1967), + [sym_for_clause_word] = STATE(690), + [sym__for_part] = STATE(1553), + [sym_loop_macro] = STATE(1967), + [sym_path_lit] = STATE(2732), + [sym_package_lit] = STATE(2732), + [sym_include_reader_macro] = STATE(2732), + [sym_complex_num_lit] = STATE(2732), + [aux_sym_dis_expr_repeat1] = STATE(276), + [aux_sym_list_lit_repeat1] = STATE(2803), + [aux_sym_for_clause_repeat1] = STATE(1273), + [sym__ws] = ACTIONS(3749), + [sym_comment] = ACTIONS(3749), + [anon_sym_POUND_] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(3751), + [aux_sym_num_lit_token1] = ACTIONS(2949), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_nil_lit] = ACTIONS(3751), + [aux_sym_sym_lit_token1] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_POUND0A] = ACTIONS(2961), + [anon_sym_POUND0a] = ACTIONS(2961), + [anon_sym_POUND_QMARK] = ACTIONS(2963), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2965), + [anon_sym_POUND_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_COMMA_AT] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2975), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3751), + [anon_sym_cl] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_across] = ACTIONS(2979), + [anon_sym_being] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [aux_sym_for_clause_word_token1] = ACTIONS(2981), + [anon_sym_below] = ACTIONS(2979), + [anon_sym_above] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_to] = ACTIONS(2979), + [anon_sym_upto] = ACTIONS(2979), + [anon_sym_upfrom] = ACTIONS(2979), + [anon_sym_downto] = ACTIONS(2979), + [anon_sym_downfrom] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_then] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_POUNDP] = ACTIONS(2983), + [anon_sym_POUNDp] = ACTIONS(2983), + [sym_self_referential_reader_macro] = ACTIONS(3753), + [anon_sym_POUND_PLUS] = ACTIONS(2987), + [anon_sym_POUND_DASH] = ACTIONS(2987), + [anon_sym_POUNDC] = ACTIONS(2989), + [anon_sym_POUNDc] = ACTIONS(2989), + }, + [227] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2542), + [sym_num_lit] = STATE(2542), + [sym_kwd_lit] = STATE(2542), + [sym_str_lit] = STATE(2542), + [sym_char_lit] = STATE(2542), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2542), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2542), + [sym_set_lit] = STATE(2542), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2542), + [sym_splicing_read_cond_lit] = STATE(2542), + [sym_var_quoting_lit] = STATE(2542), + [sym_quoting_lit] = STATE(2542), + [sym_syn_quoting_lit] = STATE(2542), + [sym_unquote_splicing_lit] = STATE(2542), + [sym_unquoting_lit] = STATE(2542), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2542), + [sym_package_lit] = STATE(2542), + [sym_include_reader_macro] = STATE(2542), + [sym_complex_num_lit] = STATE(2542), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2144), + [sym_comment] = ACTIONS(2144), + [anon_sym_POUND_] = ACTIONS(2118), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3755), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2123), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3755), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_POUND_CARET] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2132), + [anon_sym_RPAREN] = ACTIONS(2135), + [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(3755), + [anon_sym_cl] = ACTIONS(2137), + [aux_sym_accumulation_verb_token1] = ACTIONS(2140), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_and] = ACTIONS(2140), + [anon_sym_as] = ACTIONS(2140), + [anon_sym_with] = ACTIONS(2140), + [anon_sym_do] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2140), + [anon_sym_until] = ACTIONS(2140), + [anon_sym_repeat] = ACTIONS(2140), + [anon_sym_when] = ACTIONS(2140), + [anon_sym_if] = ACTIONS(2140), + [anon_sym_unless] = ACTIONS(2140), + [anon_sym_always] = ACTIONS(2140), + [anon_sym_thereis] = ACTIONS(2140), + [anon_sym_never] = ACTIONS(2140), + [anon_sym_else] = ACTIONS(2140), + [anon_sym_finally] = ACTIONS(2140), + [anon_sym_return] = ACTIONS(2140), + [anon_sym_initially] = ACTIONS(2140), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3757), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [228] = { + [sym__gap] = STATE(277), + [sym_dis_expr] = STATE(277), + [sym__form] = STATE(2731), + [sym_num_lit] = STATE(2731), + [sym_kwd_lit] = STATE(2731), + [sym_str_lit] = STATE(2731), + [sym_char_lit] = STATE(2731), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2731), + [sym__bare_list_lit] = STATE(1967), + [sym_vec_lit] = STATE(2731), + [sym_set_lit] = STATE(2731), + [sym__bare_set_lit] = STATE(1966), + [sym_read_cond_lit] = STATE(2731), + [sym_splicing_read_cond_lit] = STATE(2731), + [sym_var_quoting_lit] = STATE(2731), + [sym_quoting_lit] = STATE(2731), + [sym_syn_quoting_lit] = STATE(2731), + [sym_unquote_splicing_lit] = STATE(2731), + [sym_unquoting_lit] = STATE(2731), + [sym_defun] = STATE(1967), + [sym_for_clause_word] = STATE(690), + [sym__for_part] = STATE(1553), + [sym_loop_macro] = STATE(1967), + [sym_path_lit] = STATE(2731), + [sym_package_lit] = STATE(2731), + [sym_include_reader_macro] = STATE(2731), + [sym_complex_num_lit] = STATE(2731), + [aux_sym_dis_expr_repeat1] = STATE(277), + [aux_sym_list_lit_repeat1] = STATE(2803), + [aux_sym_for_clause_repeat1] = STATE(1269), + [sym__ws] = ACTIONS(3759), + [sym_comment] = ACTIONS(3759), + [anon_sym_POUND_] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(3761), + [aux_sym_num_lit_token1] = ACTIONS(2949), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_nil_lit] = ACTIONS(3761), + [aux_sym_sym_lit_token1] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_POUND0A] = ACTIONS(2961), + [anon_sym_POUND0a] = ACTIONS(2961), + [anon_sym_POUND_QMARK] = ACTIONS(2963), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2965), + [anon_sym_POUND_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_COMMA_AT] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2975), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3761), + [anon_sym_cl] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_across] = ACTIONS(2979), + [anon_sym_being] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [aux_sym_for_clause_word_token1] = ACTIONS(2981), + [anon_sym_below] = ACTIONS(2979), + [anon_sym_above] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_to] = ACTIONS(2979), + [anon_sym_upto] = ACTIONS(2979), + [anon_sym_upfrom] = ACTIONS(2979), + [anon_sym_downto] = ACTIONS(2979), + [anon_sym_downfrom] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_then] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_POUNDP] = ACTIONS(2983), + [anon_sym_POUNDp] = ACTIONS(2983), + [sym_self_referential_reader_macro] = ACTIONS(3763), + [anon_sym_POUND_PLUS] = ACTIONS(2987), + [anon_sym_POUND_DASH] = ACTIONS(2987), + [anon_sym_POUNDC] = ACTIONS(2989), + [anon_sym_POUNDc] = ACTIONS(2989), + }, + [229] = { + [sym__gap] = STATE(104), + [sym_dis_expr] = STATE(104), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(104), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3765), + [sym_comment] = ACTIONS(3765), + [anon_sym_POUND_] = ACTIONS(2118), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3768), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2123), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3768), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_POUND_CARET] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2132), + [anon_sym_RPAREN] = ACTIONS(2135), + [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(3768), + [anon_sym_cl] = ACTIONS(2137), + [aux_sym_accumulation_verb_token1] = ACTIONS(2140), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_and] = ACTIONS(2140), + [anon_sym_as] = ACTIONS(2140), + [anon_sym_with] = ACTIONS(2140), + [anon_sym_do] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2140), + [anon_sym_until] = ACTIONS(2140), + [anon_sym_repeat] = ACTIONS(2140), + [anon_sym_when] = ACTIONS(2140), + [anon_sym_if] = ACTIONS(2140), + [anon_sym_unless] = ACTIONS(2140), + [anon_sym_always] = ACTIONS(2140), + [anon_sym_thereis] = ACTIONS(2140), + [anon_sym_never] = ACTIONS(2140), + [anon_sym_else] = ACTIONS(2140), + [anon_sym_finally] = ACTIONS(2140), + [anon_sym_return] = ACTIONS(2140), + [anon_sym_initially] = ACTIONS(2140), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3770), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [230] = { + [sym__gap] = STATE(161), + [sym_dis_expr] = STATE(161), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(161), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3772), + [sym_comment] = ACTIONS(3772), + [anon_sym_POUND_] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3775), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3312), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3775), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3315), + [anon_sym_POUND_CARET] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_RPAREN] = ACTIONS(3324), + [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(3775), + [anon_sym_cl] = ACTIONS(3326), + [aux_sym_accumulation_verb_token1] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3329), + [anon_sym_and] = ACTIONS(3329), + [anon_sym_as] = ACTIONS(3329), + [anon_sym_with] = ACTIONS(3329), + [anon_sym_do] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3329), + [anon_sym_until] = ACTIONS(3329), + [anon_sym_repeat] = ACTIONS(3329), + [anon_sym_when] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_unless] = ACTIONS(3329), + [anon_sym_always] = ACTIONS(3329), + [anon_sym_thereis] = ACTIONS(3329), + [anon_sym_never] = ACTIONS(3329), + [anon_sym_else] = ACTIONS(3329), + [anon_sym_finally] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3329), + [anon_sym_initially] = ACTIONS(3329), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3777), + [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(209), + [sym_dis_expr] = STATE(209), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2115), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2115), + [sym_set_lit] = STATE(2115), + [sym__bare_set_lit] = STATE(2647), + [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(2648), + [sym_loop_macro] = STATE(2648), + [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(209), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3779), + [sym_comment] = ACTIONS(3779), + [anon_sym_POUND_] = ACTIONS(3545), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3782), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3550), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3782), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3553), + [anon_sym_POUND_CARET] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3559), + [anon_sym_RPAREN] = ACTIONS(3562), + [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(3782), + [anon_sym_cl] = ACTIONS(3564), + [aux_sym_accumulation_verb_token1] = ACTIONS(3567), + [anon_sym_for] = ACTIONS(3567), + [anon_sym_and] = ACTIONS(3567), + [anon_sym_as] = ACTIONS(3567), + [anon_sym_with] = ACTIONS(3567), + [anon_sym_do] = ACTIONS(3567), + [anon_sym_while] = ACTIONS(3567), + [anon_sym_until] = ACTIONS(3567), + [anon_sym_repeat] = ACTIONS(3567), + [anon_sym_when] = ACTIONS(3567), + [anon_sym_if] = ACTIONS(3567), + [anon_sym_unless] = ACTIONS(3567), + [anon_sym_always] = ACTIONS(3567), + [anon_sym_thereis] = ACTIONS(3567), + [anon_sym_never] = ACTIONS(3567), + [anon_sym_else] = ACTIONS(3567), + [anon_sym_finally] = ACTIONS(3567), + [anon_sym_return] = ACTIONS(3567), + [anon_sym_initially] = ACTIONS(3567), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3784), + [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(2104), + [sym_num_lit] = STATE(2104), + [sym_kwd_lit] = STATE(2104), + [sym_str_lit] = STATE(2104), + [sym_char_lit] = STATE(2104), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2104), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2104), + [sym_set_lit] = STATE(2104), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2104), + [sym_splicing_read_cond_lit] = STATE(2104), + [sym_var_quoting_lit] = STATE(2104), + [sym_quoting_lit] = STATE(2104), + [sym_syn_quoting_lit] = STATE(2104), + [sym_unquote_splicing_lit] = STATE(2104), + [sym_unquoting_lit] = STATE(2104), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2104), + [sym_package_lit] = STATE(2104), + [sym_include_reader_macro] = STATE(2104), + [sym_complex_num_lit] = STATE(2104), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2376), + [sym_comment] = ACTIONS(2376), + [anon_sym_POUND_] = ACTIONS(2379), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3786), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2384), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3786), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2387), + [anon_sym_POUND_CARET] = ACTIONS(2390), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_RPAREN] = ACTIONS(2396), + [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(3786), + [anon_sym_cl] = ACTIONS(2398), + [aux_sym_accumulation_verb_token1] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_and] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_with] = ACTIONS(2401), + [anon_sym_do] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [anon_sym_until] = ACTIONS(2401), + [anon_sym_repeat] = ACTIONS(2401), + [anon_sym_when] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_unless] = ACTIONS(2401), + [anon_sym_always] = ACTIONS(2401), + [anon_sym_thereis] = ACTIONS(2401), + [anon_sym_never] = ACTIONS(2401), + [anon_sym_else] = ACTIONS(2401), + [anon_sym_finally] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_initially] = ACTIONS(2401), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3788), + [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(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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(1472), + [sym_comment] = ACTIONS(1472), + [anon_sym_POUND_] = ACTIONS(1417), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3790), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1422), + [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(1425), + [anon_sym_POUND_CARET] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1434), + [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(1436), + [aux_sym_accumulation_verb_token1] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_and] = ACTIONS(1439), + [anon_sym_as] = ACTIONS(1439), + [anon_sym_with] = ACTIONS(1439), + [anon_sym_do] = ACTIONS(1439), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_until] = ACTIONS(1439), + [anon_sym_repeat] = ACTIONS(1439), + [anon_sym_when] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_unless] = ACTIONS(1439), + [anon_sym_always] = ACTIONS(1439), + [anon_sym_thereis] = ACTIONS(1439), + [anon_sym_never] = ACTIONS(1439), + [anon_sym_else] = ACTIONS(1439), + [anon_sym_finally] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1439), + [anon_sym_initially] = ACTIONS(1439), + [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), + }, + [234] = { + [sym__gap] = STATE(164), + [sym_dis_expr] = STATE(164), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(164), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3794), + [sym_comment] = ACTIONS(3794), + [anon_sym_POUND_] = ACTIONS(3369), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3797), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3374), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3797), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3377), + [anon_sym_POUND_CARET] = ACTIONS(3380), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_RPAREN] = ACTIONS(3386), + [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(3797), + [anon_sym_cl] = ACTIONS(3388), + [aux_sym_accumulation_verb_token1] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_and] = ACTIONS(3391), + [anon_sym_as] = ACTIONS(3391), + [anon_sym_with] = ACTIONS(3391), + [anon_sym_do] = ACTIONS(3391), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_until] = ACTIONS(3391), + [anon_sym_repeat] = ACTIONS(3391), + [anon_sym_when] = ACTIONS(3391), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_unless] = ACTIONS(3391), + [anon_sym_always] = ACTIONS(3391), + [anon_sym_thereis] = ACTIONS(3391), + [anon_sym_never] = ACTIONS(3391), + [anon_sym_else] = ACTIONS(3391), + [anon_sym_finally] = ACTIONS(3391), + [anon_sym_return] = ACTIONS(3391), + [anon_sym_initially] = ACTIONS(3391), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3799), + [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(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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(3395), + [sym_comment] = ACTIONS(3395), + [anon_sym_POUND_] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3801), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3312), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3801), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3315), + [anon_sym_POUND_CARET] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_RPAREN] = ACTIONS(3324), + [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(3801), + [anon_sym_cl] = ACTIONS(3326), + [aux_sym_accumulation_verb_token1] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3329), + [anon_sym_and] = ACTIONS(3329), + [anon_sym_as] = ACTIONS(3329), + [anon_sym_with] = ACTIONS(3329), + [anon_sym_do] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3329), + [anon_sym_until] = ACTIONS(3329), + [anon_sym_repeat] = ACTIONS(3329), + [anon_sym_when] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_unless] = ACTIONS(3329), + [anon_sym_always] = ACTIONS(3329), + [anon_sym_thereis] = ACTIONS(3329), + [anon_sym_never] = ACTIONS(3329), + [anon_sym_else] = ACTIONS(3329), + [anon_sym_finally] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3329), + [anon_sym_initially] = ACTIONS(3329), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3803), + [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(169), + [sym_dis_expr] = STATE(169), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(169), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3805), + [sym_comment] = ACTIONS(3805), + [anon_sym_POUND_] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3808), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3312), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3808), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3315), + [anon_sym_POUND_CARET] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_RPAREN] = ACTIONS(3324), + [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(3808), + [anon_sym_cl] = ACTIONS(3326), + [aux_sym_accumulation_verb_token1] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3329), + [anon_sym_and] = ACTIONS(3329), + [anon_sym_as] = ACTIONS(3329), + [anon_sym_with] = ACTIONS(3329), + [anon_sym_do] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3329), + [anon_sym_until] = ACTIONS(3329), + [anon_sym_repeat] = ACTIONS(3329), + [anon_sym_when] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_unless] = ACTIONS(3329), + [anon_sym_always] = ACTIONS(3329), + [anon_sym_thereis] = ACTIONS(3329), + [anon_sym_never] = ACTIONS(3329), + [anon_sym_else] = ACTIONS(3329), + [anon_sym_finally] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3329), + [anon_sym_initially] = ACTIONS(3329), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3810), + [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(186), + [sym_dis_expr] = STATE(186), + [sym__form] = STATE(2194), + [sym_num_lit] = STATE(2194), + [sym_kwd_lit] = STATE(2194), + [sym_str_lit] = STATE(2194), + [sym_char_lit] = STATE(2194), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2194), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2194), + [sym_set_lit] = STATE(2194), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2194), + [sym_splicing_read_cond_lit] = STATE(2194), + [sym_var_quoting_lit] = STATE(2194), + [sym_quoting_lit] = STATE(2194), + [sym_syn_quoting_lit] = STATE(2194), + [sym_unquote_splicing_lit] = STATE(2194), + [sym_unquoting_lit] = STATE(2194), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2194), + [sym_package_lit] = STATE(2194), + [sym_include_reader_macro] = STATE(2194), + [sym_complex_num_lit] = STATE(2194), + [aux_sym_dis_expr_repeat1] = STATE(186), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3812), + [sym_comment] = ACTIONS(3812), + [anon_sym_POUND_] = ACTIONS(3815), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3818), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3820), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3818), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3823), + [anon_sym_POUND_CARET] = ACTIONS(3826), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_RPAREN] = ACTIONS(3832), + [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(3818), + [anon_sym_cl] = ACTIONS(3834), + [aux_sym_accumulation_verb_token1] = ACTIONS(3837), + [anon_sym_for] = ACTIONS(3837), + [anon_sym_and] = ACTIONS(3837), + [anon_sym_as] = ACTIONS(3837), + [anon_sym_with] = ACTIONS(3837), + [anon_sym_do] = ACTIONS(3837), + [anon_sym_while] = ACTIONS(3837), + [anon_sym_until] = ACTIONS(3837), + [anon_sym_repeat] = ACTIONS(3837), + [anon_sym_when] = ACTIONS(3837), + [anon_sym_if] = ACTIONS(3837), + [anon_sym_unless] = ACTIONS(3837), + [anon_sym_always] = ACTIONS(3837), + [anon_sym_thereis] = ACTIONS(3837), + [anon_sym_never] = ACTIONS(3837), + [anon_sym_else] = ACTIONS(3837), + [anon_sym_finally] = ACTIONS(3837), + [anon_sym_return] = ACTIONS(3837), + [anon_sym_initially] = ACTIONS(3837), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3839), + [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(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2052), + [sym_num_lit] = STATE(2052), + [sym_kwd_lit] = STATE(2052), + [sym_str_lit] = STATE(2052), + [sym_char_lit] = STATE(2052), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2052), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2052), + [sym_set_lit] = STATE(2052), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2052), + [sym_splicing_read_cond_lit] = STATE(2052), + [sym_var_quoting_lit] = STATE(2052), + [sym_quoting_lit] = STATE(2052), + [sym_syn_quoting_lit] = STATE(2052), + [sym_unquote_splicing_lit] = STATE(2052), + [sym_unquoting_lit] = STATE(2052), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2052), + [sym_package_lit] = STATE(2052), + [sym_include_reader_macro] = STATE(2052), + [sym_complex_num_lit] = STATE(2052), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3841), + [sym_comment] = ACTIONS(3841), + [anon_sym_POUND_] = ACTIONS(3815), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3844), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3820), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3844), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3823), + [anon_sym_POUND_CARET] = ACTIONS(3826), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_RPAREN] = ACTIONS(3832), + [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(3844), + [anon_sym_cl] = ACTIONS(3834), + [aux_sym_accumulation_verb_token1] = ACTIONS(3837), + [anon_sym_for] = ACTIONS(3837), + [anon_sym_and] = ACTIONS(3837), + [anon_sym_as] = ACTIONS(3837), + [anon_sym_with] = ACTIONS(3837), + [anon_sym_do] = ACTIONS(3837), + [anon_sym_while] = ACTIONS(3837), + [anon_sym_until] = ACTIONS(3837), + [anon_sym_repeat] = ACTIONS(3837), + [anon_sym_when] = ACTIONS(3837), + [anon_sym_if] = ACTIONS(3837), + [anon_sym_unless] = ACTIONS(3837), + [anon_sym_always] = ACTIONS(3837), + [anon_sym_thereis] = ACTIONS(3837), + [anon_sym_never] = ACTIONS(3837), + [anon_sym_else] = ACTIONS(3837), + [anon_sym_finally] = ACTIONS(3837), + [anon_sym_return] = ACTIONS(3837), + [anon_sym_initially] = ACTIONS(3837), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3846), + [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(2054), + [sym_num_lit] = STATE(2054), + [sym_kwd_lit] = STATE(2054), + [sym_str_lit] = STATE(2054), + [sym_char_lit] = STATE(2054), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2054), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2054), + [sym_set_lit] = STATE(2054), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2054), + [sym_splicing_read_cond_lit] = STATE(2054), + [sym_var_quoting_lit] = STATE(2054), + [sym_quoting_lit] = STATE(2054), + [sym_syn_quoting_lit] = STATE(2054), + [sym_unquote_splicing_lit] = STATE(2054), + [sym_unquoting_lit] = STATE(2054), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2054), + [sym_package_lit] = STATE(2054), + [sym_include_reader_macro] = STATE(2054), + [sym_complex_num_lit] = STATE(2054), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3841), + [sym_comment] = ACTIONS(3841), + [anon_sym_POUND_] = ACTIONS(3815), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3848), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3820), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3848), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3823), + [anon_sym_POUND_CARET] = ACTIONS(3826), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_RPAREN] = ACTIONS(3832), + [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(3848), + [anon_sym_cl] = ACTIONS(3834), + [aux_sym_accumulation_verb_token1] = ACTIONS(3837), + [anon_sym_for] = ACTIONS(3837), + [anon_sym_and] = ACTIONS(3837), + [anon_sym_as] = ACTIONS(3837), + [anon_sym_with] = ACTIONS(3837), + [anon_sym_do] = ACTIONS(3837), + [anon_sym_while] = ACTIONS(3837), + [anon_sym_until] = ACTIONS(3837), + [anon_sym_repeat] = ACTIONS(3837), + [anon_sym_when] = ACTIONS(3837), + [anon_sym_if] = ACTIONS(3837), + [anon_sym_unless] = ACTIONS(3837), + [anon_sym_always] = ACTIONS(3837), + [anon_sym_thereis] = ACTIONS(3837), + [anon_sym_never] = ACTIONS(3837), + [anon_sym_else] = ACTIONS(3837), + [anon_sym_finally] = ACTIONS(3837), + [anon_sym_return] = ACTIONS(3837), + [anon_sym_initially] = ACTIONS(3837), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3850), + [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(270), + [sym_dis_expr] = STATE(270), + [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(2766), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2717), + [sym__bare_list_lit] = STATE(1967), + [sym_vec_lit] = STATE(2717), + [sym_set_lit] = STATE(2717), + [sym__bare_set_lit] = STATE(1966), + [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(1967), + [sym_for_clause_word] = STATE(690), + [sym__for_part] = STATE(1553), + [sym_loop_macro] = STATE(1967), + [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(270), + [aux_sym_list_lit_repeat1] = STATE(2803), + [aux_sym_for_clause_repeat1] = STATE(1280), + [sym__ws] = ACTIONS(3852), + [sym_comment] = ACTIONS(3852), + [anon_sym_POUND_] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(3854), + [aux_sym_num_lit_token1] = ACTIONS(2949), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_nil_lit] = ACTIONS(3854), + [aux_sym_sym_lit_token1] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_POUND0A] = ACTIONS(2961), + [anon_sym_POUND0a] = ACTIONS(2961), + [anon_sym_POUND_QMARK] = ACTIONS(2963), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2965), + [anon_sym_POUND_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_COMMA_AT] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2975), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3854), + [anon_sym_cl] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_across] = ACTIONS(2979), + [anon_sym_being] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [aux_sym_for_clause_word_token1] = ACTIONS(2981), + [anon_sym_below] = ACTIONS(2979), + [anon_sym_above] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_to] = ACTIONS(2979), + [anon_sym_upto] = ACTIONS(2979), + [anon_sym_upfrom] = ACTIONS(2979), + [anon_sym_downto] = ACTIONS(2979), + [anon_sym_downfrom] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_then] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_POUNDP] = ACTIONS(2983), + [anon_sym_POUNDp] = ACTIONS(2983), + [sym_self_referential_reader_macro] = ACTIONS(3856), + [anon_sym_POUND_PLUS] = ACTIONS(2987), + [anon_sym_POUND_DASH] = ACTIONS(2987), + [anon_sym_POUNDC] = ACTIONS(2989), + [anon_sym_POUNDc] = ACTIONS(2989), + }, + [241] = { + [sym__gap] = STATE(187), + [sym_dis_expr] = STATE(187), + [sym__form] = STATE(2434), + [sym_num_lit] = STATE(2434), + [sym_kwd_lit] = STATE(2434), + [sym_str_lit] = STATE(2434), + [sym_char_lit] = STATE(2434), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2434), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2434), + [sym_set_lit] = STATE(2434), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2434), + [sym_splicing_read_cond_lit] = STATE(2434), + [sym_var_quoting_lit] = STATE(2434), + [sym_quoting_lit] = STATE(2434), + [sym_syn_quoting_lit] = STATE(2434), + [sym_unquote_splicing_lit] = STATE(2434), + [sym_unquoting_lit] = STATE(2434), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2434), + [sym_package_lit] = STATE(2434), + [sym_include_reader_macro] = STATE(2434), + [sym_complex_num_lit] = STATE(2434), + [aux_sym_dis_expr_repeat1] = STATE(187), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3858), + [sym_comment] = ACTIONS(3858), + [anon_sym_POUND_] = ACTIONS(3861), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3864), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3866), + [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(3869), + [anon_sym_POUND_CARET] = ACTIONS(3872), + [anon_sym_LPAREN] = ACTIONS(3875), + [anon_sym_RPAREN] = ACTIONS(3878), + [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(3880), + [aux_sym_accumulation_verb_token1] = ACTIONS(3883), + [anon_sym_for] = ACTIONS(3883), + [anon_sym_and] = ACTIONS(3883), + [anon_sym_as] = ACTIONS(3883), + [anon_sym_with] = ACTIONS(3883), + [anon_sym_do] = ACTIONS(3883), + [anon_sym_while] = ACTIONS(3883), + [anon_sym_until] = ACTIONS(3883), + [anon_sym_repeat] = ACTIONS(3883), + [anon_sym_when] = ACTIONS(3883), + [anon_sym_if] = ACTIONS(3883), + [anon_sym_unless] = ACTIONS(3883), + [anon_sym_always] = ACTIONS(3883), + [anon_sym_thereis] = ACTIONS(3883), + [anon_sym_never] = ACTIONS(3883), + [anon_sym_else] = ACTIONS(3883), + [anon_sym_finally] = ACTIONS(3883), + [anon_sym_return] = ACTIONS(3883), + [anon_sym_initially] = ACTIONS(3883), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3885), + [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(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2468), + [sym_num_lit] = STATE(2468), + [sym_kwd_lit] = STATE(2468), + [sym_str_lit] = STATE(2468), + [sym_char_lit] = STATE(2468), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2468), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2468), + [sym_set_lit] = STATE(2468), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2468), + [sym_splicing_read_cond_lit] = STATE(2468), + [sym_var_quoting_lit] = STATE(2468), + [sym_quoting_lit] = STATE(2468), + [sym_syn_quoting_lit] = STATE(2468), + [sym_unquote_splicing_lit] = STATE(2468), + [sym_unquoting_lit] = STATE(2468), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2468), + [sym_package_lit] = STATE(2468), + [sym_include_reader_macro] = STATE(2468), + [sym_complex_num_lit] = STATE(2468), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1479), + [sym_comment] = ACTIONS(1479), + [anon_sym_POUND_] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3887), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1487), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3887), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym_POUND_CARET] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1499), + [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(3887), + [anon_sym_cl] = ACTIONS(1501), + [aux_sym_accumulation_verb_token1] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_and] = ACTIONS(1504), + [anon_sym_as] = ACTIONS(1504), + [anon_sym_with] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_until] = ACTIONS(1504), + [anon_sym_repeat] = ACTIONS(1504), + [anon_sym_when] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_unless] = ACTIONS(1504), + [anon_sym_always] = ACTIONS(1504), + [anon_sym_thereis] = ACTIONS(1504), + [anon_sym_never] = ACTIONS(1504), + [anon_sym_else] = ACTIONS(1504), + [anon_sym_finally] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_initially] = ACTIONS(1504), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3889), + [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(105), + [sym_dis_expr] = STATE(105), + [sym__form] = STATE(2533), + [sym_num_lit] = STATE(2533), + [sym_kwd_lit] = STATE(2533), + [sym_str_lit] = STATE(2533), + [sym_char_lit] = STATE(2533), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2533), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2533), + [sym_set_lit] = STATE(2533), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2533), + [sym_splicing_read_cond_lit] = STATE(2533), + [sym_var_quoting_lit] = STATE(2533), + [sym_quoting_lit] = STATE(2533), + [sym_syn_quoting_lit] = STATE(2533), + [sym_unquote_splicing_lit] = STATE(2533), + [sym_unquoting_lit] = STATE(2533), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2533), + [sym_package_lit] = STATE(2533), + [sym_include_reader_macro] = STATE(2533), + [sym_complex_num_lit] = STATE(2533), + [aux_sym_dis_expr_repeat1] = STATE(105), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3891), + [sym_comment] = ACTIONS(3891), + [anon_sym_POUND_] = ACTIONS(2046), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3894), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2051), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3894), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2054), + [anon_sym_POUND_CARET] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2060), + [anon_sym_RPAREN] = ACTIONS(2063), + [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(3894), + [anon_sym_cl] = ACTIONS(2065), + [aux_sym_accumulation_verb_token1] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_and] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_until] = ACTIONS(2068), + [anon_sym_repeat] = ACTIONS(2068), + [anon_sym_when] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_unless] = ACTIONS(2068), + [anon_sym_always] = ACTIONS(2068), + [anon_sym_thereis] = ACTIONS(2068), + [anon_sym_never] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_finally] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_initially] = ACTIONS(2068), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3896), + [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(140), + [sym_dis_expr] = STATE(140), + [sym__form] = STATE(2463), + [sym_num_lit] = STATE(2463), + [sym_kwd_lit] = STATE(2463), + [sym_str_lit] = STATE(2463), + [sym_char_lit] = STATE(2463), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2463), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2463), + [sym_set_lit] = STATE(2463), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2463), + [sym_splicing_read_cond_lit] = STATE(2463), + [sym_var_quoting_lit] = STATE(2463), + [sym_quoting_lit] = STATE(2463), + [sym_syn_quoting_lit] = STATE(2463), + [sym_unquote_splicing_lit] = STATE(2463), + [sym_unquoting_lit] = STATE(2463), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2463), + [sym_package_lit] = STATE(2463), + [sym_include_reader_macro] = STATE(2463), + [sym_complex_num_lit] = STATE(2463), + [aux_sym_dis_expr_repeat1] = STATE(140), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3898), + [sym_comment] = ACTIONS(3898), + [anon_sym_POUND_] = ACTIONS(1417), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3901), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1422), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3901), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym_POUND_CARET] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1434), + [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(3901), + [anon_sym_cl] = ACTIONS(1436), + [aux_sym_accumulation_verb_token1] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_and] = ACTIONS(1439), + [anon_sym_as] = ACTIONS(1439), + [anon_sym_with] = ACTIONS(1439), + [anon_sym_do] = ACTIONS(1439), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_until] = ACTIONS(1439), + [anon_sym_repeat] = ACTIONS(1439), + [anon_sym_when] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_unless] = ACTIONS(1439), + [anon_sym_always] = ACTIONS(1439), + [anon_sym_thereis] = ACTIONS(1439), + [anon_sym_never] = ACTIONS(1439), + [anon_sym_else] = ACTIONS(1439), + [anon_sym_finally] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1439), + [anon_sym_initially] = ACTIONS(1439), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3903), + [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(196), + [sym_dis_expr] = STATE(196), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(196), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3905), + [sym_comment] = ACTIONS(3905), + [anon_sym_POUND_] = ACTIONS(3908), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3911), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3913), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3911), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(396), + [anon_sym_POUND_CARET] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(3916), + [anon_sym_RPAREN] = ACTIONS(405), + [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(3911), + [anon_sym_cl] = ACTIONS(3919), + [aux_sym_accumulation_verb_token1] = ACTIONS(412), + [anon_sym_for] = ACTIONS(412), + [anon_sym_and] = ACTIONS(412), + [anon_sym_as] = ACTIONS(412), + [anon_sym_with] = ACTIONS(412), + [anon_sym_do] = ACTIONS(412), + [anon_sym_while] = ACTIONS(412), + [anon_sym_until] = ACTIONS(412), + [anon_sym_repeat] = ACTIONS(412), + [anon_sym_when] = ACTIONS(412), + [anon_sym_if] = ACTIONS(412), + [anon_sym_unless] = ACTIONS(412), + [anon_sym_always] = ACTIONS(412), + [anon_sym_thereis] = ACTIONS(412), + [anon_sym_never] = ACTIONS(412), + [anon_sym_else] = ACTIONS(412), + [anon_sym_finally] = ACTIONS(412), + [anon_sym_return] = ACTIONS(412), + [anon_sym_initially] = ACTIONS(412), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3922), + [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(2062), + [sym_num_lit] = STATE(2062), + [sym_kwd_lit] = STATE(2062), + [sym_str_lit] = STATE(2062), + [sym_char_lit] = STATE(2062), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2062), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2062), + [sym_set_lit] = STATE(2062), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2062), + [sym_splicing_read_cond_lit] = STATE(2062), + [sym_var_quoting_lit] = STATE(2062), + [sym_quoting_lit] = STATE(2062), + [sym_syn_quoting_lit] = STATE(2062), + [sym_unquote_splicing_lit] = STATE(2062), + [sym_unquoting_lit] = STATE(2062), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2062), + [sym_package_lit] = STATE(2062), + [sym_include_reader_macro] = STATE(2062), + [sym_complex_num_lit] = STATE(2062), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3924), + [sym_comment] = ACTIONS(3924), + [anon_sym_POUND_] = ACTIONS(3861), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3927), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3927), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_POUND_CARET] = ACTIONS(3872), + [anon_sym_LPAREN] = ACTIONS(3875), + [anon_sym_RPAREN] = ACTIONS(3878), + [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(3927), + [anon_sym_cl] = ACTIONS(3880), + [aux_sym_accumulation_verb_token1] = ACTIONS(3883), + [anon_sym_for] = ACTIONS(3883), + [anon_sym_and] = ACTIONS(3883), + [anon_sym_as] = ACTIONS(3883), + [anon_sym_with] = ACTIONS(3883), + [anon_sym_do] = ACTIONS(3883), + [anon_sym_while] = ACTIONS(3883), + [anon_sym_until] = ACTIONS(3883), + [anon_sym_repeat] = ACTIONS(3883), + [anon_sym_when] = ACTIONS(3883), + [anon_sym_if] = ACTIONS(3883), + [anon_sym_unless] = ACTIONS(3883), + [anon_sym_always] = ACTIONS(3883), + [anon_sym_thereis] = ACTIONS(3883), + [anon_sym_never] = ACTIONS(3883), + [anon_sym_else] = ACTIONS(3883), + [anon_sym_finally] = ACTIONS(3883), + [anon_sym_return] = ACTIONS(3883), + [anon_sym_initially] = ACTIONS(3883), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3929), + [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(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2521), + [sym_num_lit] = STATE(2521), + [sym_kwd_lit] = STATE(2521), + [sym_str_lit] = STATE(2521), + [sym_char_lit] = STATE(2521), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2521), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2521), + [sym_set_lit] = STATE(2521), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2521), + [sym_splicing_read_cond_lit] = STATE(2521), + [sym_var_quoting_lit] = STATE(2521), + [sym_quoting_lit] = STATE(2521), + [sym_syn_quoting_lit] = STATE(2521), + [sym_unquote_splicing_lit] = STATE(2521), + [sym_unquoting_lit] = STATE(2521), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2521), + [sym_package_lit] = STATE(2521), + [sym_include_reader_macro] = STATE(2521), + [sym_complex_num_lit] = STATE(2521), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2072), + [sym_comment] = ACTIONS(2072), + [anon_sym_POUND_] = ACTIONS(2046), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3931), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2051), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3931), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2054), + [anon_sym_POUND_CARET] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2060), + [anon_sym_RPAREN] = ACTIONS(2063), + [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(3931), + [anon_sym_cl] = ACTIONS(2065), + [aux_sym_accumulation_verb_token1] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_and] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_until] = ACTIONS(2068), + [anon_sym_repeat] = ACTIONS(2068), + [anon_sym_when] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_unless] = ACTIONS(2068), + [anon_sym_always] = ACTIONS(2068), + [anon_sym_thereis] = ACTIONS(2068), + [anon_sym_never] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_finally] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_initially] = ACTIONS(2068), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3933), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [248] = { + [sym__gap] = STATE(200), + [sym_dis_expr] = STATE(200), + [sym__form] = STATE(2523), + [sym_num_lit] = STATE(2523), + [sym_kwd_lit] = STATE(2523), + [sym_str_lit] = STATE(2523), + [sym_char_lit] = STATE(2523), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2523), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2523), + [sym_set_lit] = STATE(2523), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2523), + [sym_splicing_read_cond_lit] = STATE(2523), + [sym_var_quoting_lit] = STATE(2523), + [sym_quoting_lit] = STATE(2523), + [sym_syn_quoting_lit] = STATE(2523), + [sym_unquote_splicing_lit] = STATE(2523), + [sym_unquoting_lit] = STATE(2523), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2523), + [sym_package_lit] = STATE(2523), + [sym_include_reader_macro] = STATE(2523), + [sym_complex_num_lit] = STATE(2523), + [aux_sym_dis_expr_repeat1] = STATE(200), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3935), + [sym_comment] = ACTIONS(3935), + [anon_sym_POUND_] = ACTIONS(3938), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3941), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3943), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3941), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3946), + [anon_sym_POUND_CARET] = ACTIONS(3949), + [anon_sym_LPAREN] = ACTIONS(3952), + [anon_sym_RPAREN] = ACTIONS(3955), + [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(3941), + [anon_sym_cl] = ACTIONS(3957), + [aux_sym_accumulation_verb_token1] = ACTIONS(3960), + [anon_sym_for] = ACTIONS(3960), + [anon_sym_and] = ACTIONS(3960), + [anon_sym_as] = ACTIONS(3960), + [anon_sym_with] = ACTIONS(3960), + [anon_sym_do] = ACTIONS(3960), + [anon_sym_while] = ACTIONS(3960), + [anon_sym_until] = ACTIONS(3960), + [anon_sym_repeat] = ACTIONS(3960), + [anon_sym_when] = ACTIONS(3960), + [anon_sym_if] = ACTIONS(3960), + [anon_sym_unless] = ACTIONS(3960), + [anon_sym_always] = ACTIONS(3960), + [anon_sym_thereis] = ACTIONS(3960), + [anon_sym_never] = ACTIONS(3960), + [anon_sym_else] = ACTIONS(3960), + [anon_sym_finally] = ACTIONS(3960), + [anon_sym_return] = ACTIONS(3960), + [anon_sym_initially] = ACTIONS(3960), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3962), + [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(995), + [sym_dis_expr] = STATE(995), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3924), + [sym_comment] = ACTIONS(3924), + [anon_sym_POUND_] = ACTIONS(3861), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3964), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3964), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_POUND_CARET] = ACTIONS(3872), + [anon_sym_LPAREN] = ACTIONS(3875), + [anon_sym_RPAREN] = ACTIONS(3878), + [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(3964), + [anon_sym_cl] = ACTIONS(3880), + [aux_sym_accumulation_verb_token1] = ACTIONS(3883), + [anon_sym_for] = ACTIONS(3883), + [anon_sym_and] = ACTIONS(3883), + [anon_sym_as] = ACTIONS(3883), + [anon_sym_with] = ACTIONS(3883), + [anon_sym_do] = ACTIONS(3883), + [anon_sym_while] = ACTIONS(3883), + [anon_sym_until] = ACTIONS(3883), + [anon_sym_repeat] = ACTIONS(3883), + [anon_sym_when] = ACTIONS(3883), + [anon_sym_if] = ACTIONS(3883), + [anon_sym_unless] = ACTIONS(3883), + [anon_sym_always] = ACTIONS(3883), + [anon_sym_thereis] = ACTIONS(3883), + [anon_sym_never] = ACTIONS(3883), + [anon_sym_else] = ACTIONS(3883), + [anon_sym_finally] = ACTIONS(3883), + [anon_sym_return] = ACTIONS(3883), + [anon_sym_initially] = ACTIONS(3883), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3966), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [250] = { + [sym__gap] = STATE(132), + [sym_dis_expr] = STATE(132), + [sym__form] = STATE(2465), + [sym_num_lit] = STATE(2465), + [sym_kwd_lit] = STATE(2465), + [sym_str_lit] = STATE(2465), + [sym_char_lit] = STATE(2465), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2465), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2465), + [sym_set_lit] = STATE(2465), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2465), + [sym_splicing_read_cond_lit] = STATE(2465), + [sym_var_quoting_lit] = STATE(2465), + [sym_quoting_lit] = STATE(2465), + [sym_syn_quoting_lit] = STATE(2465), + [sym_unquote_splicing_lit] = STATE(2465), + [sym_unquoting_lit] = STATE(2465), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2465), + [sym_package_lit] = STATE(2465), + [sym_include_reader_macro] = STATE(2465), + [sym_complex_num_lit] = STATE(2465), + [aux_sym_dis_expr_repeat1] = STATE(132), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3968), + [sym_comment] = ACTIONS(3968), + [anon_sym_POUND_] = ACTIONS(1417), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3971), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1422), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3971), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym_POUND_CARET] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1434), + [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(3971), + [anon_sym_cl] = ACTIONS(1436), + [aux_sym_accumulation_verb_token1] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_and] = ACTIONS(1439), + [anon_sym_as] = ACTIONS(1439), + [anon_sym_with] = ACTIONS(1439), + [anon_sym_do] = ACTIONS(1439), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_until] = ACTIONS(1439), + [anon_sym_repeat] = ACTIONS(1439), + [anon_sym_when] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_unless] = ACTIONS(1439), + [anon_sym_always] = ACTIONS(1439), + [anon_sym_thereis] = ACTIONS(1439), + [anon_sym_never] = ACTIONS(1439), + [anon_sym_else] = ACTIONS(1439), + [anon_sym_finally] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1439), + [anon_sym_initially] = ACTIONS(1439), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3973), + [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(204), + [sym_dis_expr] = STATE(204), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(204), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3975), + [sym_comment] = ACTIONS(3975), + [anon_sym_POUND_] = ACTIONS(3978), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3981), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3983), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3981), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3986), + [anon_sym_POUND_CARET] = ACTIONS(3989), + [anon_sym_LPAREN] = ACTIONS(3992), + [anon_sym_RPAREN] = ACTIONS(3995), + [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(3981), + [anon_sym_cl] = ACTIONS(3997), + [aux_sym_accumulation_verb_token1] = ACTIONS(4000), + [anon_sym_for] = ACTIONS(4000), + [anon_sym_and] = ACTIONS(4000), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_with] = ACTIONS(4000), + [anon_sym_do] = ACTIONS(4000), + [anon_sym_while] = ACTIONS(4000), + [anon_sym_until] = ACTIONS(4000), + [anon_sym_repeat] = ACTIONS(4000), + [anon_sym_when] = ACTIONS(4000), + [anon_sym_if] = ACTIONS(4000), + [anon_sym_unless] = ACTIONS(4000), + [anon_sym_always] = ACTIONS(4000), + [anon_sym_thereis] = ACTIONS(4000), + [anon_sym_never] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_finally] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4000), + [anon_sym_initially] = ACTIONS(4000), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4002), + [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(405), - [sym_dis_expr] = STATE(405), - [sym__form] = STATE(111), - [sym_num_lit] = STATE(111), - [sym_kwd_lit] = STATE(111), - [sym_str_lit] = STATE(111), - [sym_char_lit] = STATE(111), - [sym_sym_lit] = STATE(1321), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(111), - [sym__bare_list_lit] = STATE(1320), - [sym_vec_lit] = STATE(111), - [sym_set_lit] = STATE(111), - [sym__bare_set_lit] = STATE(1319), - [sym_read_cond_lit] = STATE(111), - [sym_splicing_read_cond_lit] = STATE(111), - [sym_var_quoting_lit] = STATE(111), - [sym_quoting_lit] = STATE(111), - [sym_syn_quoting_lit] = STATE(111), - [sym_unquote_splicing_lit] = STATE(111), - [sym_unquoting_lit] = STATE(111), - [sym_defun] = STATE(1320), - [sym_loop_macro] = STATE(1320), - [sym_path_lit] = STATE(111), - [sym_package_lit] = STATE(111), - [sym_include_reader_macro] = STATE(111), - [sym_complex_num_lit] = STATE(111), - [aux_sym_dis_expr_repeat1] = STATE(405), - [aux_sym_list_lit_repeat1] = STATE(2808), - [sym__ws] = ACTIONS(3973), - [sym_comment] = ACTIONS(3973), - [anon_sym_POUND_] = ACTIONS(3976), - [anon_sym_POUND] = ACTIONS(2650), - [anon_sym_DOT] = ACTIONS(3979), - [aux_sym_num_lit_token1] = ACTIONS(2654), - [anon_sym_COLON] = ACTIONS(3981), - [anon_sym_COLON_COLON] = ACTIONS(2659), - [anon_sym_DQUOTE] = ACTIONS(2661), - [sym_nil_lit] = ACTIONS(3979), - [aux_sym_sym_lit_token1] = ACTIONS(2663), - [anon_sym_CARET] = ACTIONS(3984), - [anon_sym_POUND_CARET] = ACTIONS(3987), - [anon_sym_LPAREN] = ACTIONS(3990), - [anon_sym_RPAREN] = ACTIONS(3993), - [anon_sym_POUND0A] = ACTIONS(2676), - [anon_sym_POUND0a] = ACTIONS(2676), - [anon_sym_POUND_QMARK] = ACTIONS(2678), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2680), - [anon_sym_POUND_SQUOTE] = ACTIONS(2682), - [anon_sym_SQUOTE] = ACTIONS(2684), - [anon_sym_BQUOTE] = ACTIONS(2686), - [anon_sym_COMMA_AT] = ACTIONS(2688), - [anon_sym_COMMA] = ACTIONS(2690), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2505), + [sym_num_lit] = STATE(2505), + [sym_kwd_lit] = STATE(2505), + [sym_str_lit] = STATE(2505), + [sym_char_lit] = STATE(2505), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2505), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2505), + [sym_set_lit] = STATE(2505), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2505), + [sym_splicing_read_cond_lit] = STATE(2505), + [sym_var_quoting_lit] = STATE(2505), + [sym_quoting_lit] = STATE(2505), + [sym_syn_quoting_lit] = STATE(2505), + [sym_unquote_splicing_lit] = STATE(2505), + [sym_unquoting_lit] = STATE(2505), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2505), + [sym_package_lit] = STATE(2505), + [sym_include_reader_macro] = STATE(2505), + [sym_complex_num_lit] = STATE(2505), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(4004), + [sym_comment] = ACTIONS(4004), + [anon_sym_POUND_] = ACTIONS(3938), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4007), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3943), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4007), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3946), + [anon_sym_POUND_CARET] = ACTIONS(3949), + [anon_sym_LPAREN] = ACTIONS(3952), + [anon_sym_RPAREN] = ACTIONS(3955), + [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(3979), - [anon_sym_cl] = ACTIONS(3995), - [aux_sym_accumulation_verb_token1] = ACTIONS(3998), - [anon_sym_for] = ACTIONS(3998), - [anon_sym_and] = ACTIONS(3998), - [anon_sym_as] = ACTIONS(3998), - [anon_sym_with] = ACTIONS(3998), - [anon_sym_do] = ACTIONS(3998), - [anon_sym_while] = ACTIONS(3998), - [anon_sym_until] = ACTIONS(3998), - [anon_sym_repeat] = ACTIONS(3998), - [anon_sym_when] = ACTIONS(3998), - [anon_sym_if] = ACTIONS(3998), - [anon_sym_unless] = ACTIONS(3998), - [anon_sym_always] = ACTIONS(3998), - [anon_sym_thereis] = ACTIONS(3998), - [anon_sym_never] = ACTIONS(3998), - [anon_sym_else] = ACTIONS(3998), - [anon_sym_finally] = ACTIONS(3998), - [anon_sym_return] = ACTIONS(3998), - [anon_sym_initially] = ACTIONS(3998), - [anon_sym_POUNDP] = ACTIONS(2697), - [anon_sym_POUNDp] = ACTIONS(2697), - [sym_self_referential_reader_macro] = ACTIONS(4000), - [anon_sym_POUND_PLUS] = ACTIONS(2701), - [anon_sym_POUND_DASH] = ACTIONS(2701), - [anon_sym_POUNDC] = ACTIONS(2703), - [anon_sym_POUNDc] = ACTIONS(2703), + [sym_fancy_literal] = ACTIONS(4007), + [anon_sym_cl] = ACTIONS(3957), + [aux_sym_accumulation_verb_token1] = ACTIONS(3960), + [anon_sym_for] = ACTIONS(3960), + [anon_sym_and] = ACTIONS(3960), + [anon_sym_as] = ACTIONS(3960), + [anon_sym_with] = ACTIONS(3960), + [anon_sym_do] = ACTIONS(3960), + [anon_sym_while] = ACTIONS(3960), + [anon_sym_until] = ACTIONS(3960), + [anon_sym_repeat] = ACTIONS(3960), + [anon_sym_when] = ACTIONS(3960), + [anon_sym_if] = ACTIONS(3960), + [anon_sym_unless] = ACTIONS(3960), + [anon_sym_always] = ACTIONS(3960), + [anon_sym_thereis] = ACTIONS(3960), + [anon_sym_never] = ACTIONS(3960), + [anon_sym_else] = ACTIONS(3960), + [anon_sym_finally] = ACTIONS(3960), + [anon_sym_return] = ACTIONS(3960), + [anon_sym_initially] = ACTIONS(3960), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4009), + [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(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2101), - [sym_num_lit] = STATE(2101), - [sym_kwd_lit] = STATE(2101), - [sym_str_lit] = STATE(2101), - [sym_char_lit] = STATE(2101), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2101), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2101), - [sym_set_lit] = STATE(2101), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2101), - [sym_splicing_read_cond_lit] = STATE(2101), - [sym_var_quoting_lit] = STATE(2101), - [sym_quoting_lit] = STATE(2101), - [sym_syn_quoting_lit] = STATE(2101), - [sym_unquote_splicing_lit] = STATE(2101), - [sym_unquoting_lit] = STATE(2101), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2101), - [sym_package_lit] = STATE(2101), - [sym_include_reader_macro] = STATE(2101), - [sym_complex_num_lit] = STATE(2101), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3332), - [sym_comment] = ACTIONS(3332), - [anon_sym_POUND_] = ACTIONS(3335), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(4002), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(4002), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_POUND_CARET] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_RPAREN] = ACTIONS(3352), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(207), + [sym_dis_expr] = STATE(207), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(207), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(4011), + [sym_comment] = ACTIONS(4011), + [anon_sym_POUND_] = ACTIONS(3938), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4014), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3943), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4014), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3946), + [anon_sym_POUND_CARET] = ACTIONS(3949), + [anon_sym_LPAREN] = ACTIONS(3952), + [anon_sym_RPAREN] = ACTIONS(3955), + [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(4002), - [anon_sym_cl] = ACTIONS(3354), - [aux_sym_accumulation_verb_token1] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_and] = ACTIONS(3357), - [anon_sym_as] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_until] = ACTIONS(3357), - [anon_sym_repeat] = ACTIONS(3357), - [anon_sym_when] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_unless] = ACTIONS(3357), - [anon_sym_always] = ACTIONS(3357), - [anon_sym_thereis] = ACTIONS(3357), - [anon_sym_never] = ACTIONS(3357), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_finally] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_initially] = ACTIONS(3357), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(4004), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(4014), + [anon_sym_cl] = ACTIONS(3957), + [aux_sym_accumulation_verb_token1] = ACTIONS(3960), + [anon_sym_for] = ACTIONS(3960), + [anon_sym_and] = ACTIONS(3960), + [anon_sym_as] = ACTIONS(3960), + [anon_sym_with] = ACTIONS(3960), + [anon_sym_do] = ACTIONS(3960), + [anon_sym_while] = ACTIONS(3960), + [anon_sym_until] = ACTIONS(3960), + [anon_sym_repeat] = ACTIONS(3960), + [anon_sym_when] = ACTIONS(3960), + [anon_sym_if] = ACTIONS(3960), + [anon_sym_unless] = ACTIONS(3960), + [anon_sym_always] = ACTIONS(3960), + [anon_sym_thereis] = ACTIONS(3960), + [anon_sym_never] = ACTIONS(3960), + [anon_sym_else] = ACTIONS(3960), + [anon_sym_finally] = ACTIONS(3960), + [anon_sym_return] = ACTIONS(3960), + [anon_sym_initially] = ACTIONS(3960), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4016), + [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(271), - [sym_dis_expr] = STATE(271), - [sym__form] = STATE(2686), - [sym_num_lit] = STATE(2686), - [sym_kwd_lit] = STATE(2686), - [sym_str_lit] = STATE(2686), - [sym_char_lit] = STATE(2686), - [sym_sym_lit] = STATE(2744), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2686), - [sym__bare_list_lit] = STATE(1926), - [sym_vec_lit] = STATE(2686), - [sym_set_lit] = STATE(2686), - [sym__bare_set_lit] = STATE(1927), - [sym_read_cond_lit] = STATE(2686), - [sym_splicing_read_cond_lit] = STATE(2686), - [sym_var_quoting_lit] = STATE(2686), - [sym_quoting_lit] = STATE(2686), - [sym_syn_quoting_lit] = STATE(2686), - [sym_unquote_splicing_lit] = STATE(2686), - [sym_unquoting_lit] = STATE(2686), - [sym_defun] = STATE(1926), - [sym_for_clause_word] = STATE(549), - [sym__for_part] = STATE(1556), - [sym_loop_macro] = STATE(1926), - [sym_path_lit] = STATE(2686), - [sym_package_lit] = STATE(2686), - [sym_include_reader_macro] = STATE(2686), - [sym_complex_num_lit] = STATE(2686), - [aux_sym_dis_expr_repeat1] = STATE(271), - [aux_sym_list_lit_repeat1] = STATE(2781), - [aux_sym_for_clause_repeat1] = STATE(1255), - [sym__ws] = ACTIONS(4006), - [sym_comment] = ACTIONS(4006), - [anon_sym_POUND_] = ACTIONS(2310), - [anon_sym_POUND] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(4008), - [aux_sym_num_lit_token1] = ACTIONS(2316), - [anon_sym_COLON] = ACTIONS(2318), - [anon_sym_COLON_COLON] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2322), - [sym_nil_lit] = ACTIONS(4008), - [aux_sym_sym_lit_token1] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_POUND0A] = ACTIONS(2328), - [anon_sym_POUND0a] = ACTIONS(2328), - [anon_sym_POUND_QMARK] = ACTIONS(2330), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2332), - [anon_sym_POUND_SQUOTE] = ACTIONS(2334), - [anon_sym_SQUOTE] = ACTIONS(2336), - [anon_sym_BQUOTE] = ACTIONS(2338), - [anon_sym_COMMA_AT] = ACTIONS(2340), - [anon_sym_COMMA] = ACTIONS(2342), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(4018), + [sym_comment] = ACTIONS(4018), + [anon_sym_POUND_] = ACTIONS(4021), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4024), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(4026), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4024), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(4029), + [anon_sym_POUND_CARET] = ACTIONS(4032), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_RPAREN] = ACTIONS(4038), + [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(4008), - [anon_sym_cl] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2346), - [anon_sym_across] = ACTIONS(2346), - [anon_sym_being] = ACTIONS(2346), - [anon_sym_using] = ACTIONS(2346), - [aux_sym_for_clause_word_token1] = ACTIONS(2348), - [anon_sym_below] = ACTIONS(2346), - [anon_sym_above] = ACTIONS(2346), - [anon_sym_from] = ACTIONS(2346), - [anon_sym_to] = ACTIONS(2346), - [anon_sym_upto] = ACTIONS(2346), - [anon_sym_upfrom] = ACTIONS(2346), - [anon_sym_downto] = ACTIONS(2346), - [anon_sym_downfrom] = ACTIONS(2346), - [anon_sym_on] = ACTIONS(2346), - [anon_sym_by] = ACTIONS(2346), - [anon_sym_then] = ACTIONS(2346), - [anon_sym_EQ] = ACTIONS(2346), - [anon_sym_POUNDP] = ACTIONS(2350), - [anon_sym_POUNDp] = ACTIONS(2350), - [sym_self_referential_reader_macro] = ACTIONS(4010), - [anon_sym_POUND_PLUS] = ACTIONS(2354), - [anon_sym_POUND_DASH] = ACTIONS(2354), - [anon_sym_POUNDC] = ACTIONS(2356), - [anon_sym_POUNDc] = ACTIONS(2356), + [sym_fancy_literal] = ACTIONS(4024), + [anon_sym_cl] = ACTIONS(4040), + [aux_sym_accumulation_verb_token1] = ACTIONS(4043), + [anon_sym_for] = ACTIONS(4043), + [anon_sym_and] = ACTIONS(4043), + [anon_sym_as] = ACTIONS(4043), + [anon_sym_with] = ACTIONS(4043), + [anon_sym_do] = ACTIONS(4043), + [anon_sym_while] = ACTIONS(4043), + [anon_sym_until] = ACTIONS(4043), + [anon_sym_repeat] = ACTIONS(4043), + [anon_sym_when] = ACTIONS(4043), + [anon_sym_if] = ACTIONS(4043), + [anon_sym_unless] = ACTIONS(4043), + [anon_sym_always] = ACTIONS(4043), + [anon_sym_thereis] = ACTIONS(4043), + [anon_sym_never] = ACTIONS(4043), + [anon_sym_else] = ACTIONS(4043), + [anon_sym_finally] = ACTIONS(4043), + [anon_sym_return] = ACTIONS(4043), + [anon_sym_initially] = ACTIONS(4043), + [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), }, [255] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2087), - [sym_num_lit] = STATE(2087), - [sym_kwd_lit] = STATE(2087), - [sym_str_lit] = STATE(2087), - [sym_char_lit] = STATE(2087), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2087), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2087), - [sym_set_lit] = STATE(2087), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2087), - [sym_splicing_read_cond_lit] = STATE(2087), - [sym_var_quoting_lit] = STATE(2087), - [sym_quoting_lit] = STATE(2087), - [sym_syn_quoting_lit] = STATE(2087), - [sym_unquote_splicing_lit] = STATE(2087), - [sym_unquoting_lit] = STATE(2087), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2087), - [sym_package_lit] = STATE(2087), - [sym_include_reader_macro] = STATE(2087), - [sym_complex_num_lit] = STATE(2087), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3332), - [sym_comment] = ACTIONS(3332), - [anon_sym_POUND_] = ACTIONS(3335), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(4012), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(4012), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_POUND_CARET] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_RPAREN] = ACTIONS(3352), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(190), + [sym_dis_expr] = STATE(190), + [sym__form] = STATE(2076), + [sym_num_lit] = STATE(2076), + [sym_kwd_lit] = STATE(2076), + [sym_str_lit] = STATE(2076), + [sym_char_lit] = STATE(2076), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2076), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2076), + [sym_set_lit] = STATE(2076), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2076), + [sym_splicing_read_cond_lit] = STATE(2076), + [sym_var_quoting_lit] = STATE(2076), + [sym_quoting_lit] = STATE(2076), + [sym_syn_quoting_lit] = STATE(2076), + [sym_unquote_splicing_lit] = STATE(2076), + [sym_unquoting_lit] = STATE(2076), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2076), + [sym_package_lit] = STATE(2076), + [sym_include_reader_macro] = STATE(2076), + [sym_complex_num_lit] = STATE(2076), + [aux_sym_dis_expr_repeat1] = STATE(190), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(4047), + [sym_comment] = ACTIONS(4047), + [anon_sym_POUND_] = ACTIONS(3861), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4050), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4050), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_POUND_CARET] = ACTIONS(3872), + [anon_sym_LPAREN] = ACTIONS(3875), + [anon_sym_RPAREN] = ACTIONS(3878), + [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(4012), - [anon_sym_cl] = ACTIONS(3354), - [aux_sym_accumulation_verb_token1] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_and] = ACTIONS(3357), - [anon_sym_as] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_until] = ACTIONS(3357), - [anon_sym_repeat] = ACTIONS(3357), - [anon_sym_when] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_unless] = ACTIONS(3357), - [anon_sym_always] = ACTIONS(3357), - [anon_sym_thereis] = ACTIONS(3357), - [anon_sym_never] = ACTIONS(3357), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_finally] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_initially] = ACTIONS(3357), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(4014), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(4050), + [anon_sym_cl] = ACTIONS(3880), + [aux_sym_accumulation_verb_token1] = ACTIONS(3883), + [anon_sym_for] = ACTIONS(3883), + [anon_sym_and] = ACTIONS(3883), + [anon_sym_as] = ACTIONS(3883), + [anon_sym_with] = ACTIONS(3883), + [anon_sym_do] = ACTIONS(3883), + [anon_sym_while] = ACTIONS(3883), + [anon_sym_until] = ACTIONS(3883), + [anon_sym_repeat] = ACTIONS(3883), + [anon_sym_when] = ACTIONS(3883), + [anon_sym_if] = ACTIONS(3883), + [anon_sym_unless] = ACTIONS(3883), + [anon_sym_always] = ACTIONS(3883), + [anon_sym_thereis] = ACTIONS(3883), + [anon_sym_never] = ACTIONS(3883), + [anon_sym_else] = ACTIONS(3883), + [anon_sym_finally] = ACTIONS(3883), + [anon_sym_return] = ACTIONS(3883), + [anon_sym_initially] = ACTIONS(3883), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4052), + [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(185), - [sym_dis_expr] = STATE(185), - [sym__form] = STATE(2088), - [sym_num_lit] = STATE(2088), - [sym_kwd_lit] = STATE(2088), - [sym_str_lit] = STATE(2088), - [sym_char_lit] = STATE(2088), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2088), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2088), - [sym_set_lit] = STATE(2088), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2088), - [sym_splicing_read_cond_lit] = STATE(2088), - [sym_var_quoting_lit] = STATE(2088), - [sym_quoting_lit] = STATE(2088), - [sym_syn_quoting_lit] = STATE(2088), - [sym_unquote_splicing_lit] = STATE(2088), - [sym_unquoting_lit] = STATE(2088), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2088), - [sym_package_lit] = STATE(2088), - [sym_include_reader_macro] = STATE(2088), - [sym_complex_num_lit] = STATE(2088), - [aux_sym_dis_expr_repeat1] = STATE(185), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(4016), - [sym_comment] = ACTIONS(4016), - [anon_sym_POUND_] = ACTIONS(3335), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(4019), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(4019), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_POUND_CARET] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_RPAREN] = ACTIONS(3352), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(271), + [sym_dis_expr] = STATE(271), + [sym__form] = STATE(2718), + [sym_num_lit] = STATE(2718), + [sym_kwd_lit] = STATE(2718), + [sym_str_lit] = STATE(2718), + [sym_char_lit] = STATE(2718), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2718), + [sym__bare_list_lit] = STATE(1967), + [sym_vec_lit] = STATE(2718), + [sym_set_lit] = STATE(2718), + [sym__bare_set_lit] = STATE(1966), + [sym_read_cond_lit] = STATE(2718), + [sym_splicing_read_cond_lit] = STATE(2718), + [sym_var_quoting_lit] = STATE(2718), + [sym_quoting_lit] = STATE(2718), + [sym_syn_quoting_lit] = STATE(2718), + [sym_unquote_splicing_lit] = STATE(2718), + [sym_unquoting_lit] = STATE(2718), + [sym_defun] = STATE(1967), + [sym_for_clause_word] = STATE(690), + [sym__for_part] = STATE(1553), + [sym_loop_macro] = STATE(1967), + [sym_path_lit] = STATE(2718), + [sym_package_lit] = STATE(2718), + [sym_include_reader_macro] = STATE(2718), + [sym_complex_num_lit] = STATE(2718), + [aux_sym_dis_expr_repeat1] = STATE(271), + [aux_sym_list_lit_repeat1] = STATE(2803), + [aux_sym_for_clause_repeat1] = STATE(1281), + [sym__ws] = ACTIONS(4054), + [sym_comment] = ACTIONS(4054), + [anon_sym_POUND_] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(4056), + [aux_sym_num_lit_token1] = ACTIONS(2949), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_nil_lit] = ACTIONS(4056), + [aux_sym_sym_lit_token1] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_POUND0A] = ACTIONS(2961), + [anon_sym_POUND0a] = ACTIONS(2961), + [anon_sym_POUND_QMARK] = ACTIONS(2963), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2965), + [anon_sym_POUND_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_COMMA_AT] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2975), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4019), - [anon_sym_cl] = ACTIONS(3354), - [aux_sym_accumulation_verb_token1] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_and] = ACTIONS(3357), - [anon_sym_as] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_until] = ACTIONS(3357), - [anon_sym_repeat] = ACTIONS(3357), - [anon_sym_when] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_unless] = ACTIONS(3357), - [anon_sym_always] = ACTIONS(3357), - [anon_sym_thereis] = ACTIONS(3357), - [anon_sym_never] = ACTIONS(3357), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_finally] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_initially] = ACTIONS(3357), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(4021), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(4056), + [anon_sym_cl] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_across] = ACTIONS(2979), + [anon_sym_being] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [aux_sym_for_clause_word_token1] = ACTIONS(2981), + [anon_sym_below] = ACTIONS(2979), + [anon_sym_above] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_to] = ACTIONS(2979), + [anon_sym_upto] = ACTIONS(2979), + [anon_sym_upfrom] = ACTIONS(2979), + [anon_sym_downto] = ACTIONS(2979), + [anon_sym_downfrom] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_then] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_POUNDP] = ACTIONS(2983), + [anon_sym_POUNDp] = ACTIONS(2983), + [sym_self_referential_reader_macro] = ACTIONS(4058), + [anon_sym_POUND_PLUS] = ACTIONS(2987), + [anon_sym_POUND_DASH] = ACTIONS(2987), + [anon_sym_POUNDC] = ACTIONS(2989), + [anon_sym_POUNDc] = ACTIONS(2989), }, [257] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [sym__form] = STATE(2060), - [sym_num_lit] = STATE(2060), - [sym_kwd_lit] = STATE(2060), - [sym_str_lit] = STATE(2060), - [sym_char_lit] = STATE(2060), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2060), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2060), - [sym_set_lit] = STATE(2060), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2060), - [sym_splicing_read_cond_lit] = STATE(2060), - [sym_var_quoting_lit] = STATE(2060), - [sym_quoting_lit] = STATE(2060), - [sym_syn_quoting_lit] = STATE(2060), - [sym_unquote_splicing_lit] = STATE(2060), - [sym_unquoting_lit] = STATE(2060), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2060), - [sym_package_lit] = STATE(2060), - [sym_include_reader_macro] = STATE(2060), - [sym_complex_num_lit] = STATE(2060), - [aux_sym_dis_expr_repeat1] = STATE(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3140), - [sym_comment] = ACTIONS(3140), - [anon_sym_POUND_] = ACTIONS(3143), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(4023), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(4023), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3151), - [anon_sym_POUND_CARET] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_RPAREN] = ACTIONS(3160), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2077), + [sym_num_lit] = STATE(2077), + [sym_kwd_lit] = STATE(2077), + [sym_str_lit] = STATE(2077), + [sym_char_lit] = STATE(2077), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2077), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2077), + [sym_set_lit] = STATE(2077), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2077), + [sym_splicing_read_cond_lit] = STATE(2077), + [sym_var_quoting_lit] = STATE(2077), + [sym_quoting_lit] = STATE(2077), + [sym_syn_quoting_lit] = STATE(2077), + [sym_unquote_splicing_lit] = STATE(2077), + [sym_unquoting_lit] = STATE(2077), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2077), + [sym_package_lit] = STATE(2077), + [sym_include_reader_macro] = STATE(2077), + [sym_complex_num_lit] = STATE(2077), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3924), + [sym_comment] = ACTIONS(3924), + [anon_sym_POUND_] = ACTIONS(3861), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4060), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4060), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_POUND_CARET] = ACTIONS(3872), + [anon_sym_LPAREN] = ACTIONS(3875), + [anon_sym_RPAREN] = ACTIONS(3878), + [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(4023), - [anon_sym_cl] = ACTIONS(3162), - [aux_sym_accumulation_verb_token1] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_and] = ACTIONS(3165), - [anon_sym_as] = ACTIONS(3165), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_until] = ACTIONS(3165), - [anon_sym_repeat] = ACTIONS(3165), - [anon_sym_when] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_unless] = ACTIONS(3165), - [anon_sym_always] = ACTIONS(3165), - [anon_sym_thereis] = ACTIONS(3165), - [anon_sym_never] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_finally] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_initially] = ACTIONS(3165), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(4025), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(4060), + [anon_sym_cl] = ACTIONS(3880), + [aux_sym_accumulation_verb_token1] = ACTIONS(3883), + [anon_sym_for] = ACTIONS(3883), + [anon_sym_and] = ACTIONS(3883), + [anon_sym_as] = ACTIONS(3883), + [anon_sym_with] = ACTIONS(3883), + [anon_sym_do] = ACTIONS(3883), + [anon_sym_while] = ACTIONS(3883), + [anon_sym_until] = ACTIONS(3883), + [anon_sym_repeat] = ACTIONS(3883), + [anon_sym_when] = ACTIONS(3883), + [anon_sym_if] = ACTIONS(3883), + [anon_sym_unless] = ACTIONS(3883), + [anon_sym_always] = ACTIONS(3883), + [anon_sym_thereis] = ACTIONS(3883), + [anon_sym_never] = ACTIONS(3883), + [anon_sym_else] = ACTIONS(3883), + [anon_sym_finally] = ACTIONS(3883), + [anon_sym_return] = ACTIONS(3883), + [anon_sym_initially] = ACTIONS(3883), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4062), + [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(180), - [sym_dis_expr] = STATE(180), - [sym__form] = STATE(2099), - [sym_num_lit] = STATE(2099), - [sym_kwd_lit] = STATE(2099), - [sym_str_lit] = STATE(2099), - [sym_char_lit] = STATE(2099), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2099), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2099), - [sym_set_lit] = STATE(2099), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2099), - [sym_splicing_read_cond_lit] = STATE(2099), - [sym_var_quoting_lit] = STATE(2099), - [sym_quoting_lit] = STATE(2099), - [sym_syn_quoting_lit] = STATE(2099), - [sym_unquote_splicing_lit] = STATE(2099), - [sym_unquoting_lit] = STATE(2099), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2099), - [sym_package_lit] = STATE(2099), - [sym_include_reader_macro] = STATE(2099), - [sym_complex_num_lit] = STATE(2099), - [aux_sym_dis_expr_repeat1] = STATE(180), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(4027), - [sym_comment] = ACTIONS(4027), - [anon_sym_POUND_] = ACTIONS(3335), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(4030), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(4030), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_POUND_CARET] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_RPAREN] = ACTIONS(3352), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2082), + [sym_num_lit] = STATE(2082), + [sym_kwd_lit] = STATE(2082), + [sym_str_lit] = STATE(2082), + [sym_char_lit] = STATE(2082), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2082), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2082), + [sym_set_lit] = STATE(2082), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2082), + [sym_splicing_read_cond_lit] = STATE(2082), + [sym_var_quoting_lit] = STATE(2082), + [sym_quoting_lit] = STATE(2082), + [sym_syn_quoting_lit] = STATE(2082), + [sym_unquote_splicing_lit] = STATE(2082), + [sym_unquoting_lit] = STATE(2082), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2082), + [sym_package_lit] = STATE(2082), + [sym_include_reader_macro] = STATE(2082), + [sym_complex_num_lit] = STATE(2082), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(3924), + [sym_comment] = ACTIONS(3924), + [anon_sym_POUND_] = ACTIONS(3861), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4064), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3866), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4064), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_POUND_CARET] = ACTIONS(3872), + [anon_sym_LPAREN] = ACTIONS(3875), + [anon_sym_RPAREN] = ACTIONS(3878), + [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(4030), - [anon_sym_cl] = ACTIONS(3354), - [aux_sym_accumulation_verb_token1] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_and] = ACTIONS(3357), - [anon_sym_as] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_until] = ACTIONS(3357), - [anon_sym_repeat] = ACTIONS(3357), - [anon_sym_when] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_unless] = ACTIONS(3357), - [anon_sym_always] = ACTIONS(3357), - [anon_sym_thereis] = ACTIONS(3357), - [anon_sym_never] = ACTIONS(3357), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_finally] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_initially] = ACTIONS(3357), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(4032), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(4064), + [anon_sym_cl] = ACTIONS(3880), + [aux_sym_accumulation_verb_token1] = ACTIONS(3883), + [anon_sym_for] = ACTIONS(3883), + [anon_sym_and] = ACTIONS(3883), + [anon_sym_as] = ACTIONS(3883), + [anon_sym_with] = ACTIONS(3883), + [anon_sym_do] = ACTIONS(3883), + [anon_sym_while] = ACTIONS(3883), + [anon_sym_until] = ACTIONS(3883), + [anon_sym_repeat] = ACTIONS(3883), + [anon_sym_when] = ACTIONS(3883), + [anon_sym_if] = ACTIONS(3883), + [anon_sym_unless] = ACTIONS(3883), + [anon_sym_always] = ACTIONS(3883), + [anon_sym_thereis] = ACTIONS(3883), + [anon_sym_never] = ACTIONS(3883), + [anon_sym_else] = ACTIONS(3883), + [anon_sym_finally] = ACTIONS(3883), + [anon_sym_return] = ACTIONS(3883), + [anon_sym_initially] = ACTIONS(3883), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4066), + [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(181), - [sym_dis_expr] = STATE(181), - [sym__form] = STATE(2097), - [sym_num_lit] = STATE(2097), - [sym_kwd_lit] = STATE(2097), - [sym_str_lit] = STATE(2097), - [sym_char_lit] = STATE(2097), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2097), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2097), - [sym_set_lit] = STATE(2097), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2097), - [sym_splicing_read_cond_lit] = STATE(2097), - [sym_var_quoting_lit] = STATE(2097), - [sym_quoting_lit] = STATE(2097), - [sym_syn_quoting_lit] = STATE(2097), - [sym_unquote_splicing_lit] = STATE(2097), - [sym_unquoting_lit] = STATE(2097), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2097), - [sym_package_lit] = STATE(2097), - [sym_include_reader_macro] = STATE(2097), - [sym_complex_num_lit] = STATE(2097), - [aux_sym_dis_expr_repeat1] = STATE(181), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(4034), - [sym_comment] = ACTIONS(4034), - [anon_sym_POUND_] = ACTIONS(3378), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(4037), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(4037), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_POUND_CARET] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3392), - [anon_sym_RPAREN] = ACTIONS(3395), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(108), + [sym_dis_expr] = STATE(108), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(108), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(4068), + [sym_comment] = ACTIONS(4068), + [anon_sym_POUND_] = ACTIONS(2046), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4071), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2051), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4071), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2054), + [anon_sym_POUND_CARET] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2060), + [anon_sym_RPAREN] = ACTIONS(2063), + [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(4037), - [anon_sym_cl] = ACTIONS(3397), - [aux_sym_accumulation_verb_token1] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3400), - [anon_sym_and] = ACTIONS(3400), - [anon_sym_as] = ACTIONS(3400), - [anon_sym_with] = ACTIONS(3400), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_while] = ACTIONS(3400), - [anon_sym_until] = ACTIONS(3400), - [anon_sym_repeat] = ACTIONS(3400), - [anon_sym_when] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_unless] = ACTIONS(3400), - [anon_sym_always] = ACTIONS(3400), - [anon_sym_thereis] = ACTIONS(3400), - [anon_sym_never] = ACTIONS(3400), - [anon_sym_else] = ACTIONS(3400), - [anon_sym_finally] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3400), - [anon_sym_initially] = ACTIONS(3400), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(4039), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(4071), + [anon_sym_cl] = ACTIONS(2065), + [aux_sym_accumulation_verb_token1] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_and] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_with] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_until] = ACTIONS(2068), + [anon_sym_repeat] = ACTIONS(2068), + [anon_sym_when] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_unless] = ACTIONS(2068), + [anon_sym_always] = ACTIONS(2068), + [anon_sym_thereis] = ACTIONS(2068), + [anon_sym_never] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_finally] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_initially] = ACTIONS(2068), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4073), + [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(215), - [sym_dis_expr] = STATE(215), - [sym__form] = STATE(2085), - [sym_num_lit] = STATE(2085), - [sym_kwd_lit] = STATE(2085), - [sym_str_lit] = STATE(2085), - [sym_char_lit] = STATE(2085), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2085), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2085), - [sym_set_lit] = STATE(2085), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2085), - [sym_splicing_read_cond_lit] = STATE(2085), - [sym_var_quoting_lit] = STATE(2085), - [sym_quoting_lit] = STATE(2085), - [sym_syn_quoting_lit] = STATE(2085), - [sym_unquote_splicing_lit] = STATE(2085), - [sym_unquoting_lit] = STATE(2085), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2085), - [sym_package_lit] = STATE(2085), - [sym_include_reader_macro] = STATE(2085), - [sym_complex_num_lit] = STATE(2085), - [aux_sym_dis_expr_repeat1] = STATE(215), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(4041), - [sym_comment] = ACTIONS(4041), - [anon_sym_POUND_] = ACTIONS(3143), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(4044), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(4044), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3151), - [anon_sym_POUND_CARET] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_RPAREN] = ACTIONS(3160), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2466), + [sym_num_lit] = STATE(2466), + [sym_kwd_lit] = STATE(2466), + [sym_str_lit] = STATE(2466), + [sym_char_lit] = STATE(2466), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2466), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2466), + [sym_set_lit] = STATE(2466), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2466), + [sym_splicing_read_cond_lit] = STATE(2466), + [sym_var_quoting_lit] = STATE(2466), + [sym_quoting_lit] = STATE(2466), + [sym_syn_quoting_lit] = STATE(2466), + [sym_unquote_splicing_lit] = STATE(2466), + [sym_unquoting_lit] = STATE(2466), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2466), + [sym_package_lit] = STATE(2466), + [sym_include_reader_macro] = STATE(2466), + [sym_complex_num_lit] = STATE(2466), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1472), + [sym_comment] = ACTIONS(1472), + [anon_sym_POUND_] = ACTIONS(1417), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4075), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1422), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4075), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym_POUND_CARET] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1434), + [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(4044), - [anon_sym_cl] = ACTIONS(3162), - [aux_sym_accumulation_verb_token1] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_and] = ACTIONS(3165), - [anon_sym_as] = ACTIONS(3165), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_until] = ACTIONS(3165), - [anon_sym_repeat] = ACTIONS(3165), - [anon_sym_when] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_unless] = ACTIONS(3165), - [anon_sym_always] = ACTIONS(3165), - [anon_sym_thereis] = ACTIONS(3165), - [anon_sym_never] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_finally] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_initially] = ACTIONS(3165), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(4046), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(4075), + [anon_sym_cl] = ACTIONS(1436), + [aux_sym_accumulation_verb_token1] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_and] = ACTIONS(1439), + [anon_sym_as] = ACTIONS(1439), + [anon_sym_with] = ACTIONS(1439), + [anon_sym_do] = ACTIONS(1439), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_until] = ACTIONS(1439), + [anon_sym_repeat] = ACTIONS(1439), + [anon_sym_when] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_unless] = ACTIONS(1439), + [anon_sym_always] = ACTIONS(1439), + [anon_sym_thereis] = ACTIONS(1439), + [anon_sym_never] = ACTIONS(1439), + [anon_sym_else] = ACTIONS(1439), + [anon_sym_finally] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1439), + [anon_sym_initially] = ACTIONS(1439), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4077), + [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(214), - [sym_dis_expr] = STATE(214), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2063), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2063), - [sym_set_lit] = STATE(2063), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(214), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(4048), - [sym_comment] = ACTIONS(4048), - [anon_sym_POUND_] = ACTIONS(4051), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(4054), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(4056), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(4054), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(4059), - [anon_sym_POUND_CARET] = ACTIONS(4062), - [anon_sym_LPAREN] = ACTIONS(4065), - [anon_sym_RPAREN] = ACTIONS(4068), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(275), + [sym_dis_expr] = STATE(275), + [sym__form] = STATE(2688), + [sym_num_lit] = STATE(2688), + [sym_kwd_lit] = STATE(2688), + [sym_str_lit] = STATE(2688), + [sym_char_lit] = STATE(2688), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2688), + [sym__bare_list_lit] = STATE(1967), + [sym_vec_lit] = STATE(2688), + [sym_set_lit] = STATE(2688), + [sym__bare_set_lit] = STATE(1966), + [sym_read_cond_lit] = STATE(2688), + [sym_splicing_read_cond_lit] = STATE(2688), + [sym_var_quoting_lit] = STATE(2688), + [sym_quoting_lit] = STATE(2688), + [sym_syn_quoting_lit] = STATE(2688), + [sym_unquote_splicing_lit] = STATE(2688), + [sym_unquoting_lit] = STATE(2688), + [sym_defun] = STATE(1967), + [sym_for_clause_word] = STATE(690), + [sym__for_part] = STATE(1553), + [sym_loop_macro] = STATE(1967), + [sym_path_lit] = STATE(2688), + [sym_package_lit] = STATE(2688), + [sym_include_reader_macro] = STATE(2688), + [sym_complex_num_lit] = STATE(2688), + [aux_sym_dis_expr_repeat1] = STATE(275), + [aux_sym_list_lit_repeat1] = STATE(2803), + [aux_sym_for_clause_repeat1] = STATE(1265), + [sym__ws] = ACTIONS(4079), + [sym_comment] = ACTIONS(4079), + [anon_sym_POUND_] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(4081), + [aux_sym_num_lit_token1] = ACTIONS(2949), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_nil_lit] = ACTIONS(4081), + [aux_sym_sym_lit_token1] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_POUND0A] = ACTIONS(2961), + [anon_sym_POUND0a] = ACTIONS(2961), + [anon_sym_POUND_QMARK] = ACTIONS(2963), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2965), + [anon_sym_POUND_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_COMMA_AT] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2975), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4054), - [anon_sym_cl] = ACTIONS(4070), - [aux_sym_accumulation_verb_token1] = ACTIONS(4073), - [anon_sym_for] = ACTIONS(4073), - [anon_sym_and] = ACTIONS(4073), - [anon_sym_as] = ACTIONS(4073), - [anon_sym_with] = ACTIONS(4073), - [anon_sym_do] = ACTIONS(4073), - [anon_sym_while] = ACTIONS(4073), - [anon_sym_until] = ACTIONS(4073), - [anon_sym_repeat] = ACTIONS(4073), - [anon_sym_when] = ACTIONS(4073), - [anon_sym_if] = ACTIONS(4073), - [anon_sym_unless] = ACTIONS(4073), - [anon_sym_always] = ACTIONS(4073), - [anon_sym_thereis] = ACTIONS(4073), - [anon_sym_never] = ACTIONS(4073), - [anon_sym_else] = ACTIONS(4073), - [anon_sym_finally] = ACTIONS(4073), - [anon_sym_return] = ACTIONS(4073), - [anon_sym_initially] = ACTIONS(4073), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(4075), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(4081), + [anon_sym_cl] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_across] = ACTIONS(2979), + [anon_sym_being] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [aux_sym_for_clause_word_token1] = ACTIONS(2981), + [anon_sym_below] = ACTIONS(2979), + [anon_sym_above] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_to] = ACTIONS(2979), + [anon_sym_upto] = ACTIONS(2979), + [anon_sym_upfrom] = ACTIONS(2979), + [anon_sym_downto] = ACTIONS(2979), + [anon_sym_downfrom] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_then] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_POUNDP] = ACTIONS(2983), + [anon_sym_POUNDp] = ACTIONS(2983), + [sym_self_referential_reader_macro] = ACTIONS(4083), + [anon_sym_POUND_PLUS] = ACTIONS(2987), + [anon_sym_POUND_DASH] = ACTIONS(2987), + [anon_sym_POUNDC] = ACTIONS(2989), + [anon_sym_POUNDc] = ACTIONS(2989), }, [262] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2096), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2096), - [sym_set_lit] = STATE(2096), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(3404), - [sym_comment] = ACTIONS(3404), - [anon_sym_POUND_] = ACTIONS(3378), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(4077), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(4077), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_POUND_CARET] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3392), - [anon_sym_RPAREN] = ACTIONS(3395), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [sym__gap] = STATE(274), + [sym_dis_expr] = STATE(274), + [sym__form] = STATE(2681), + [sym_num_lit] = STATE(2681), + [sym_kwd_lit] = STATE(2681), + [sym_str_lit] = STATE(2681), + [sym_char_lit] = STATE(2681), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2681), + [sym__bare_list_lit] = STATE(1967), + [sym_vec_lit] = STATE(2681), + [sym_set_lit] = STATE(2681), + [sym__bare_set_lit] = STATE(1966), + [sym_read_cond_lit] = STATE(2681), + [sym_splicing_read_cond_lit] = STATE(2681), + [sym_var_quoting_lit] = STATE(2681), + [sym_quoting_lit] = STATE(2681), + [sym_syn_quoting_lit] = STATE(2681), + [sym_unquote_splicing_lit] = STATE(2681), + [sym_unquoting_lit] = STATE(2681), + [sym_defun] = STATE(1967), + [sym_for_clause_word] = STATE(690), + [sym__for_part] = STATE(1553), + [sym_loop_macro] = STATE(1967), + [sym_path_lit] = STATE(2681), + [sym_package_lit] = STATE(2681), + [sym_include_reader_macro] = STATE(2681), + [sym_complex_num_lit] = STATE(2681), + [aux_sym_dis_expr_repeat1] = STATE(274), + [aux_sym_list_lit_repeat1] = STATE(2803), + [aux_sym_for_clause_repeat1] = STATE(1266), + [sym__ws] = ACTIONS(4085), + [sym_comment] = ACTIONS(4085), + [anon_sym_POUND_] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(4087), + [aux_sym_num_lit_token1] = ACTIONS(2949), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_nil_lit] = ACTIONS(4087), + [aux_sym_sym_lit_token1] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_POUND0A] = ACTIONS(2961), + [anon_sym_POUND0a] = ACTIONS(2961), + [anon_sym_POUND_QMARK] = ACTIONS(2963), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2965), + [anon_sym_POUND_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_COMMA_AT] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2975), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4077), - [anon_sym_cl] = ACTIONS(3397), - [aux_sym_accumulation_verb_token1] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3400), - [anon_sym_and] = ACTIONS(3400), - [anon_sym_as] = ACTIONS(3400), - [anon_sym_with] = ACTIONS(3400), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_while] = ACTIONS(3400), - [anon_sym_until] = ACTIONS(3400), - [anon_sym_repeat] = ACTIONS(3400), - [anon_sym_when] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_unless] = ACTIONS(3400), - [anon_sym_always] = ACTIONS(3400), - [anon_sym_thereis] = ACTIONS(3400), - [anon_sym_never] = ACTIONS(3400), - [anon_sym_else] = ACTIONS(3400), - [anon_sym_finally] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3400), - [anon_sym_initially] = ACTIONS(3400), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(4079), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(4087), + [anon_sym_cl] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_across] = ACTIONS(2979), + [anon_sym_being] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [aux_sym_for_clause_word_token1] = ACTIONS(2981), + [anon_sym_below] = ACTIONS(2979), + [anon_sym_above] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_to] = ACTIONS(2979), + [anon_sym_upto] = ACTIONS(2979), + [anon_sym_upfrom] = ACTIONS(2979), + [anon_sym_downto] = ACTIONS(2979), + [anon_sym_downfrom] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_then] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_POUNDP] = ACTIONS(2983), + [anon_sym_POUNDp] = ACTIONS(2983), + [sym_self_referential_reader_macro] = ACTIONS(4089), + [anon_sym_POUND_PLUS] = ACTIONS(2987), + [anon_sym_POUND_DASH] = ACTIONS(2987), + [anon_sym_POUNDC] = ACTIONS(2989), + [anon_sym_POUNDc] = ACTIONS(2989), }, [263] = { - [sym__gap] = STATE(982), - [sym_dis_expr] = STATE(982), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2065), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2065), - [sym_set_lit] = STATE(2065), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(982), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(4081), - [sym_comment] = ACTIONS(4081), - [anon_sym_POUND_] = ACTIONS(4051), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(4084), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(4056), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(4084), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(4059), - [anon_sym_POUND_CARET] = ACTIONS(4062), - [anon_sym_LPAREN] = ACTIONS(4065), - [anon_sym_RPAREN] = ACTIONS(4068), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4084), - [anon_sym_cl] = ACTIONS(4070), - [aux_sym_accumulation_verb_token1] = ACTIONS(4073), - [anon_sym_for] = ACTIONS(4073), - [anon_sym_and] = ACTIONS(4073), - [anon_sym_as] = ACTIONS(4073), - [anon_sym_with] = ACTIONS(4073), - [anon_sym_do] = ACTIONS(4073), - [anon_sym_while] = ACTIONS(4073), - [anon_sym_until] = ACTIONS(4073), - [anon_sym_repeat] = ACTIONS(4073), - [anon_sym_when] = ACTIONS(4073), - [anon_sym_if] = ACTIONS(4073), - [anon_sym_unless] = ACTIONS(4073), - [anon_sym_always] = ACTIONS(4073), - [anon_sym_thereis] = ACTIONS(4073), - [anon_sym_never] = ACTIONS(4073), - [anon_sym_else] = ACTIONS(4073), - [anon_sym_finally] = ACTIONS(4073), - [anon_sym_return] = ACTIONS(4073), - [anon_sym_initially] = ACTIONS(4073), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(4086), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), - }, - [264] = { - [sym__gap] = STATE(184), - [sym_dis_expr] = STATE(184), - [sym__form] = STATE(2094), - [sym_num_lit] = STATE(2094), - [sym_kwd_lit] = STATE(2094), - [sym_str_lit] = STATE(2094), - [sym_char_lit] = STATE(2094), - [sym_sym_lit] = STATE(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2094), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2094), - [sym_set_lit] = STATE(2094), - [sym__bare_set_lit] = STATE(2537), - [sym_read_cond_lit] = STATE(2094), - [sym_splicing_read_cond_lit] = STATE(2094), - [sym_var_quoting_lit] = STATE(2094), - [sym_quoting_lit] = STATE(2094), - [sym_syn_quoting_lit] = STATE(2094), - [sym_unquote_splicing_lit] = STATE(2094), - [sym_unquoting_lit] = STATE(2094), - [sym_defun] = STATE(2536), - [sym_loop_macro] = STATE(2536), - [sym_path_lit] = STATE(2094), - [sym_package_lit] = STATE(2094), - [sym_include_reader_macro] = STATE(2094), - [sym_complex_num_lit] = STATE(2094), - [aux_sym_dis_expr_repeat1] = STATE(184), - [aux_sym_list_lit_repeat1] = STATE(2789), - [sym__ws] = ACTIONS(4088), - [sym_comment] = ACTIONS(4088), - [anon_sym_POUND_] = ACTIONS(3378), - [anon_sym_POUND] = ACTIONS(223), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(2242), + [sym_comment] = ACTIONS(2242), + [anon_sym_POUND_] = ACTIONS(2245), + [anon_sym_POUND] = ACTIONS(67), [anon_sym_DOT] = ACTIONS(4091), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(3383), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2250), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), [sym_nil_lit] = ACTIONS(4091), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_POUND_CARET] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3392), - [anon_sym_RPAREN] = ACTIONS(3395), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2253), + [anon_sym_POUND_CARET] = ACTIONS(2256), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_RPAREN] = ACTIONS(2262), + [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(3397), - [aux_sym_accumulation_verb_token1] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3400), - [anon_sym_and] = ACTIONS(3400), - [anon_sym_as] = ACTIONS(3400), - [anon_sym_with] = ACTIONS(3400), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_while] = ACTIONS(3400), - [anon_sym_until] = ACTIONS(3400), - [anon_sym_repeat] = ACTIONS(3400), - [anon_sym_when] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_unless] = ACTIONS(3400), - [anon_sym_always] = ACTIONS(3400), - [anon_sym_thereis] = ACTIONS(3400), - [anon_sym_never] = ACTIONS(3400), - [anon_sym_else] = ACTIONS(3400), - [anon_sym_finally] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3400), - [anon_sym_initially] = ACTIONS(3400), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), + [anon_sym_cl] = ACTIONS(2264), + [aux_sym_accumulation_verb_token1] = ACTIONS(2267), + [anon_sym_for] = ACTIONS(2267), + [anon_sym_and] = ACTIONS(2267), + [anon_sym_as] = ACTIONS(2267), + [anon_sym_with] = ACTIONS(2267), + [anon_sym_do] = ACTIONS(2267), + [anon_sym_while] = ACTIONS(2267), + [anon_sym_until] = ACTIONS(2267), + [anon_sym_repeat] = ACTIONS(2267), + [anon_sym_when] = ACTIONS(2267), + [anon_sym_if] = ACTIONS(2267), + [anon_sym_unless] = ACTIONS(2267), + [anon_sym_always] = ACTIONS(2267), + [anon_sym_thereis] = ACTIONS(2267), + [anon_sym_never] = ACTIONS(2267), + [anon_sym_else] = ACTIONS(2267), + [anon_sym_finally] = ACTIONS(2267), + [anon_sym_return] = ACTIONS(2267), + [anon_sym_initially] = ACTIONS(2267), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), [sym_self_referential_reader_macro] = ACTIONS(4093), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [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(208), - [sym_dis_expr] = STATE(208), - [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(2159), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2066), - [sym__bare_list_lit] = STATE(2536), - [sym_vec_lit] = STATE(2066), - [sym_set_lit] = STATE(2066), - [sym__bare_set_lit] = STATE(2537), - [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(2536), - [sym_loop_macro] = STATE(2536), - [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(208), - [aux_sym_list_lit_repeat1] = STATE(2789), + [264] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2108), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2108), + [sym_set_lit] = STATE(2108), + [sym__bare_set_lit] = STATE(2647), + [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(2648), + [sym_loop_macro] = STATE(2648), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2804), [sym__ws] = ACTIONS(4095), [sym_comment] = ACTIONS(4095), - [anon_sym_POUND_] = ACTIONS(4051), - [anon_sym_POUND] = ACTIONS(223), - [anon_sym_DOT] = ACTIONS(4098), - [aux_sym_num_lit_token1] = ACTIONS(227), - [anon_sym_COLON] = ACTIONS(4056), - [anon_sym_COLON_COLON] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym_nil_lit] = ACTIONS(4098), - [aux_sym_sym_lit_token1] = ACTIONS(237), - [anon_sym_CARET] = ACTIONS(4059), - [anon_sym_POUND_CARET] = ACTIONS(4062), - [anon_sym_LPAREN] = ACTIONS(4065), - [anon_sym_RPAREN] = ACTIONS(4068), - [anon_sym_POUND0A] = ACTIONS(254), - [anon_sym_POUND0a] = ACTIONS(254), - [anon_sym_POUND_QMARK] = ACTIONS(256), - [anon_sym_POUND_QMARK_AT] = ACTIONS(258), - [anon_sym_POUND_SQUOTE] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_BQUOTE] = ACTIONS(264), - [anon_sym_COMMA_AT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(268), + [anon_sym_POUND_] = ACTIONS(4098), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4101), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(4103), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4101), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(4106), + [anon_sym_POUND_CARET] = ACTIONS(4109), + [anon_sym_LPAREN] = ACTIONS(4112), + [anon_sym_RPAREN] = ACTIONS(4115), + [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(4101), + [anon_sym_cl] = ACTIONS(4117), + [aux_sym_accumulation_verb_token1] = ACTIONS(4120), + [anon_sym_for] = ACTIONS(4120), + [anon_sym_and] = ACTIONS(4120), + [anon_sym_as] = ACTIONS(4120), + [anon_sym_with] = ACTIONS(4120), + [anon_sym_do] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_until] = ACTIONS(4120), + [anon_sym_repeat] = ACTIONS(4120), + [anon_sym_when] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_unless] = ACTIONS(4120), + [anon_sym_always] = ACTIONS(4120), + [anon_sym_thereis] = ACTIONS(4120), + [anon_sym_never] = ACTIONS(4120), + [anon_sym_else] = ACTIONS(4120), + [anon_sym_finally] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_initially] = ACTIONS(4120), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4122), + [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(995), + [sym_dis_expr] = STATE(995), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(2271), + [sym_comment] = ACTIONS(2271), + [anon_sym_POUND_] = ACTIONS(2274), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4124), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2279), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4124), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_POUND_CARET] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_RPAREN] = ACTIONS(2291), + [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(4070), - [aux_sym_accumulation_verb_token1] = ACTIONS(4073), - [anon_sym_for] = ACTIONS(4073), - [anon_sym_and] = ACTIONS(4073), - [anon_sym_as] = ACTIONS(4073), - [anon_sym_with] = ACTIONS(4073), - [anon_sym_do] = ACTIONS(4073), - [anon_sym_while] = ACTIONS(4073), - [anon_sym_until] = ACTIONS(4073), - [anon_sym_repeat] = ACTIONS(4073), - [anon_sym_when] = ACTIONS(4073), - [anon_sym_if] = ACTIONS(4073), - [anon_sym_unless] = ACTIONS(4073), - [anon_sym_always] = ACTIONS(4073), - [anon_sym_thereis] = ACTIONS(4073), - [anon_sym_never] = ACTIONS(4073), - [anon_sym_else] = ACTIONS(4073), - [anon_sym_finally] = ACTIONS(4073), - [anon_sym_return] = ACTIONS(4073), - [anon_sym_initially] = ACTIONS(4073), - [anon_sym_POUNDP] = ACTIONS(279), - [anon_sym_POUNDp] = ACTIONS(279), - [sym_self_referential_reader_macro] = ACTIONS(4100), - [anon_sym_POUND_PLUS] = ACTIONS(283), - [anon_sym_POUND_DASH] = ACTIONS(283), - [anon_sym_POUNDC] = ACTIONS(285), - [anon_sym_POUNDc] = ACTIONS(285), + [sym_fancy_literal] = ACTIONS(4124), + [anon_sym_cl] = ACTIONS(2293), + [aux_sym_accumulation_verb_token1] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_and] = ACTIONS(2296), + [anon_sym_as] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_until] = ACTIONS(2296), + [anon_sym_repeat] = ACTIONS(2296), + [anon_sym_when] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_unless] = ACTIONS(2296), + [anon_sym_always] = ACTIONS(2296), + [anon_sym_thereis] = ACTIONS(2296), + [anon_sym_never] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_finally] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_initially] = ACTIONS(2296), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4126), + [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(1233), - [sym_dis_expr] = STATE(1233), - [sym__form] = STATE(2662), - [sym_num_lit] = STATE(2662), - [sym_kwd_lit] = STATE(2662), - [sym_str_lit] = STATE(2662), - [sym_char_lit] = STATE(2662), - [sym_sym_lit] = STATE(2744), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2662), - [sym__bare_list_lit] = STATE(1926), - [sym_vec_lit] = STATE(2662), - [sym_set_lit] = STATE(2662), - [sym__bare_set_lit] = STATE(1927), - [sym_read_cond_lit] = STATE(2662), - [sym_splicing_read_cond_lit] = STATE(2662), - [sym_var_quoting_lit] = STATE(2662), - [sym_quoting_lit] = STATE(2662), - [sym_syn_quoting_lit] = STATE(2662), - [sym_unquote_splicing_lit] = STATE(2662), - [sym_unquoting_lit] = STATE(2662), - [sym_defun] = STATE(1926), - [sym_for_clause_word] = STATE(418), - [sym_loop_macro] = STATE(1926), - [sym_path_lit] = STATE(2662), - [sym_package_lit] = STATE(2662), - [sym_include_reader_macro] = STATE(2662), - [sym_complex_num_lit] = STATE(2662), - [aux_sym_dis_expr_repeat1] = STATE(1233), - [aux_sym_list_lit_repeat1] = STATE(2781), - [sym__ws] = ACTIONS(4102), - [sym_comment] = ACTIONS(4102), - [anon_sym_POUND_] = ACTIONS(2310), - [anon_sym_POUND] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(4104), - [aux_sym_num_lit_token1] = ACTIONS(2316), - [anon_sym_COLON] = ACTIONS(2318), - [anon_sym_COLON_COLON] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2322), - [sym_nil_lit] = ACTIONS(4104), - [aux_sym_sym_lit_token1] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_POUND0A] = ACTIONS(2328), - [anon_sym_POUND0a] = ACTIONS(2328), - [anon_sym_POUND_QMARK] = ACTIONS(2330), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2332), - [anon_sym_POUND_SQUOTE] = ACTIONS(2334), - [anon_sym_SQUOTE] = ACTIONS(2336), - [anon_sym_BQUOTE] = ACTIONS(2338), - [anon_sym_COMMA_AT] = ACTIONS(2340), - [anon_sym_COMMA] = ACTIONS(2342), + [sym__gap] = STATE(235), + [sym_dis_expr] = STATE(235), + [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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(235), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(4128), + [sym_comment] = ACTIONS(4128), + [anon_sym_POUND_] = ACTIONS(3908), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4131), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3913), + [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(396), + [anon_sym_POUND_CARET] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(3916), + [anon_sym_RPAREN] = ACTIONS(405), + [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(4104), - [anon_sym_cl] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2346), - [anon_sym_across] = ACTIONS(2346), - [anon_sym_being] = ACTIONS(2346), - [anon_sym_using] = ACTIONS(2346), - [aux_sym_for_clause_word_token1] = ACTIONS(2348), - [anon_sym_below] = ACTIONS(2346), - [anon_sym_above] = ACTIONS(2346), - [anon_sym_from] = ACTIONS(2346), - [anon_sym_to] = ACTIONS(2346), - [anon_sym_upto] = ACTIONS(2346), - [anon_sym_upfrom] = ACTIONS(2346), - [anon_sym_downto] = ACTIONS(2346), - [anon_sym_downfrom] = ACTIONS(2346), - [anon_sym_on] = ACTIONS(2346), - [anon_sym_by] = ACTIONS(2346), - [anon_sym_then] = ACTIONS(2346), - [anon_sym_EQ] = ACTIONS(2346), - [anon_sym_POUNDP] = ACTIONS(2350), - [anon_sym_POUNDp] = ACTIONS(2350), - [sym_self_referential_reader_macro] = ACTIONS(4106), - [anon_sym_POUND_PLUS] = ACTIONS(2354), - [anon_sym_POUND_DASH] = ACTIONS(2354), - [anon_sym_POUNDC] = ACTIONS(2356), - [anon_sym_POUNDc] = ACTIONS(2356), + [sym_fancy_literal] = ACTIONS(4131), + [anon_sym_cl] = ACTIONS(3919), + [aux_sym_accumulation_verb_token1] = ACTIONS(412), + [anon_sym_for] = ACTIONS(412), + [anon_sym_and] = ACTIONS(412), + [anon_sym_as] = ACTIONS(412), + [anon_sym_with] = ACTIONS(412), + [anon_sym_do] = ACTIONS(412), + [anon_sym_while] = ACTIONS(412), + [anon_sym_until] = ACTIONS(412), + [anon_sym_repeat] = ACTIONS(412), + [anon_sym_when] = ACTIONS(412), + [anon_sym_if] = ACTIONS(412), + [anon_sym_unless] = ACTIONS(412), + [anon_sym_always] = ACTIONS(412), + [anon_sym_thereis] = ACTIONS(412), + [anon_sym_never] = ACTIONS(412), + [anon_sym_else] = ACTIONS(412), + [anon_sym_finally] = ACTIONS(412), + [anon_sym_return] = ACTIONS(412), + [anon_sym_initially] = ACTIONS(412), + [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), }, [267] = { - [sym__gap] = STATE(1233), - [sym_dis_expr] = STATE(1233), - [sym__form] = STATE(2709), - [sym_num_lit] = STATE(2709), - [sym_kwd_lit] = STATE(2709), - [sym_str_lit] = STATE(2709), - [sym_char_lit] = STATE(2709), - [sym_sym_lit] = STATE(2744), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2709), - [sym__bare_list_lit] = STATE(1926), - [sym_vec_lit] = STATE(2709), - [sym_set_lit] = STATE(2709), - [sym__bare_set_lit] = STATE(1927), - [sym_read_cond_lit] = STATE(2709), - [sym_splicing_read_cond_lit] = STATE(2709), - [sym_var_quoting_lit] = STATE(2709), - [sym_quoting_lit] = STATE(2709), - [sym_syn_quoting_lit] = STATE(2709), - [sym_unquote_splicing_lit] = STATE(2709), - [sym_unquoting_lit] = STATE(2709), - [sym_defun] = STATE(1926), - [sym_for_clause_word] = STATE(418), - [sym_loop_macro] = STATE(1926), - [sym_path_lit] = STATE(2709), - [sym_package_lit] = STATE(2709), - [sym_include_reader_macro] = STATE(2709), - [sym_complex_num_lit] = STATE(2709), - [aux_sym_dis_expr_repeat1] = STATE(1233), - [aux_sym_list_lit_repeat1] = STATE(2781), - [sym__ws] = ACTIONS(4102), - [sym_comment] = ACTIONS(4102), - [anon_sym_POUND_] = ACTIONS(2310), - [anon_sym_POUND] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(4108), - [aux_sym_num_lit_token1] = ACTIONS(2316), - [anon_sym_COLON] = ACTIONS(2318), - [anon_sym_COLON_COLON] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2322), - [sym_nil_lit] = ACTIONS(4108), - [aux_sym_sym_lit_token1] = ACTIONS(2324), + [sym__gap] = STATE(273), + [sym_dis_expr] = STATE(273), + [sym__form] = STATE(2745), + [sym_num_lit] = STATE(2745), + [sym_kwd_lit] = STATE(2745), + [sym_str_lit] = STATE(2745), + [sym_char_lit] = STATE(2745), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2745), + [sym__bare_list_lit] = STATE(1967), + [sym_vec_lit] = STATE(2745), + [sym_set_lit] = STATE(2745), + [sym__bare_set_lit] = STATE(1966), + [sym_read_cond_lit] = STATE(2745), + [sym_splicing_read_cond_lit] = STATE(2745), + [sym_var_quoting_lit] = STATE(2745), + [sym_quoting_lit] = STATE(2745), + [sym_syn_quoting_lit] = STATE(2745), + [sym_unquote_splicing_lit] = STATE(2745), + [sym_unquoting_lit] = STATE(2745), + [sym_defun] = STATE(1967), + [sym_for_clause_word] = STATE(690), + [sym__for_part] = STATE(1553), + [sym_loop_macro] = STATE(1967), + [sym_path_lit] = STATE(2745), + [sym_package_lit] = STATE(2745), + [sym_include_reader_macro] = STATE(2745), + [sym_complex_num_lit] = STATE(2745), + [aux_sym_dis_expr_repeat1] = STATE(273), + [aux_sym_list_lit_repeat1] = STATE(2803), + [aux_sym_for_clause_repeat1] = STATE(1271), + [sym__ws] = ACTIONS(4135), + [sym_comment] = ACTIONS(4135), + [anon_sym_POUND_] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(4137), + [aux_sym_num_lit_token1] = ACTIONS(2949), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_nil_lit] = ACTIONS(4137), + [aux_sym_sym_lit_token1] = ACTIONS(2957), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_POUND0A] = ACTIONS(2328), - [anon_sym_POUND0a] = ACTIONS(2328), - [anon_sym_POUND_QMARK] = ACTIONS(2330), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2332), - [anon_sym_POUND_SQUOTE] = ACTIONS(2334), - [anon_sym_SQUOTE] = ACTIONS(2336), - [anon_sym_BQUOTE] = ACTIONS(2338), - [anon_sym_COMMA_AT] = ACTIONS(2340), - [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_POUND0A] = ACTIONS(2961), + [anon_sym_POUND0a] = ACTIONS(2961), + [anon_sym_POUND_QMARK] = ACTIONS(2963), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2965), + [anon_sym_POUND_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_COMMA_AT] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2975), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4108), - [anon_sym_cl] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2346), - [anon_sym_across] = ACTIONS(2346), - [anon_sym_being] = ACTIONS(2346), - [anon_sym_using] = ACTIONS(2346), - [aux_sym_for_clause_word_token1] = ACTIONS(2348), - [anon_sym_below] = ACTIONS(2346), - [anon_sym_above] = ACTIONS(2346), - [anon_sym_from] = ACTIONS(2346), - [anon_sym_to] = ACTIONS(2346), - [anon_sym_upto] = ACTIONS(2346), - [anon_sym_upfrom] = ACTIONS(2346), - [anon_sym_downto] = ACTIONS(2346), - [anon_sym_downfrom] = ACTIONS(2346), - [anon_sym_on] = ACTIONS(2346), - [anon_sym_by] = ACTIONS(2346), - [anon_sym_then] = ACTIONS(2346), - [anon_sym_EQ] = ACTIONS(2346), - [anon_sym_POUNDP] = ACTIONS(2350), - [anon_sym_POUNDp] = ACTIONS(2350), - [sym_self_referential_reader_macro] = ACTIONS(4110), - [anon_sym_POUND_PLUS] = ACTIONS(2354), - [anon_sym_POUND_DASH] = ACTIONS(2354), - [anon_sym_POUNDC] = ACTIONS(2356), - [anon_sym_POUNDc] = ACTIONS(2356), + [sym_fancy_literal] = ACTIONS(4137), + [anon_sym_cl] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_across] = ACTIONS(2979), + [anon_sym_being] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [aux_sym_for_clause_word_token1] = ACTIONS(2981), + [anon_sym_below] = ACTIONS(2979), + [anon_sym_above] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_to] = ACTIONS(2979), + [anon_sym_upto] = ACTIONS(2979), + [anon_sym_upfrom] = ACTIONS(2979), + [anon_sym_downto] = ACTIONS(2979), + [anon_sym_downfrom] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_then] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_POUNDP] = ACTIONS(2983), + [anon_sym_POUNDp] = ACTIONS(2983), + [sym_self_referential_reader_macro] = ACTIONS(4139), + [anon_sym_POUND_PLUS] = ACTIONS(2987), + [anon_sym_POUND_DASH] = ACTIONS(2987), + [anon_sym_POUNDC] = ACTIONS(2989), + [anon_sym_POUNDc] = ACTIONS(2989), }, [268] = { - [sym__gap] = STATE(1233), - [sym_dis_expr] = STATE(1233), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2086), + [sym_num_lit] = STATE(2086), + [sym_kwd_lit] = STATE(2086), + [sym_str_lit] = STATE(2086), + [sym_char_lit] = STATE(2086), + [sym_sym_lit] = STATE(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2086), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2086), + [sym_set_lit] = STATE(2086), + [sym__bare_set_lit] = STATE(2647), + [sym_read_cond_lit] = STATE(2086), + [sym_splicing_read_cond_lit] = STATE(2086), + [sym_var_quoting_lit] = STATE(2086), + [sym_quoting_lit] = STATE(2086), + [sym_syn_quoting_lit] = STATE(2086), + [sym_unquote_splicing_lit] = STATE(2086), + [sym_unquoting_lit] = STATE(2086), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2086), + [sym_package_lit] = STATE(2086), + [sym_include_reader_macro] = STATE(2086), + [sym_complex_num_lit] = STATE(2086), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(4018), + [sym_comment] = ACTIONS(4018), + [anon_sym_POUND_] = ACTIONS(4021), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4141), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(4026), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4141), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(4029), + [anon_sym_POUND_CARET] = ACTIONS(4032), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym_RPAREN] = ACTIONS(4038), + [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(4141), + [anon_sym_cl] = ACTIONS(4040), + [aux_sym_accumulation_verb_token1] = ACTIONS(4043), + [anon_sym_for] = ACTIONS(4043), + [anon_sym_and] = ACTIONS(4043), + [anon_sym_as] = ACTIONS(4043), + [anon_sym_with] = ACTIONS(4043), + [anon_sym_do] = ACTIONS(4043), + [anon_sym_while] = ACTIONS(4043), + [anon_sym_until] = ACTIONS(4043), + [anon_sym_repeat] = ACTIONS(4043), + [anon_sym_when] = ACTIONS(4043), + [anon_sym_if] = ACTIONS(4043), + [anon_sym_unless] = ACTIONS(4043), + [anon_sym_always] = ACTIONS(4043), + [anon_sym_thereis] = ACTIONS(4043), + [anon_sym_never] = ACTIONS(4043), + [anon_sym_else] = ACTIONS(4043), + [anon_sym_finally] = ACTIONS(4043), + [anon_sym_return] = ACTIONS(4043), + [anon_sym_initially] = ACTIONS(4043), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4143), + [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(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(2492), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [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(2647), + [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(2804), + [sym__ws] = ACTIONS(3333), + [sym_comment] = ACTIONS(3333), + [anon_sym_POUND_] = ACTIONS(3336), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4145), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3341), + [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(3344), + [anon_sym_POUND_CARET] = ACTIONS(3347), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_RPAREN] = ACTIONS(3353), + [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(3355), + [aux_sym_accumulation_verb_token1] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_and] = ACTIONS(3358), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_with] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_until] = ACTIONS(3358), + [anon_sym_repeat] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_unless] = ACTIONS(3358), + [anon_sym_always] = ACTIONS(3358), + [anon_sym_thereis] = ACTIONS(3358), + [anon_sym_never] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_finally] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_initially] = ACTIONS(3358), + [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(1150), + [sym_dis_expr] = STATE(1150), + [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(2766), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2744), + [sym__bare_list_lit] = STATE(1967), + [sym_vec_lit] = STATE(2744), + [sym_set_lit] = STATE(2744), + [sym__bare_set_lit] = STATE(1966), + [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(1967), + [sym_for_clause_word] = STATE(430), + [sym_loop_macro] = STATE(1967), + [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(1150), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(4149), + [sym_comment] = ACTIONS(4149), + [anon_sym_POUND_] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(4151), + [aux_sym_num_lit_token1] = ACTIONS(2949), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_nil_lit] = ACTIONS(4151), + [aux_sym_sym_lit_token1] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_POUND0A] = ACTIONS(2961), + [anon_sym_POUND0a] = ACTIONS(2961), + [anon_sym_POUND_QMARK] = ACTIONS(2963), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2965), + [anon_sym_POUND_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_COMMA_AT] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2975), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4151), + [anon_sym_cl] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_across] = ACTIONS(2979), + [anon_sym_being] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [aux_sym_for_clause_word_token1] = ACTIONS(2981), + [anon_sym_below] = ACTIONS(2979), + [anon_sym_above] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_to] = ACTIONS(2979), + [anon_sym_upto] = ACTIONS(2979), + [anon_sym_upfrom] = ACTIONS(2979), + [anon_sym_downto] = ACTIONS(2979), + [anon_sym_downfrom] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_then] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_POUNDP] = ACTIONS(2983), + [anon_sym_POUNDp] = ACTIONS(2983), + [sym_self_referential_reader_macro] = ACTIONS(4153), + [anon_sym_POUND_PLUS] = ACTIONS(2987), + [anon_sym_POUND_DASH] = ACTIONS(2987), + [anon_sym_POUNDC] = ACTIONS(2989), + [anon_sym_POUNDc] = ACTIONS(2989), + }, + [271] = { + [sym__gap] = STATE(1150), + [sym_dis_expr] = STATE(1150), + [sym__form] = STATE(2704), + [sym_num_lit] = STATE(2704), + [sym_kwd_lit] = STATE(2704), + [sym_str_lit] = STATE(2704), + [sym_char_lit] = STATE(2704), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2704), + [sym__bare_list_lit] = STATE(1967), + [sym_vec_lit] = STATE(2704), + [sym_set_lit] = STATE(2704), + [sym__bare_set_lit] = STATE(1966), + [sym_read_cond_lit] = STATE(2704), + [sym_splicing_read_cond_lit] = STATE(2704), + [sym_var_quoting_lit] = STATE(2704), + [sym_quoting_lit] = STATE(2704), + [sym_syn_quoting_lit] = STATE(2704), + [sym_unquote_splicing_lit] = STATE(2704), + [sym_unquoting_lit] = STATE(2704), + [sym_defun] = STATE(1967), + [sym_for_clause_word] = STATE(430), + [sym_loop_macro] = STATE(1967), + [sym_path_lit] = STATE(2704), + [sym_package_lit] = STATE(2704), + [sym_include_reader_macro] = STATE(2704), + [sym_complex_num_lit] = STATE(2704), + [aux_sym_dis_expr_repeat1] = STATE(1150), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(4149), + [sym_comment] = ACTIONS(4149), + [anon_sym_POUND_] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(4155), + [aux_sym_num_lit_token1] = ACTIONS(2949), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_nil_lit] = ACTIONS(4155), + [aux_sym_sym_lit_token1] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_POUND0A] = ACTIONS(2961), + [anon_sym_POUND0a] = ACTIONS(2961), + [anon_sym_POUND_QMARK] = ACTIONS(2963), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2965), + [anon_sym_POUND_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_COMMA_AT] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2975), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4155), + [anon_sym_cl] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_across] = ACTIONS(2979), + [anon_sym_being] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [aux_sym_for_clause_word_token1] = ACTIONS(2981), + [anon_sym_below] = ACTIONS(2979), + [anon_sym_above] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_to] = ACTIONS(2979), + [anon_sym_upto] = ACTIONS(2979), + [anon_sym_upfrom] = ACTIONS(2979), + [anon_sym_downto] = ACTIONS(2979), + [anon_sym_downfrom] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_then] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_POUNDP] = ACTIONS(2983), + [anon_sym_POUNDp] = ACTIONS(2983), + [sym_self_referential_reader_macro] = ACTIONS(4157), + [anon_sym_POUND_PLUS] = ACTIONS(2987), + [anon_sym_POUND_DASH] = ACTIONS(2987), + [anon_sym_POUNDC] = ACTIONS(2989), + [anon_sym_POUNDc] = ACTIONS(2989), + }, + [272] = { + [sym__gap] = STATE(1150), + [sym_dis_expr] = STATE(1150), + [sym__form] = STATE(2706), + [sym_num_lit] = STATE(2706), + [sym_kwd_lit] = STATE(2706), + [sym_str_lit] = STATE(2706), + [sym_char_lit] = STATE(2706), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2706), + [sym__bare_list_lit] = STATE(1967), + [sym_vec_lit] = STATE(2706), + [sym_set_lit] = STATE(2706), + [sym__bare_set_lit] = STATE(1966), + [sym_read_cond_lit] = STATE(2706), + [sym_splicing_read_cond_lit] = STATE(2706), + [sym_var_quoting_lit] = STATE(2706), + [sym_quoting_lit] = STATE(2706), + [sym_syn_quoting_lit] = STATE(2706), + [sym_unquote_splicing_lit] = STATE(2706), + [sym_unquoting_lit] = STATE(2706), + [sym_defun] = STATE(1967), + [sym_for_clause_word] = STATE(430), + [sym_loop_macro] = STATE(1967), + [sym_path_lit] = STATE(2706), + [sym_package_lit] = STATE(2706), + [sym_include_reader_macro] = STATE(2706), + [sym_complex_num_lit] = STATE(2706), + [aux_sym_dis_expr_repeat1] = STATE(1150), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(4149), + [sym_comment] = ACTIONS(4149), + [anon_sym_POUND_] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(4159), + [aux_sym_num_lit_token1] = ACTIONS(2949), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_nil_lit] = ACTIONS(4159), + [aux_sym_sym_lit_token1] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_POUND0A] = ACTIONS(2961), + [anon_sym_POUND0a] = ACTIONS(2961), + [anon_sym_POUND_QMARK] = ACTIONS(2963), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2965), + [anon_sym_POUND_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_COMMA_AT] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2975), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4159), + [anon_sym_cl] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_across] = ACTIONS(2979), + [anon_sym_being] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [aux_sym_for_clause_word_token1] = ACTIONS(2981), + [anon_sym_below] = ACTIONS(2979), + [anon_sym_above] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_to] = ACTIONS(2979), + [anon_sym_upto] = ACTIONS(2979), + [anon_sym_upfrom] = ACTIONS(2979), + [anon_sym_downto] = ACTIONS(2979), + [anon_sym_downfrom] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_then] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_POUNDP] = ACTIONS(2983), + [anon_sym_POUNDp] = ACTIONS(2983), + [sym_self_referential_reader_macro] = ACTIONS(4161), + [anon_sym_POUND_PLUS] = ACTIONS(2987), + [anon_sym_POUND_DASH] = ACTIONS(2987), + [anon_sym_POUNDC] = ACTIONS(2989), + [anon_sym_POUNDc] = ACTIONS(2989), + }, + [273] = { + [sym__gap] = STATE(1150), + [sym_dis_expr] = STATE(1150), + [sym__form] = STATE(2679), + [sym_num_lit] = STATE(2679), + [sym_kwd_lit] = STATE(2679), + [sym_str_lit] = STATE(2679), + [sym_char_lit] = STATE(2679), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2679), + [sym__bare_list_lit] = STATE(1967), + [sym_vec_lit] = STATE(2679), + [sym_set_lit] = STATE(2679), + [sym__bare_set_lit] = STATE(1966), + [sym_read_cond_lit] = STATE(2679), + [sym_splicing_read_cond_lit] = STATE(2679), + [sym_var_quoting_lit] = STATE(2679), + [sym_quoting_lit] = STATE(2679), + [sym_syn_quoting_lit] = STATE(2679), + [sym_unquote_splicing_lit] = STATE(2679), + [sym_unquoting_lit] = STATE(2679), + [sym_defun] = STATE(1967), + [sym_for_clause_word] = STATE(430), + [sym_loop_macro] = STATE(1967), + [sym_path_lit] = STATE(2679), + [sym_package_lit] = STATE(2679), + [sym_include_reader_macro] = STATE(2679), + [sym_complex_num_lit] = STATE(2679), + [aux_sym_dis_expr_repeat1] = STATE(1150), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(4149), + [sym_comment] = ACTIONS(4149), + [anon_sym_POUND_] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(4163), + [aux_sym_num_lit_token1] = ACTIONS(2949), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_nil_lit] = ACTIONS(4163), + [aux_sym_sym_lit_token1] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_POUND0A] = ACTIONS(2961), + [anon_sym_POUND0a] = ACTIONS(2961), + [anon_sym_POUND_QMARK] = ACTIONS(2963), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2965), + [anon_sym_POUND_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_COMMA_AT] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2975), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4163), + [anon_sym_cl] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_across] = ACTIONS(2979), + [anon_sym_being] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [aux_sym_for_clause_word_token1] = ACTIONS(2981), + [anon_sym_below] = ACTIONS(2979), + [anon_sym_above] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_to] = ACTIONS(2979), + [anon_sym_upto] = ACTIONS(2979), + [anon_sym_upfrom] = ACTIONS(2979), + [anon_sym_downto] = ACTIONS(2979), + [anon_sym_downfrom] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_then] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_POUNDP] = ACTIONS(2983), + [anon_sym_POUNDp] = ACTIONS(2983), + [sym_self_referential_reader_macro] = ACTIONS(4165), + [anon_sym_POUND_PLUS] = ACTIONS(2987), + [anon_sym_POUND_DASH] = ACTIONS(2987), + [anon_sym_POUNDC] = ACTIONS(2989), + [anon_sym_POUNDc] = ACTIONS(2989), + }, + [274] = { + [sym__gap] = STATE(1150), + [sym_dis_expr] = STATE(1150), + [sym__form] = STATE(2737), + [sym_num_lit] = STATE(2737), + [sym_kwd_lit] = STATE(2737), + [sym_str_lit] = STATE(2737), + [sym_char_lit] = STATE(2737), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2737), + [sym__bare_list_lit] = STATE(1967), + [sym_vec_lit] = STATE(2737), + [sym_set_lit] = STATE(2737), + [sym__bare_set_lit] = STATE(1966), + [sym_read_cond_lit] = STATE(2737), + [sym_splicing_read_cond_lit] = STATE(2737), + [sym_var_quoting_lit] = STATE(2737), + [sym_quoting_lit] = STATE(2737), + [sym_syn_quoting_lit] = STATE(2737), + [sym_unquote_splicing_lit] = STATE(2737), + [sym_unquoting_lit] = STATE(2737), + [sym_defun] = STATE(1967), + [sym_for_clause_word] = STATE(430), + [sym_loop_macro] = STATE(1967), + [sym_path_lit] = STATE(2737), + [sym_package_lit] = STATE(2737), + [sym_include_reader_macro] = STATE(2737), + [sym_complex_num_lit] = STATE(2737), + [aux_sym_dis_expr_repeat1] = STATE(1150), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(4149), + [sym_comment] = ACTIONS(4149), + [anon_sym_POUND_] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(4167), + [aux_sym_num_lit_token1] = ACTIONS(2949), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_nil_lit] = ACTIONS(4167), + [aux_sym_sym_lit_token1] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_POUND0A] = ACTIONS(2961), + [anon_sym_POUND0a] = ACTIONS(2961), + [anon_sym_POUND_QMARK] = ACTIONS(2963), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2965), + [anon_sym_POUND_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_COMMA_AT] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2975), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4167), + [anon_sym_cl] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_across] = ACTIONS(2979), + [anon_sym_being] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [aux_sym_for_clause_word_token1] = ACTIONS(2981), + [anon_sym_below] = ACTIONS(2979), + [anon_sym_above] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_to] = ACTIONS(2979), + [anon_sym_upto] = ACTIONS(2979), + [anon_sym_upfrom] = ACTIONS(2979), + [anon_sym_downto] = ACTIONS(2979), + [anon_sym_downfrom] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_then] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_POUNDP] = ACTIONS(2983), + [anon_sym_POUNDp] = ACTIONS(2983), + [sym_self_referential_reader_macro] = ACTIONS(4169), + [anon_sym_POUND_PLUS] = ACTIONS(2987), + [anon_sym_POUND_DASH] = ACTIONS(2987), + [anon_sym_POUNDC] = ACTIONS(2989), + [anon_sym_POUNDc] = ACTIONS(2989), + }, + [275] = { + [sym__gap] = STATE(1150), + [sym_dis_expr] = STATE(1150), + [sym__form] = STATE(2727), + [sym_num_lit] = STATE(2727), + [sym_kwd_lit] = STATE(2727), + [sym_str_lit] = STATE(2727), + [sym_char_lit] = STATE(2727), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2727), + [sym__bare_list_lit] = STATE(1967), + [sym_vec_lit] = STATE(2727), + [sym_set_lit] = STATE(2727), + [sym__bare_set_lit] = STATE(1966), + [sym_read_cond_lit] = STATE(2727), + [sym_splicing_read_cond_lit] = STATE(2727), + [sym_var_quoting_lit] = STATE(2727), + [sym_quoting_lit] = STATE(2727), + [sym_syn_quoting_lit] = STATE(2727), + [sym_unquote_splicing_lit] = STATE(2727), + [sym_unquoting_lit] = STATE(2727), + [sym_defun] = STATE(1967), + [sym_for_clause_word] = STATE(430), + [sym_loop_macro] = STATE(1967), + [sym_path_lit] = STATE(2727), + [sym_package_lit] = STATE(2727), + [sym_include_reader_macro] = STATE(2727), + [sym_complex_num_lit] = STATE(2727), + [aux_sym_dis_expr_repeat1] = STATE(1150), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(4149), + [sym_comment] = ACTIONS(4149), + [anon_sym_POUND_] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(4171), + [aux_sym_num_lit_token1] = ACTIONS(2949), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_nil_lit] = ACTIONS(4171), + [aux_sym_sym_lit_token1] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_POUND0A] = ACTIONS(2961), + [anon_sym_POUND0a] = ACTIONS(2961), + [anon_sym_POUND_QMARK] = ACTIONS(2963), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2965), + [anon_sym_POUND_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_COMMA_AT] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2975), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4171), + [anon_sym_cl] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_across] = ACTIONS(2979), + [anon_sym_being] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [aux_sym_for_clause_word_token1] = ACTIONS(2981), + [anon_sym_below] = ACTIONS(2979), + [anon_sym_above] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_to] = ACTIONS(2979), + [anon_sym_upto] = ACTIONS(2979), + [anon_sym_upfrom] = ACTIONS(2979), + [anon_sym_downto] = ACTIONS(2979), + [anon_sym_downfrom] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_then] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_POUNDP] = ACTIONS(2983), + [anon_sym_POUNDp] = ACTIONS(2983), + [sym_self_referential_reader_macro] = ACTIONS(4173), + [anon_sym_POUND_PLUS] = ACTIONS(2987), + [anon_sym_POUND_DASH] = ACTIONS(2987), + [anon_sym_POUNDC] = ACTIONS(2989), + [anon_sym_POUNDc] = ACTIONS(2989), + }, + [276] = { + [sym__gap] = STATE(1150), + [sym_dis_expr] = STATE(1150), + [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(2766), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2743), + [sym__bare_list_lit] = STATE(1967), + [sym_vec_lit] = STATE(2743), + [sym_set_lit] = STATE(2743), + [sym__bare_set_lit] = STATE(1966), + [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(1967), + [sym_for_clause_word] = STATE(430), + [sym_loop_macro] = STATE(1967), + [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(1150), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(4149), + [sym_comment] = ACTIONS(4149), + [anon_sym_POUND_] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(4175), + [aux_sym_num_lit_token1] = ACTIONS(2949), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_nil_lit] = ACTIONS(4175), + [aux_sym_sym_lit_token1] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_POUND0A] = ACTIONS(2961), + [anon_sym_POUND0a] = ACTIONS(2961), + [anon_sym_POUND_QMARK] = ACTIONS(2963), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2965), + [anon_sym_POUND_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_COMMA_AT] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2975), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4175), + [anon_sym_cl] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_across] = ACTIONS(2979), + [anon_sym_being] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [aux_sym_for_clause_word_token1] = ACTIONS(2981), + [anon_sym_below] = ACTIONS(2979), + [anon_sym_above] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_to] = ACTIONS(2979), + [anon_sym_upto] = ACTIONS(2979), + [anon_sym_upfrom] = ACTIONS(2979), + [anon_sym_downto] = ACTIONS(2979), + [anon_sym_downfrom] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_then] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_POUNDP] = ACTIONS(2983), + [anon_sym_POUNDp] = ACTIONS(2983), + [sym_self_referential_reader_macro] = ACTIONS(4177), + [anon_sym_POUND_PLUS] = ACTIONS(2987), + [anon_sym_POUND_DASH] = ACTIONS(2987), + [anon_sym_POUNDC] = ACTIONS(2989), + [anon_sym_POUNDc] = ACTIONS(2989), + }, + [277] = { + [sym__gap] = STATE(1150), + [sym_dis_expr] = STATE(1150), [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(2744), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), [sym_list_lit] = STATE(2683), - [sym__bare_list_lit] = STATE(1926), + [sym__bare_list_lit] = STATE(1967), [sym_vec_lit] = STATE(2683), [sym_set_lit] = STATE(2683), - [sym__bare_set_lit] = STATE(1927), + [sym__bare_set_lit] = STATE(1966), [sym_read_cond_lit] = STATE(2683), [sym_splicing_read_cond_lit] = STATE(2683), [sym_var_quoting_lit] = STATE(2683), @@ -33508,367 +34292,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(2683), [sym_unquote_splicing_lit] = STATE(2683), [sym_unquoting_lit] = STATE(2683), - [sym_defun] = STATE(1926), - [sym_for_clause_word] = STATE(418), - [sym_loop_macro] = STATE(1926), + [sym_defun] = STATE(1967), + [sym_for_clause_word] = STATE(430), + [sym_loop_macro] = STATE(1967), [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(1233), - [aux_sym_list_lit_repeat1] = STATE(2781), - [sym__ws] = ACTIONS(4102), - [sym_comment] = ACTIONS(4102), - [anon_sym_POUND_] = ACTIONS(2310), - [anon_sym_POUND] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(4112), - [aux_sym_num_lit_token1] = ACTIONS(2316), - [anon_sym_COLON] = ACTIONS(2318), - [anon_sym_COLON_COLON] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2322), - [sym_nil_lit] = ACTIONS(4112), - [aux_sym_sym_lit_token1] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_POUND0A] = ACTIONS(2328), - [anon_sym_POUND0a] = ACTIONS(2328), - [anon_sym_POUND_QMARK] = ACTIONS(2330), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2332), - [anon_sym_POUND_SQUOTE] = ACTIONS(2334), - [anon_sym_SQUOTE] = ACTIONS(2336), - [anon_sym_BQUOTE] = ACTIONS(2338), - [anon_sym_COMMA_AT] = ACTIONS(2340), - [anon_sym_COMMA] = ACTIONS(2342), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4112), - [anon_sym_cl] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2346), - [anon_sym_across] = ACTIONS(2346), - [anon_sym_being] = ACTIONS(2346), - [anon_sym_using] = ACTIONS(2346), - [aux_sym_for_clause_word_token1] = ACTIONS(2348), - [anon_sym_below] = ACTIONS(2346), - [anon_sym_above] = ACTIONS(2346), - [anon_sym_from] = ACTIONS(2346), - [anon_sym_to] = ACTIONS(2346), - [anon_sym_upto] = ACTIONS(2346), - [anon_sym_upfrom] = ACTIONS(2346), - [anon_sym_downto] = ACTIONS(2346), - [anon_sym_downfrom] = ACTIONS(2346), - [anon_sym_on] = ACTIONS(2346), - [anon_sym_by] = ACTIONS(2346), - [anon_sym_then] = ACTIONS(2346), - [anon_sym_EQ] = ACTIONS(2346), - [anon_sym_POUNDP] = ACTIONS(2350), - [anon_sym_POUNDp] = ACTIONS(2350), - [sym_self_referential_reader_macro] = ACTIONS(4114), - [anon_sym_POUND_PLUS] = ACTIONS(2354), - [anon_sym_POUND_DASH] = ACTIONS(2354), - [anon_sym_POUNDC] = ACTIONS(2356), - [anon_sym_POUNDc] = ACTIONS(2356), - }, - [269] = { - [sym__gap] = STATE(1233), - [sym_dis_expr] = STATE(1233), - [sym__form] = STATE(2718), - [sym_num_lit] = STATE(2718), - [sym_kwd_lit] = STATE(2718), - [sym_str_lit] = STATE(2718), - [sym_char_lit] = STATE(2718), - [sym_sym_lit] = STATE(2744), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2718), - [sym__bare_list_lit] = STATE(1926), - [sym_vec_lit] = STATE(2718), - [sym_set_lit] = STATE(2718), - [sym__bare_set_lit] = STATE(1927), - [sym_read_cond_lit] = STATE(2718), - [sym_splicing_read_cond_lit] = STATE(2718), - [sym_var_quoting_lit] = STATE(2718), - [sym_quoting_lit] = STATE(2718), - [sym_syn_quoting_lit] = STATE(2718), - [sym_unquote_splicing_lit] = STATE(2718), - [sym_unquoting_lit] = STATE(2718), - [sym_defun] = STATE(1926), - [sym_for_clause_word] = STATE(418), - [sym_loop_macro] = STATE(1926), - [sym_path_lit] = STATE(2718), - [sym_package_lit] = STATE(2718), - [sym_include_reader_macro] = STATE(2718), - [sym_complex_num_lit] = STATE(2718), - [aux_sym_dis_expr_repeat1] = STATE(1233), - [aux_sym_list_lit_repeat1] = STATE(2781), - [sym__ws] = ACTIONS(4102), - [sym_comment] = ACTIONS(4102), - [anon_sym_POUND_] = ACTIONS(2310), - [anon_sym_POUND] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(4116), - [aux_sym_num_lit_token1] = ACTIONS(2316), - [anon_sym_COLON] = ACTIONS(2318), - [anon_sym_COLON_COLON] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2322), - [sym_nil_lit] = ACTIONS(4116), - [aux_sym_sym_lit_token1] = ACTIONS(2324), + [aux_sym_dis_expr_repeat1] = STATE(1150), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(4149), + [sym_comment] = ACTIONS(4149), + [anon_sym_POUND_] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(4179), + [aux_sym_num_lit_token1] = ACTIONS(2949), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_nil_lit] = ACTIONS(4179), + [aux_sym_sym_lit_token1] = ACTIONS(2957), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_POUND0A] = ACTIONS(2328), - [anon_sym_POUND0a] = ACTIONS(2328), - [anon_sym_POUND_QMARK] = ACTIONS(2330), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2332), - [anon_sym_POUND_SQUOTE] = ACTIONS(2334), - [anon_sym_SQUOTE] = ACTIONS(2336), - [anon_sym_BQUOTE] = ACTIONS(2338), - [anon_sym_COMMA_AT] = ACTIONS(2340), - [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_POUND0A] = ACTIONS(2961), + [anon_sym_POUND0a] = ACTIONS(2961), + [anon_sym_POUND_QMARK] = ACTIONS(2963), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2965), + [anon_sym_POUND_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_COMMA_AT] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2975), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4116), - [anon_sym_cl] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2346), - [anon_sym_across] = ACTIONS(2346), - [anon_sym_being] = ACTIONS(2346), - [anon_sym_using] = ACTIONS(2346), - [aux_sym_for_clause_word_token1] = ACTIONS(2348), - [anon_sym_below] = ACTIONS(2346), - [anon_sym_above] = ACTIONS(2346), - [anon_sym_from] = ACTIONS(2346), - [anon_sym_to] = ACTIONS(2346), - [anon_sym_upto] = ACTIONS(2346), - [anon_sym_upfrom] = ACTIONS(2346), - [anon_sym_downto] = ACTIONS(2346), - [anon_sym_downfrom] = ACTIONS(2346), - [anon_sym_on] = ACTIONS(2346), - [anon_sym_by] = ACTIONS(2346), - [anon_sym_then] = ACTIONS(2346), - [anon_sym_EQ] = ACTIONS(2346), - [anon_sym_POUNDP] = ACTIONS(2350), - [anon_sym_POUNDp] = ACTIONS(2350), - [sym_self_referential_reader_macro] = ACTIONS(4118), - [anon_sym_POUND_PLUS] = ACTIONS(2354), - [anon_sym_POUND_DASH] = ACTIONS(2354), - [anon_sym_POUNDC] = ACTIONS(2356), - [anon_sym_POUNDc] = ACTIONS(2356), + [sym_fancy_literal] = ACTIONS(4179), + [anon_sym_cl] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_across] = ACTIONS(2979), + [anon_sym_being] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [aux_sym_for_clause_word_token1] = ACTIONS(2981), + [anon_sym_below] = ACTIONS(2979), + [anon_sym_above] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_to] = ACTIONS(2979), + [anon_sym_upto] = ACTIONS(2979), + [anon_sym_upfrom] = ACTIONS(2979), + [anon_sym_downto] = ACTIONS(2979), + [anon_sym_downfrom] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_then] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_POUNDP] = ACTIONS(2983), + [anon_sym_POUNDp] = ACTIONS(2983), + [sym_self_referential_reader_macro] = ACTIONS(4181), + [anon_sym_POUND_PLUS] = ACTIONS(2987), + [anon_sym_POUND_DASH] = ACTIONS(2987), + [anon_sym_POUNDC] = ACTIONS(2989), + [anon_sym_POUNDc] = ACTIONS(2989), }, - [270] = { - [sym__gap] = STATE(1233), - [sym_dis_expr] = STATE(1233), - [sym__form] = STATE(2660), - [sym_num_lit] = STATE(2660), - [sym_kwd_lit] = STATE(2660), - [sym_str_lit] = STATE(2660), - [sym_char_lit] = STATE(2660), - [sym_sym_lit] = STATE(2744), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2660), - [sym__bare_list_lit] = STATE(1926), - [sym_vec_lit] = STATE(2660), - [sym_set_lit] = STATE(2660), - [sym__bare_set_lit] = STATE(1927), - [sym_read_cond_lit] = STATE(2660), - [sym_splicing_read_cond_lit] = STATE(2660), - [sym_var_quoting_lit] = STATE(2660), - [sym_quoting_lit] = STATE(2660), - [sym_syn_quoting_lit] = STATE(2660), - [sym_unquote_splicing_lit] = STATE(2660), - [sym_unquoting_lit] = STATE(2660), - [sym_defun] = STATE(1926), - [sym_for_clause_word] = STATE(418), - [sym_loop_macro] = STATE(1926), - [sym_path_lit] = STATE(2660), - [sym_package_lit] = STATE(2660), - [sym_include_reader_macro] = STATE(2660), - [sym_complex_num_lit] = STATE(2660), - [aux_sym_dis_expr_repeat1] = STATE(1233), - [aux_sym_list_lit_repeat1] = STATE(2781), - [sym__ws] = ACTIONS(4102), - [sym_comment] = ACTIONS(4102), - [anon_sym_POUND_] = ACTIONS(2310), - [anon_sym_POUND] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(4120), - [aux_sym_num_lit_token1] = ACTIONS(2316), - [anon_sym_COLON] = ACTIONS(2318), - [anon_sym_COLON_COLON] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2322), - [sym_nil_lit] = ACTIONS(4120), - [aux_sym_sym_lit_token1] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_POUND0A] = ACTIONS(2328), - [anon_sym_POUND0a] = ACTIONS(2328), - [anon_sym_POUND_QMARK] = ACTIONS(2330), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2332), - [anon_sym_POUND_SQUOTE] = ACTIONS(2334), - [anon_sym_SQUOTE] = ACTIONS(2336), - [anon_sym_BQUOTE] = ACTIONS(2338), - [anon_sym_COMMA_AT] = ACTIONS(2340), - [anon_sym_COMMA] = ACTIONS(2342), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4120), - [anon_sym_cl] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2346), - [anon_sym_across] = ACTIONS(2346), - [anon_sym_being] = ACTIONS(2346), - [anon_sym_using] = ACTIONS(2346), - [aux_sym_for_clause_word_token1] = ACTIONS(2348), - [anon_sym_below] = ACTIONS(2346), - [anon_sym_above] = ACTIONS(2346), - [anon_sym_from] = ACTIONS(2346), - [anon_sym_to] = ACTIONS(2346), - [anon_sym_upto] = ACTIONS(2346), - [anon_sym_upfrom] = ACTIONS(2346), - [anon_sym_downto] = ACTIONS(2346), - [anon_sym_downfrom] = ACTIONS(2346), - [anon_sym_on] = ACTIONS(2346), - [anon_sym_by] = ACTIONS(2346), - [anon_sym_then] = ACTIONS(2346), - [anon_sym_EQ] = ACTIONS(2346), - [anon_sym_POUNDP] = ACTIONS(2350), - [anon_sym_POUNDp] = ACTIONS(2350), - [sym_self_referential_reader_macro] = ACTIONS(4122), - [anon_sym_POUND_PLUS] = ACTIONS(2354), - [anon_sym_POUND_DASH] = ACTIONS(2354), - [anon_sym_POUNDC] = ACTIONS(2356), - [anon_sym_POUNDc] = ACTIONS(2356), - }, - [271] = { - [sym__gap] = STATE(1233), - [sym_dis_expr] = STATE(1233), - [sym__form] = STATE(2696), - [sym_num_lit] = STATE(2696), - [sym_kwd_lit] = STATE(2696), - [sym_str_lit] = STATE(2696), - [sym_char_lit] = STATE(2696), - [sym_sym_lit] = STATE(2744), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(2696), - [sym__bare_list_lit] = STATE(1926), - [sym_vec_lit] = STATE(2696), - [sym_set_lit] = STATE(2696), - [sym__bare_set_lit] = STATE(1927), - [sym_read_cond_lit] = STATE(2696), - [sym_splicing_read_cond_lit] = STATE(2696), - [sym_var_quoting_lit] = STATE(2696), - [sym_quoting_lit] = STATE(2696), - [sym_syn_quoting_lit] = STATE(2696), - [sym_unquote_splicing_lit] = STATE(2696), - [sym_unquoting_lit] = STATE(2696), - [sym_defun] = STATE(1926), - [sym_for_clause_word] = STATE(418), - [sym_loop_macro] = STATE(1926), - [sym_path_lit] = STATE(2696), - [sym_package_lit] = STATE(2696), - [sym_include_reader_macro] = STATE(2696), - [sym_complex_num_lit] = STATE(2696), - [aux_sym_dis_expr_repeat1] = STATE(1233), - [aux_sym_list_lit_repeat1] = STATE(2781), - [sym__ws] = ACTIONS(4102), - [sym_comment] = ACTIONS(4102), - [anon_sym_POUND_] = ACTIONS(2310), - [anon_sym_POUND] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(4124), - [aux_sym_num_lit_token1] = ACTIONS(2316), - [anon_sym_COLON] = ACTIONS(2318), - [anon_sym_COLON_COLON] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2322), - [sym_nil_lit] = ACTIONS(4124), - [aux_sym_sym_lit_token1] = ACTIONS(2324), + [278] = { + [sym__gap] = STATE(1150), + [sym_dis_expr] = STATE(1150), + [sym__form] = STATE(2720), + [sym_num_lit] = STATE(2720), + [sym_kwd_lit] = STATE(2720), + [sym_str_lit] = STATE(2720), + [sym_char_lit] = STATE(2720), + [sym_sym_lit] = STATE(2766), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2720), + [sym__bare_list_lit] = STATE(1967), + [sym_vec_lit] = STATE(2720), + [sym_set_lit] = STATE(2720), + [sym__bare_set_lit] = STATE(1966), + [sym_read_cond_lit] = STATE(2720), + [sym_splicing_read_cond_lit] = STATE(2720), + [sym_var_quoting_lit] = STATE(2720), + [sym_quoting_lit] = STATE(2720), + [sym_syn_quoting_lit] = STATE(2720), + [sym_unquote_splicing_lit] = STATE(2720), + [sym_unquoting_lit] = STATE(2720), + [sym_defun] = STATE(1967), + [sym_for_clause_word] = STATE(430), + [sym_loop_macro] = STATE(1967), + [sym_path_lit] = STATE(2720), + [sym_package_lit] = STATE(2720), + [sym_include_reader_macro] = STATE(2720), + [sym_complex_num_lit] = STATE(2720), + [aux_sym_dis_expr_repeat1] = STATE(1150), + [aux_sym_list_lit_repeat1] = STATE(2803), + [sym__ws] = ACTIONS(4149), + [sym_comment] = ACTIONS(4149), + [anon_sym_POUND_] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(4183), + [aux_sym_num_lit_token1] = ACTIONS(2949), + [anon_sym_COLON] = ACTIONS(2951), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [sym_nil_lit] = ACTIONS(4183), + [aux_sym_sym_lit_token1] = ACTIONS(2957), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_POUND0A] = ACTIONS(2328), - [anon_sym_POUND0a] = ACTIONS(2328), - [anon_sym_POUND_QMARK] = ACTIONS(2330), - [anon_sym_POUND_QMARK_AT] = ACTIONS(2332), - [anon_sym_POUND_SQUOTE] = ACTIONS(2334), - [anon_sym_SQUOTE] = ACTIONS(2336), - [anon_sym_BQUOTE] = ACTIONS(2338), - [anon_sym_COMMA_AT] = ACTIONS(2340), - [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_POUND0A] = ACTIONS(2961), + [anon_sym_POUND0a] = ACTIONS(2961), + [anon_sym_POUND_QMARK] = ACTIONS(2963), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2965), + [anon_sym_POUND_SQUOTE] = ACTIONS(2967), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_BQUOTE] = ACTIONS(2971), + [anon_sym_COMMA_AT] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2975), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4124), - [anon_sym_cl] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2346), - [anon_sym_across] = ACTIONS(2346), - [anon_sym_being] = ACTIONS(2346), - [anon_sym_using] = ACTIONS(2346), - [aux_sym_for_clause_word_token1] = ACTIONS(2348), - [anon_sym_below] = ACTIONS(2346), - [anon_sym_above] = ACTIONS(2346), - [anon_sym_from] = ACTIONS(2346), - [anon_sym_to] = ACTIONS(2346), - [anon_sym_upto] = ACTIONS(2346), - [anon_sym_upfrom] = ACTIONS(2346), - [anon_sym_downto] = ACTIONS(2346), - [anon_sym_downfrom] = ACTIONS(2346), - [anon_sym_on] = ACTIONS(2346), - [anon_sym_by] = ACTIONS(2346), - [anon_sym_then] = ACTIONS(2346), - [anon_sym_EQ] = ACTIONS(2346), - [anon_sym_POUNDP] = ACTIONS(2350), - [anon_sym_POUNDp] = ACTIONS(2350), - [sym_self_referential_reader_macro] = ACTIONS(4126), - [anon_sym_POUND_PLUS] = ACTIONS(2354), - [anon_sym_POUND_DASH] = ACTIONS(2354), - [anon_sym_POUNDC] = ACTIONS(2356), - [anon_sym_POUNDc] = ACTIONS(2356), + [sym_fancy_literal] = ACTIONS(4183), + [anon_sym_cl] = ACTIONS(2977), + [anon_sym_in] = ACTIONS(2979), + [anon_sym_across] = ACTIONS(2979), + [anon_sym_being] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [aux_sym_for_clause_word_token1] = ACTIONS(2981), + [anon_sym_below] = ACTIONS(2979), + [anon_sym_above] = ACTIONS(2979), + [anon_sym_from] = ACTIONS(2979), + [anon_sym_to] = ACTIONS(2979), + [anon_sym_upto] = ACTIONS(2979), + [anon_sym_upfrom] = ACTIONS(2979), + [anon_sym_downto] = ACTIONS(2979), + [anon_sym_downfrom] = ACTIONS(2979), + [anon_sym_on] = ACTIONS(2979), + [anon_sym_by] = ACTIONS(2979), + [anon_sym_then] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2979), + [anon_sym_POUNDP] = ACTIONS(2983), + [anon_sym_POUNDp] = ACTIONS(2983), + [sym_self_referential_reader_macro] = ACTIONS(4185), + [anon_sym_POUND_PLUS] = ACTIONS(2987), + [anon_sym_POUND_DASH] = ACTIONS(2987), + [anon_sym_POUNDC] = ACTIONS(2989), + [anon_sym_POUNDc] = ACTIONS(2989), }, - [272] = { - [sym__gap] = STATE(1603), - [sym_dis_expr] = STATE(1603), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_defun_keyword] = STATE(666), - [sym_defun_header] = STATE(329), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(332), - [sym__ws] = ACTIONS(4128), - [sym_comment] = ACTIONS(4128), - [anon_sym_POUND_] = ACTIONS(4130), + [279] = { + [sym__gap] = STATE(1614), + [sym_dis_expr] = STATE(1614), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_defun_keyword] = STATE(902), + [sym_defun_header] = STATE(402), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(291), + [sym__ws] = ACTIONS(4187), + [sym_comment] = ACTIONS(4187), + [anon_sym_POUND_] = ACTIONS(4189), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4134), + [anon_sym_RPAREN] = ACTIONS(4193), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -33879,71 +34495,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(4132), - [anon_sym_cl] = ACTIONS(4136), - [anon_sym_loop] = ACTIONS(4138), - [anon_sym_defun] = ACTIONS(4140), - [anon_sym_defmacro] = ACTIONS(4140), - [anon_sym_defgeneric] = ACTIONS(4140), - [anon_sym_defmethod] = ACTIONS(4140), - [anon_sym_lambda] = ACTIONS(4142), + [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(4144), + [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), }, - [273] = { - [sym__gap] = STATE(1602), - [sym_dis_expr] = STATE(1602), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_defun_keyword] = STATE(666), - [sym_defun_header] = STATE(314), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), + [280] = { + [sym__gap] = STATE(1621), + [sym_dis_expr] = STATE(1621), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_defun_keyword] = STATE(902), + [sym_defun_header] = STATE(312), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), [aux_sym__bare_list_lit_repeat1] = STATE(313), - [sym__ws] = ACTIONS(4146), - [sym_comment] = ACTIONS(4146), - [anon_sym_POUND_] = ACTIONS(4130), + [sym__ws] = ACTIONS(4205), + [sym_comment] = ACTIONS(4205), + [anon_sym_POUND_] = ACTIONS(4189), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4148), + [anon_sym_RPAREN] = ACTIONS(4207), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -33954,71 +34570,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(4132), - [anon_sym_cl] = ACTIONS(4150), - [anon_sym_loop] = ACTIONS(4152), - [anon_sym_defun] = ACTIONS(4140), - [anon_sym_defmacro] = ACTIONS(4140), - [anon_sym_defgeneric] = ACTIONS(4140), - [anon_sym_defmethod] = ACTIONS(4140), - [anon_sym_lambda] = ACTIONS(4142), + [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(4144), + [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), }, - [274] = { - [sym__gap] = STATE(1598), - [sym_dis_expr] = STATE(1598), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_defun_keyword] = STATE(666), - [sym_defun_header] = STATE(318), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(319), - [sym__ws] = ACTIONS(4154), - [sym_comment] = ACTIONS(4154), - [anon_sym_POUND_] = ACTIONS(4130), + [281] = { + [sym__gap] = STATE(1615), + [sym_dis_expr] = STATE(1615), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_defun_keyword] = STATE(902), + [sym_defun_header] = STATE(387), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(386), + [sym__ws] = ACTIONS(4213), + [sym_comment] = ACTIONS(4213), + [anon_sym_POUND_] = ACTIONS(4189), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4156), + [anon_sym_RPAREN] = ACTIONS(4215), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -34029,71 +34645,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(4132), - [anon_sym_cl] = ACTIONS(4158), - [anon_sym_loop] = ACTIONS(4160), - [anon_sym_defun] = ACTIONS(4140), - [anon_sym_defmacro] = ACTIONS(4140), - [anon_sym_defgeneric] = ACTIONS(4140), - [anon_sym_defmethod] = ACTIONS(4140), - [anon_sym_lambda] = ACTIONS(4142), + [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(4144), + [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), }, - [275] = { - [sym__gap] = STATE(1595), - [sym_dis_expr] = STATE(1595), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_defun_keyword] = STATE(666), - [sym_defun_header] = STATE(292), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(295), - [sym__ws] = ACTIONS(4162), - [sym_comment] = ACTIONS(4162), - [anon_sym_POUND_] = ACTIONS(4130), + [282] = { + [sym__gap] = STATE(1616), + [sym_dis_expr] = STATE(1616), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_defun_keyword] = STATE(902), + [sym_defun_header] = STATE(375), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(374), + [sym__ws] = ACTIONS(4221), + [sym_comment] = ACTIONS(4221), + [anon_sym_POUND_] = ACTIONS(4189), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4164), + [anon_sym_RPAREN] = ACTIONS(4223), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -34104,71 +34720,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(4132), - [anon_sym_cl] = ACTIONS(4166), - [anon_sym_loop] = ACTIONS(4168), - [anon_sym_defun] = ACTIONS(4140), - [anon_sym_defmacro] = ACTIONS(4140), - [anon_sym_defgeneric] = ACTIONS(4140), - [anon_sym_defmethod] = ACTIONS(4140), - [anon_sym_lambda] = ACTIONS(4142), + [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(4144), + [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), }, - [276] = { - [sym__gap] = STATE(1599), - [sym_dis_expr] = STATE(1599), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_defun_keyword] = STATE(666), - [sym_defun_header] = STATE(335), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(334), - [sym__ws] = ACTIONS(4170), - [sym_comment] = ACTIONS(4170), - [anon_sym_POUND_] = ACTIONS(4130), + [283] = { + [sym__gap] = STATE(1613), + [sym_dis_expr] = STATE(1613), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_defun_keyword] = STATE(902), + [sym_defun_header] = STATE(305), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(304), + [sym__ws] = ACTIONS(4229), + [sym_comment] = ACTIONS(4229), + [anon_sym_POUND_] = ACTIONS(4189), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4172), + [anon_sym_RPAREN] = ACTIONS(4231), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -34179,71 +34795,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(4132), - [anon_sym_cl] = ACTIONS(4174), - [anon_sym_loop] = ACTIONS(4176), - [anon_sym_defun] = ACTIONS(4140), - [anon_sym_defmacro] = ACTIONS(4140), - [anon_sym_defgeneric] = ACTIONS(4140), - [anon_sym_defmethod] = ACTIONS(4140), - [anon_sym_lambda] = ACTIONS(4142), + [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(4144), + [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), }, - [277] = { - [sym__gap] = STATE(1601), - [sym_dis_expr] = STATE(1601), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_defun_keyword] = STATE(666), - [sym_defun_header] = STATE(345), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(343), - [sym__ws] = ACTIONS(4178), - [sym_comment] = ACTIONS(4178), - [anon_sym_POUND_] = ACTIONS(4130), + [284] = { + [sym__gap] = STATE(1617), + [sym_dis_expr] = STATE(1617), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_defun_keyword] = STATE(902), + [sym_defun_header] = STATE(364), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(363), + [sym__ws] = ACTIONS(4237), + [sym_comment] = ACTIONS(4237), + [anon_sym_POUND_] = ACTIONS(4189), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4180), + [anon_sym_RPAREN] = ACTIONS(4239), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -34254,71 +34870,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(4132), - [anon_sym_cl] = ACTIONS(4182), - [anon_sym_loop] = ACTIONS(4184), - [anon_sym_defun] = ACTIONS(4140), - [anon_sym_defmacro] = ACTIONS(4140), - [anon_sym_defgeneric] = ACTIONS(4140), - [anon_sym_defmethod] = ACTIONS(4140), - [anon_sym_lambda] = ACTIONS(4142), + [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(4144), + [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), }, - [278] = { - [sym__gap] = STATE(1604), - [sym_dis_expr] = STATE(1604), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_defun_keyword] = STATE(666), - [sym_defun_header] = STATE(360), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(361), - [sym__ws] = ACTIONS(4186), - [sym_comment] = ACTIONS(4186), - [anon_sym_POUND_] = ACTIONS(4130), + [285] = { + [sym__gap] = STATE(1618), + [sym_dis_expr] = STATE(1618), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_defun_keyword] = STATE(902), + [sym_defun_header] = STATE(349), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [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(4132), + [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(4132), + [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(4188), + [anon_sym_RPAREN] = ACTIONS(4247), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -34329,71 +34945,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(4132), - [anon_sym_cl] = ACTIONS(4190), - [anon_sym_loop] = ACTIONS(4192), - [anon_sym_defun] = ACTIONS(4140), - [anon_sym_defmacro] = ACTIONS(4140), - [anon_sym_defgeneric] = ACTIONS(4140), - [anon_sym_defmethod] = ACTIONS(4140), - [anon_sym_lambda] = ACTIONS(4142), + [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(4144), + [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), }, - [279] = { - [sym__gap] = STATE(1597), - [sym_dis_expr] = STATE(1597), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_defun_keyword] = STATE(666), - [sym_defun_header] = STATE(371), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(301), - [sym__ws] = ACTIONS(4194), - [sym_comment] = ACTIONS(4194), - [anon_sym_POUND_] = ACTIONS(4130), + [286] = { + [sym__gap] = STATE(1619), + [sym_dis_expr] = STATE(1619), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_defun_keyword] = STATE(902), + [sym_defun_header] = STATE(336), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(335), + [sym__ws] = ACTIONS(4253), + [sym_comment] = ACTIONS(4253), + [anon_sym_POUND_] = ACTIONS(4189), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4196), + [anon_sym_RPAREN] = ACTIONS(4255), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -34404,71 +35020,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(4132), - [anon_sym_cl] = ACTIONS(4198), - [anon_sym_loop] = ACTIONS(4200), - [anon_sym_defun] = ACTIONS(4140), - [anon_sym_defmacro] = ACTIONS(4140), - [anon_sym_defgeneric] = ACTIONS(4140), - [anon_sym_defmethod] = ACTIONS(4140), - [anon_sym_lambda] = ACTIONS(4142), + [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(4144), + [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), }, - [280] = { - [sym__gap] = STATE(1596), - [sym_dis_expr] = STATE(1596), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_defun_keyword] = STATE(666), - [sym_defun_header] = STATE(338), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(397), - [sym__ws] = ACTIONS(4202), - [sym_comment] = ACTIONS(4202), - [anon_sym_POUND_] = ACTIONS(4130), + [287] = { + [sym__gap] = STATE(1620), + [sym_dis_expr] = STATE(1620), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_defun_keyword] = STATE(902), + [sym_defun_header] = STATE(323), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(322), + [sym__ws] = ACTIONS(4261), + [sym_comment] = ACTIONS(4261), + [anon_sym_POUND_] = ACTIONS(4189), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4204), + [anon_sym_RPAREN] = ACTIONS(4263), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -34479,71 +35095,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(4132), - [anon_sym_cl] = ACTIONS(4206), - [anon_sym_loop] = ACTIONS(4208), - [anon_sym_defun] = ACTIONS(4140), - [anon_sym_defmacro] = ACTIONS(4140), - [anon_sym_defgeneric] = ACTIONS(4140), - [anon_sym_defmethod] = ACTIONS(4140), - [anon_sym_lambda] = ACTIONS(4142), + [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(4144), + [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), }, - [281] = { - [sym__gap] = STATE(1600), - [sym_dis_expr] = STATE(1600), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_defun_keyword] = STATE(666), - [sym_defun_header] = STATE(391), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(390), - [sym__ws] = ACTIONS(4210), - [sym_comment] = ACTIONS(4210), - [anon_sym_POUND_] = ACTIONS(4130), + [288] = { + [sym__gap] = STATE(1622), + [sym_dis_expr] = STATE(1622), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_defun_keyword] = STATE(902), + [sym_defun_header] = STATE(311), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(310), + [sym__ws] = ACTIONS(4269), + [sym_comment] = ACTIONS(4269), + [anon_sym_POUND_] = ACTIONS(4189), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4212), + [anon_sym_RPAREN] = ACTIONS(4271), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -34554,137 +35170,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(4132), - [anon_sym_cl] = ACTIONS(4214), - [anon_sym_loop] = ACTIONS(4216), - [anon_sym_defun] = ACTIONS(4140), - [anon_sym_defmacro] = ACTIONS(4140), - [anon_sym_defgeneric] = ACTIONS(4140), - [anon_sym_defmethod] = ACTIONS(4140), - [anon_sym_lambda] = ACTIONS(4142), + [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(4144), + [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), }, - [282] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4218), - [sym_comment] = ACTIONS(4218), - [anon_sym_POUND_] = ACTIONS(4221), - [anon_sym_POUND] = ACTIONS(4224), - [anon_sym_DOT] = ACTIONS(4227), - [aux_sym_num_lit_token1] = ACTIONS(4230), - [anon_sym_COLON] = ACTIONS(4233), - [anon_sym_COLON_COLON] = ACTIONS(4236), - [anon_sym_DQUOTE] = ACTIONS(4239), - [sym_nil_lit] = ACTIONS(4227), - [aux_sym_sym_lit_token1] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4245), - [anon_sym_POUND_CARET] = ACTIONS(4248), - [anon_sym_LPAREN] = ACTIONS(4251), - [anon_sym_RPAREN] = ACTIONS(4254), - [anon_sym_RBRACE] = ACTIONS(4254), - [anon_sym_POUND0A] = ACTIONS(4256), - [anon_sym_POUND0a] = ACTIONS(4256), - [anon_sym_POUND_QMARK] = ACTIONS(4259), - [anon_sym_POUND_QMARK_AT] = ACTIONS(4262), - [anon_sym_POUND_SQUOTE] = ACTIONS(4265), - [anon_sym_SQUOTE] = ACTIONS(4268), - [anon_sym_BQUOTE] = ACTIONS(4271), - [anon_sym_COMMA_AT] = ACTIONS(4274), - [anon_sym_COMMA] = ACTIONS(4277), + [289] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [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(4227), - [anon_sym_cl] = ACTIONS(4280), - [anon_sym_POUNDP] = ACTIONS(4283), - [anon_sym_POUNDp] = ACTIONS(4283), - [sym_self_referential_reader_macro] = ACTIONS(4286), - [anon_sym_POUND_PLUS] = ACTIONS(4289), - [anon_sym_POUND_DASH] = ACTIONS(4289), - [anon_sym_POUNDC] = ACTIONS(4292), - [anon_sym_POUNDc] = ACTIONS(4292), + [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), }, - [283] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [290] = { + [sym__gap] = STATE(390), + [sym_dis_expr] = STATE(390), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(390), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4297), + [anon_sym_RPAREN] = ACTIONS(4356), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -34695,63 +35311,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(4132), + [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(4144), + [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), }, - [284] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [291] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4299), + [anon_sym_RPAREN] = ACTIONS(4360), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -34762,63 +35378,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(4132), + [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(4144), + [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), }, - [285] = { - [sym__gap] = STATE(294), - [sym_dis_expr] = STATE(294), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(294), - [sym__ws] = ACTIONS(4301), - [sym_comment] = ACTIONS(4301), + [292] = { + [sym__gap] = STATE(396), + [sym_dis_expr] = STATE(396), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(396), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4303), + [anon_sym_RPAREN] = ACTIONS(4364), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -34829,63 +35445,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(4132), + [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(4144), + [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), }, - [286] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [293] = { + [sym__gap] = STATE(325), + [sym_dis_expr] = STATE(325), + [sym__form] = STATE(2021), + [sym_num_lit] = STATE(2021), + [sym_kwd_lit] = STATE(2021), + [sym_str_lit] = STATE(2021), + [sym_char_lit] = STATE(2021), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2021), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(2021), + [sym_set_lit] = STATE(2021), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(2021), + [sym_splicing_read_cond_lit] = STATE(2021), + [sym_var_quoting_lit] = STATE(2021), + [sym_quoting_lit] = STATE(2021), + [sym_syn_quoting_lit] = STATE(2021), + [sym_unquote_splicing_lit] = STATE(2021), + [sym_unquoting_lit] = STATE(2021), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(2021), + [sym_package_lit] = STATE(2021), + [sym_include_reader_macro] = STATE(2021), + [sym_complex_num_lit] = STATE(2021), + [aux_sym_source_repeat1] = STATE(325), + [aux_sym_list_lit_repeat1] = STATE(2825), + [ts_builtin_sym_end] = ACTIONS(4366), + [sym__ws] = ACTIONS(4368), + [sym_comment] = ACTIONS(4368), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4305), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -34896,63 +35512,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(4132), + [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(4144), + [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), }, - [287] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [294] = { + [sym__gap] = STATE(334), + [sym_dis_expr] = STATE(334), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(334), + [sym__ws] = ACTIONS(4370), + [sym_comment] = ACTIONS(4370), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4307), + [anon_sym_RBRACE] = ACTIONS(4372), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -34963,63 +35579,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(4132), + [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(4144), + [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), }, - [288] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [295] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4309), + [anon_sym_RPAREN] = ACTIONS(4374), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -35030,63 +35646,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(4132), + [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(4144), + [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), }, - [289] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [296] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4311), + [anon_sym_RPAREN] = ACTIONS(4376), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -35097,63 +35713,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(4132), + [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(4144), + [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), }, - [290] = { - [sym__gap] = STATE(287), - [sym_dis_expr] = STATE(287), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(287), - [sym__ws] = ACTIONS(4313), - [sym_comment] = ACTIONS(4313), + [297] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4315), + [anon_sym_RPAREN] = ACTIONS(4378), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -35164,63 +35780,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(4132), + [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(4144), + [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), }, - [291] = { - [sym__gap] = STATE(288), - [sym_dis_expr] = STATE(288), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(288), - [sym__ws] = ACTIONS(4317), - [sym_comment] = ACTIONS(4317), + [298] = { + [sym__gap] = STATE(395), + [sym_dis_expr] = STATE(395), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(395), + [sym__ws] = ACTIONS(4380), + [sym_comment] = ACTIONS(4380), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4319), + [anon_sym_RPAREN] = ACTIONS(4382), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -35231,63 +35847,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(4132), + [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(4144), + [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), }, - [292] = { - [sym__gap] = STATE(296), - [sym_dis_expr] = STATE(296), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(299), - [sym__ws] = ACTIONS(4321), - [sym_comment] = ACTIONS(4321), + [299] = { + [sym__gap] = STATE(292), + [sym_dis_expr] = STATE(292), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(393), + [sym__ws] = ACTIONS(4384), + [sym_comment] = ACTIONS(4384), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4323), + [anon_sym_RPAREN] = ACTIONS(4382), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -35298,63 +35914,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(4132), + [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(4144), + [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), }, - [293] = { - [sym__gap] = STATE(305), - [sym_dis_expr] = STATE(305), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(306), - [sym__ws] = ACTIONS(4325), - [sym_comment] = ACTIONS(4325), + [300] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4327), + [anon_sym_RBRACE] = ACTIONS(4386), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -35365,63 +35981,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(4132), + [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(4144), + [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), }, - [294] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [301] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4329), + [anon_sym_RPAREN] = ACTIONS(4388), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -35432,63 +36048,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(4132), + [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(4144), + [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), }, - [295] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [302] = { + [sym__gap] = STATE(295), + [sym_dis_expr] = STATE(295), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(295), + [sym__ws] = ACTIONS(4390), + [sym_comment] = ACTIONS(4390), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4331), + [anon_sym_RPAREN] = ACTIONS(4392), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -35499,63 +36115,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(4132), + [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(4144), + [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), }, - [296] = { - [sym__gap] = STATE(307), - [sym_dis_expr] = STATE(307), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(307), - [sym__ws] = ACTIONS(4333), - [sym_comment] = ACTIONS(4333), + [303] = { + [sym__gap] = STATE(345), + [sym_dis_expr] = STATE(345), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(345), + [sym__ws] = ACTIONS(4394), + [sym_comment] = ACTIONS(4394), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4327), + [anon_sym_RBRACE] = ACTIONS(4396), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -35566,63 +36182,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(4132), + [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(4144), + [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), }, - [297] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [304] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4335), + [anon_sym_RPAREN] = ACTIONS(4398), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -35633,63 +36249,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(4132), + [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(4144), + [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), }, - [298] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [305] = { + [sym__gap] = STATE(298), + [sym_dis_expr] = STATE(298), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(297), + [sym__ws] = ACTIONS(4400), + [sym_comment] = ACTIONS(4400), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4337), + [anon_sym_RPAREN] = ACTIONS(4402), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -35700,63 +36316,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(4132), + [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(4144), + [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), }, - [299] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [306] = { + [sym__gap] = STATE(300), + [sym_dis_expr] = STATE(300), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(300), + [sym__ws] = ACTIONS(4404), + [sym_comment] = ACTIONS(4404), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4339), + [anon_sym_RBRACE] = ACTIONS(4406), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -35767,63 +36383,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(4132), + [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(4144), + [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), }, - [300] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [307] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4341), + [anon_sym_RPAREN] = ACTIONS(4408), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -35834,63 +36450,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(4132), + [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(4144), + [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), }, - [301] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [308] = { + [sym__gap] = STATE(296), + [sym_dis_expr] = STATE(296), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(296), + [sym__ws] = ACTIONS(4410), + [sym_comment] = ACTIONS(4410), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4343), + [anon_sym_RPAREN] = ACTIONS(4412), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -35901,63 +36517,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(4132), + [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(4144), + [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), }, - [302] = { - [sym__gap] = STATE(286), - [sym_dis_expr] = STATE(286), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(286), - [sym__ws] = ACTIONS(4345), - [sym_comment] = ACTIONS(4345), + [309] = { + [sym__gap] = STATE(302), + [sym_dis_expr] = STATE(302), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(301), + [sym__ws] = ACTIONS(4414), + [sym_comment] = ACTIONS(4414), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4347), + [anon_sym_RPAREN] = ACTIONS(4412), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -35968,63 +36584,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(4132), + [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(4144), + [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), }, - [303] = { - [sym__gap] = STATE(290), - [sym_dis_expr] = STATE(290), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(297), - [sym__ws] = ACTIONS(4349), - [sym_comment] = ACTIONS(4349), + [310] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4347), + [anon_sym_RPAREN] = ACTIONS(4416), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -36035,130 +36651,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(4132), + [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(4144), + [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), }, - [304] = { - [sym__gap] = STATE(692), - [sym_dis_expr] = STATE(692), - [sym__form] = STATE(983), - [sym_num_lit] = STATE(983), - [sym_kwd_lit] = STATE(983), - [sym_str_lit] = STATE(983), - [sym_char_lit] = STATE(983), - [sym_sym_lit] = STATE(1129), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(983), - [sym__bare_list_lit] = STATE(1135), - [sym_vec_lit] = STATE(983), - [sym_set_lit] = STATE(983), - [sym__bare_set_lit] = STATE(1150), - [sym_read_cond_lit] = STATE(983), - [sym_splicing_read_cond_lit] = STATE(983), - [sym_var_quoting_lit] = STATE(983), - [sym_quoting_lit] = STATE(983), - [sym_syn_quoting_lit] = STATE(983), - [sym_unquote_splicing_lit] = STATE(983), - [sym_unquoting_lit] = STATE(983), - [sym_defun] = STATE(1135), - [sym_loop_macro] = STATE(1135), - [sym_path_lit] = STATE(983), - [sym_package_lit] = STATE(983), - [sym_include_reader_macro] = STATE(983), - [sym_complex_num_lit] = STATE(983), - [aux_sym_dis_expr_repeat1] = STATE(692), - [aux_sym_list_lit_repeat1] = STATE(2796), - [aux_sym_do_clause_repeat1] = STATE(41), - [sym__ws] = ACTIONS(4351), - [sym_comment] = ACTIONS(4351), + [311] = { + [sym__gap] = STATE(308), + [sym_dis_expr] = STATE(308), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(307), + [sym__ws] = ACTIONS(4418), + [sym_comment] = ACTIONS(4418), [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(827), - [aux_sym_num_lit_token1] = ACTIONS(829), - [anon_sym_COLON] = ACTIONS(4353), - [anon_sym_COLON_COLON] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym_nil_lit] = ACTIONS(827), - [aux_sym_sym_lit_token1] = ACTIONS(837), + [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(4355), - [anon_sym_POUND0A] = ACTIONS(839), - [anon_sym_POUND0a] = ACTIONS(839), - [anon_sym_POUND_QMARK] = ACTIONS(841), - [anon_sym_POUND_QMARK_AT] = ACTIONS(843), - [anon_sym_POUND_SQUOTE] = ACTIONS(845), - [anon_sym_SQUOTE] = ACTIONS(847), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_COMMA_AT] = ACTIONS(851), - [anon_sym_COMMA] = ACTIONS(853), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(4420), + [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(827), - [anon_sym_cl] = ACTIONS(4357), - [anon_sym_POUNDP] = ACTIONS(855), - [anon_sym_POUNDp] = ACTIONS(855), - [sym_self_referential_reader_macro] = ACTIONS(857), - [anon_sym_POUND_PLUS] = ACTIONS(859), - [anon_sym_POUND_DASH] = ACTIONS(859), - [anon_sym_POUNDC] = ACTIONS(861), - [anon_sym_POUNDc] = ACTIONS(861), + [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), }, - [305] = { - [sym__gap] = STATE(312), - [sym_dis_expr] = STATE(312), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(312), - [sym__ws] = ACTIONS(4359), - [sym_comment] = ACTIONS(4359), + [312] = { + [sym__gap] = STATE(357), + [sym_dis_expr] = STATE(357), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(358), + [sym__ws] = ACTIONS(4422), + [sym_comment] = ACTIONS(4422), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4361), + [anon_sym_RPAREN] = ACTIONS(4424), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -36169,63 +36785,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(4132), + [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(4144), + [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), }, - [306] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [313] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4363), + [anon_sym_RPAREN] = ACTIONS(4426), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -36236,63 +36852,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(4132), + [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(4144), + [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), }, - [307] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [314] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4365), + [anon_sym_RPAREN] = ACTIONS(4428), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -36303,63 +36919,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(4132), + [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(4144), + [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), }, - [308] = { - [sym__gap] = STATE(300), - [sym_dis_expr] = STATE(300), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(300), - [sym__ws] = ACTIONS(4367), - [sym_comment] = ACTIONS(4367), + [315] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4369), + [anon_sym_RPAREN] = ACTIONS(4430), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -36370,63 +36986,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(4132), + [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(4144), + [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), }, - [309] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [316] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4371), + [anon_sym_RPAREN] = ACTIONS(4432), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -36437,63 +37053,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(4132), + [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(4144), + [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), }, - [310] = { - [sym__gap] = STATE(285), - [sym_dis_expr] = STATE(285), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(284), - [sym__ws] = ACTIONS(4373), - [sym_comment] = ACTIONS(4373), + [317] = { + [sym__gap] = STATE(314), + [sym_dis_expr] = STATE(314), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(314), + [sym__ws] = ACTIONS(4434), + [sym_comment] = ACTIONS(4434), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4369), + [anon_sym_RPAREN] = ACTIONS(4436), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -36504,63 +37120,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(4132), + [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(4144), + [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), }, - [311] = { - [sym__gap] = STATE(326), - [sym_dis_expr] = STATE(326), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(326), - [sym__ws] = ACTIONS(4375), - [sym_comment] = ACTIONS(4375), + [318] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4377), + [anon_sym_RPAREN] = ACTIONS(4438), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -36571,63 +37187,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(4132), + [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(4144), + [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), }, - [312] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [319] = { + [sym__gap] = STATE(315), + [sym_dis_expr] = STATE(315), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(315), + [sym__ws] = ACTIONS(4440), + [sym_comment] = ACTIONS(4440), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4379), + [anon_sym_RPAREN] = ACTIONS(4442), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -36638,63 +37254,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(4132), + [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(4144), + [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), }, - [313] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [320] = { + [sym__gap] = STATE(532), + [sym_dis_expr] = STATE(532), + [sym__form] = STATE(993), + [sym_num_lit] = STATE(993), + [sym_kwd_lit] = STATE(993), + [sym_str_lit] = STATE(993), + [sym_char_lit] = STATE(993), + [sym_sym_lit] = STATE(1158), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(993), + [sym__bare_list_lit] = STATE(1192), + [sym_vec_lit] = STATE(993), + [sym_set_lit] = STATE(993), + [sym__bare_set_lit] = STATE(1201), + [sym_read_cond_lit] = STATE(993), + [sym_splicing_read_cond_lit] = STATE(993), + [sym_var_quoting_lit] = STATE(993), + [sym_quoting_lit] = STATE(993), + [sym_syn_quoting_lit] = STATE(993), + [sym_unquote_splicing_lit] = STATE(993), + [sym_unquoting_lit] = STATE(993), + [sym_defun] = STATE(1192), + [sym_loop_macro] = STATE(1192), + [sym_path_lit] = STATE(993), + [sym_package_lit] = STATE(993), + [sym_include_reader_macro] = STATE(993), + [sym_complex_num_lit] = STATE(993), + [aux_sym_dis_expr_repeat1] = STATE(532), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym_do_clause_repeat1] = STATE(12), + [sym__ws] = ACTIONS(4444), + [sym_comment] = ACTIONS(4444), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(173), + [anon_sym_DOT] = ACTIONS(175), + [aux_sym_num_lit_token1] = ACTIONS(177), + [anon_sym_COLON] = ACTIONS(4446), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(183), + [sym_nil_lit] = ACTIONS(175), + [aux_sym_sym_lit_token1] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(4448), + [anon_sym_POUND0A] = ACTIONS(187), + [anon_sym_POUND0a] = ACTIONS(187), + [anon_sym_POUND_QMARK] = ACTIONS(189), + [anon_sym_POUND_QMARK_AT] = ACTIONS(191), + [anon_sym_POUND_SQUOTE] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [anon_sym_BQUOTE] = ACTIONS(197), + [anon_sym_COMMA_AT] = ACTIONS(199), + [anon_sym_COMMA] = ACTIONS(201), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(175), + [anon_sym_cl] = ACTIONS(4450), + [anon_sym_POUNDP] = ACTIONS(203), + [anon_sym_POUNDp] = ACTIONS(203), + [sym_self_referential_reader_macro] = ACTIONS(205), + [anon_sym_POUND_PLUS] = ACTIONS(207), + [anon_sym_POUND_DASH] = ACTIONS(207), + [anon_sym_POUNDC] = ACTIONS(209), + [anon_sym_POUNDc] = ACTIONS(209), + }, + [321] = { + [sym__gap] = STATE(317), + [sym_dis_expr] = STATE(317), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(316), + [sym__ws] = ACTIONS(4452), + [sym_comment] = ACTIONS(4452), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4381), + [anon_sym_RPAREN] = ACTIONS(4442), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -36705,63 +37388,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(4132), + [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(4144), + [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), }, - [314] = { - [sym__gap] = STATE(302), - [sym_dis_expr] = STATE(302), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), + [322] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), [aux_sym__bare_list_lit_repeat1] = STATE(289), - [sym__ws] = ACTIONS(4383), - [sym_comment] = ACTIONS(4383), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4385), + [anon_sym_RPAREN] = ACTIONS(4454), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -36772,63 +37455,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(4132), + [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(4144), + [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), }, - [315] = { - [sym__gap] = STATE(309), - [sym_dis_expr] = STATE(309), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(309), - [sym__ws] = ACTIONS(4387), - [sym_comment] = ACTIONS(4387), + [323] = { + [sym__gap] = STATE(319), + [sym_dis_expr] = STATE(319), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(318), + [sym__ws] = ACTIONS(4456), + [sym_comment] = ACTIONS(4456), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4389), + [anon_sym_RPAREN] = ACTIONS(4458), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -36839,63 +37522,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(4132), + [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(4144), + [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), }, - [316] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [324] = { + [sym__gap] = STATE(343), + [sym_dis_expr] = STATE(343), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(343), + [sym__ws] = ACTIONS(4460), + [sym_comment] = ACTIONS(4460), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4391), + [anon_sym_RBRACE] = ACTIONS(4462), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -36906,63 +37589,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(4132), + [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(4144), + [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), }, - [317] = { - [sym__gap] = STATE(344), - [sym_dis_expr] = STATE(344), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(344), - [sym__ws] = ACTIONS(4393), - [sym_comment] = ACTIONS(4393), + [325] = { + [sym__gap] = STATE(325), + [sym_dis_expr] = STATE(325), + [sym__form] = STATE(2021), + [sym_num_lit] = STATE(2021), + [sym_kwd_lit] = STATE(2021), + [sym_str_lit] = STATE(2021), + [sym_char_lit] = STATE(2021), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(2021), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(2021), + [sym_set_lit] = STATE(2021), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(2021), + [sym_splicing_read_cond_lit] = STATE(2021), + [sym_var_quoting_lit] = STATE(2021), + [sym_quoting_lit] = STATE(2021), + [sym_syn_quoting_lit] = STATE(2021), + [sym_unquote_splicing_lit] = STATE(2021), + [sym_unquoting_lit] = STATE(2021), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(2021), + [sym_package_lit] = STATE(2021), + [sym_include_reader_macro] = STATE(2021), + [sym_complex_num_lit] = STATE(2021), + [aux_sym_source_repeat1] = STATE(325), + [aux_sym_list_lit_repeat1] = STATE(2825), + [ts_builtin_sym_end] = ACTIONS(4464), + [sym__ws] = ACTIONS(4466), + [sym_comment] = ACTIONS(4466), + [anon_sym_POUND_] = ACTIONS(4469), + [anon_sym_POUND] = ACTIONS(4472), + [anon_sym_DOT] = ACTIONS(4475), + [aux_sym_num_lit_token1] = ACTIONS(4478), + [anon_sym_COLON] = ACTIONS(4481), + [anon_sym_COLON_COLON] = ACTIONS(4484), + [anon_sym_DQUOTE] = ACTIONS(4487), + [sym_nil_lit] = ACTIONS(4475), + [aux_sym_sym_lit_token1] = ACTIONS(4490), + [anon_sym_CARET] = ACTIONS(4493), + [anon_sym_POUND_CARET] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_POUND0A] = ACTIONS(4502), + [anon_sym_POUND0a] = ACTIONS(4502), + [anon_sym_POUND_QMARK] = ACTIONS(4505), + [anon_sym_POUND_QMARK_AT] = ACTIONS(4508), + [anon_sym_POUND_SQUOTE] = ACTIONS(4511), + [anon_sym_SQUOTE] = ACTIONS(4514), + [anon_sym_BQUOTE] = ACTIONS(4517), + [anon_sym_COMMA_AT] = ACTIONS(4520), + [anon_sym_COMMA] = ACTIONS(4523), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4475), + [anon_sym_cl] = ACTIONS(4526), + [anon_sym_POUNDP] = ACTIONS(4529), + [anon_sym_POUNDp] = ACTIONS(4529), + [sym_self_referential_reader_macro] = ACTIONS(4532), + [anon_sym_POUND_PLUS] = ACTIONS(4535), + [anon_sym_POUND_DASH] = ACTIONS(4535), + [anon_sym_POUNDC] = ACTIONS(4538), + [anon_sym_POUNDc] = ACTIONS(4538), + }, + [326] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4395), + [anon_sym_RPAREN] = ACTIONS(4541), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -36973,63 +37723,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(4132), + [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(4144), + [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), }, - [318] = { - [sym__gap] = STATE(337), - [sym_dis_expr] = STATE(337), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(341), - [sym__ws] = ACTIONS(4397), - [sym_comment] = ACTIONS(4397), + [327] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4399), + [anon_sym_RPAREN] = ACTIONS(4543), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -37040,63 +37790,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(4132), + [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(4144), + [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), }, - [319] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [328] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4401), + [anon_sym_RPAREN] = ACTIONS(4545), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -37107,63 +37857,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(4132), + [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(4144), + [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), }, - [320] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [329] = { + [sym__gap] = STATE(326), + [sym_dis_expr] = STATE(326), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(326), + [sym__ws] = ACTIONS(4547), + [sym_comment] = ACTIONS(4547), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4403), + [anon_sym_RPAREN] = ACTIONS(4549), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -37174,63 +37924,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(4132), + [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(4144), + [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), }, - [321] = { - [sym__gap] = STATE(342), - [sym_dis_expr] = STATE(342), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(342), - [sym__ws] = ACTIONS(4405), - [sym_comment] = ACTIONS(4405), + [330] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4407), + [anon_sym_RPAREN] = ACTIONS(4551), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -37241,63 +37991,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(4132), + [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(4144), + [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), }, - [322] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [331] = { + [sym__gap] = STATE(327), + [sym_dis_expr] = STATE(327), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(327), + [sym__ws] = ACTIONS(4553), + [sym_comment] = ACTIONS(4553), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4409), + [anon_sym_RPAREN] = ACTIONS(4555), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -37308,63 +38058,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(4132), + [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(4144), + [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), }, - [323] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [332] = { + [sym__gap] = STATE(329), + [sym_dis_expr] = STATE(329), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(328), + [sym__ws] = ACTIONS(4557), + [sym_comment] = ACTIONS(4557), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4411), + [anon_sym_RPAREN] = ACTIONS(4555), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -37375,63 +38125,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(4132), + [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(4144), + [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), }, - [324] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [333] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4413), + [anon_sym_RBRACE] = ACTIONS(4559), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -37442,63 +38192,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(4132), + [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(4144), + [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), }, - [325] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [334] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4415), + [anon_sym_RBRACE] = ACTIONS(4561), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -37509,63 +38259,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(4132), + [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(4144), + [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), }, - [326] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [335] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4417), + [anon_sym_RPAREN] = ACTIONS(4563), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -37576,63 +38326,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(4132), + [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(4144), + [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), }, - [327] = { - [sym__gap] = STATE(323), - [sym_dis_expr] = STATE(323), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(323), - [sym__ws] = ACTIONS(4419), - [sym_comment] = ACTIONS(4419), + [336] = { + [sym__gap] = STATE(331), + [sym_dis_expr] = STATE(331), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(330), + [sym__ws] = ACTIONS(4565), + [sym_comment] = ACTIONS(4565), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4421), + [anon_sym_RPAREN] = ACTIONS(4567), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -37643,63 +38393,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(4132), + [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(4144), + [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), }, - [328] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [337] = { + [sym__gap] = STATE(333), + [sym_dis_expr] = STATE(333), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(333), + [sym__ws] = ACTIONS(4569), + [sym_comment] = ACTIONS(4569), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4423), + [anon_sym_RBRACE] = ACTIONS(4571), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -37710,63 +38460,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(4132), + [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(4144), + [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), }, - [329] = { - [sym__gap] = STATE(351), - [sym_dis_expr] = STATE(351), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(352), - [sym__ws] = ACTIONS(4425), - [sym_comment] = ACTIONS(4425), + [338] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4427), + [anon_sym_RPAREN] = ACTIONS(4573), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -37777,63 +38527,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(4132), + [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(4144), + [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), }, - [330] = { - [sym__gap] = STATE(324), - [sym_dis_expr] = STATE(324), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(324), - [sym__ws] = ACTIONS(4429), - [sym_comment] = ACTIONS(4429), + [339] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4431), + [anon_sym_RPAREN] = ACTIONS(4575), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -37844,63 +38594,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(4132), + [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(4144), + [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), }, - [331] = { - [sym__gap] = STATE(395), - [sym_dis_expr] = STATE(395), - [sym__form] = STATE(1983), - [sym_num_lit] = STATE(1983), - [sym_kwd_lit] = STATE(1983), - [sym_str_lit] = STATE(1983), - [sym_char_lit] = STATE(1983), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1983), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1983), - [sym_set_lit] = STATE(1983), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1983), - [sym_splicing_read_cond_lit] = STATE(1983), - [sym_var_quoting_lit] = STATE(1983), - [sym_quoting_lit] = STATE(1983), - [sym_syn_quoting_lit] = STATE(1983), - [sym_unquote_splicing_lit] = STATE(1983), - [sym_unquoting_lit] = STATE(1983), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1983), - [sym_package_lit] = STATE(1983), - [sym_include_reader_macro] = STATE(1983), - [sym_complex_num_lit] = STATE(1983), - [aux_sym_source_repeat1] = STATE(395), - [aux_sym_list_lit_repeat1] = STATE(2810), - [ts_builtin_sym_end] = ACTIONS(4433), - [sym__ws] = ACTIONS(4435), - [sym_comment] = ACTIONS(4435), + [340] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [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(4577), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -37911,63 +38661,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), }, - [332] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [341] = { + [sym__gap] = STATE(338), + [sym_dis_expr] = STATE(338), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(338), + [sym__ws] = ACTIONS(4579), + [sym_comment] = ACTIONS(4579), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4437), + [anon_sym_RPAREN] = ACTIONS(4581), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -37978,63 +38728,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(4132), + [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(4144), + [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), }, - [333] = { - [sym__gap] = STATE(327), - [sym_dis_expr] = STATE(327), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(325), - [sym__ws] = ACTIONS(4439), - [sym_comment] = ACTIONS(4439), + [342] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4431), + [anon_sym_RPAREN] = ACTIONS(4583), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -38045,63 +38795,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(4132), + [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(4144), + [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), }, - [334] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [343] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4441), + [anon_sym_RBRACE] = ACTIONS(4585), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -38112,63 +38862,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(4132), + [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(4144), + [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), }, - [335] = { - [sym__gap] = STATE(308), - [sym_dis_expr] = STATE(308), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(298), - [sym__ws] = ACTIONS(4443), - [sym_comment] = ACTIONS(4443), + [344] = { + [sym__gap] = STATE(339), + [sym_dis_expr] = STATE(339), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(339), + [sym__ws] = ACTIONS(4587), + [sym_comment] = ACTIONS(4587), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4445), + [anon_sym_RPAREN] = ACTIONS(4589), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -38179,63 +38929,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(4132), + [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(4144), + [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), }, - [336] = { - [sym__gap] = STATE(349), - [sym_dis_expr] = STATE(349), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(350), - [sym__ws] = ACTIONS(4447), - [sym_comment] = ACTIONS(4447), + [345] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4449), + [anon_sym_RBRACE] = ACTIONS(4591), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -38246,63 +38996,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(4132), + [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(4144), + [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), }, - [337] = { - [sym__gap] = STATE(357), - [sym_dis_expr] = STATE(357), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(357), - [sym__ws] = ACTIONS(4451), - [sym_comment] = ACTIONS(4451), + [346] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4449), + [anon_sym_RBRACE] = ACTIONS(4593), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -38313,63 +39063,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(4132), + [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(4144), + [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), }, - [338] = { - [sym__gap] = STATE(374), - [sym_dis_expr] = STATE(374), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(373), - [sym__ws] = ACTIONS(4453), - [sym_comment] = ACTIONS(4453), + [347] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4455), + [anon_sym_RPAREN] = ACTIONS(4595), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -38380,130 +39130,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(4132), + [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(4144), + [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), }, - [339] = { - [sym__gap] = STATE(692), - [sym_dis_expr] = STATE(692), - [sym__form] = STATE(983), - [sym_num_lit] = STATE(983), - [sym_kwd_lit] = STATE(983), - [sym_str_lit] = STATE(983), - [sym_char_lit] = STATE(983), - [sym_sym_lit] = STATE(1129), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(983), - [sym__bare_list_lit] = STATE(1135), - [sym_vec_lit] = STATE(983), - [sym_set_lit] = STATE(983), - [sym__bare_set_lit] = STATE(1150), - [sym_read_cond_lit] = STATE(983), - [sym_splicing_read_cond_lit] = STATE(983), - [sym_var_quoting_lit] = STATE(983), - [sym_quoting_lit] = STATE(983), - [sym_syn_quoting_lit] = STATE(983), - [sym_unquote_splicing_lit] = STATE(983), - [sym_unquoting_lit] = STATE(983), - [sym_defun] = STATE(1135), - [sym_loop_macro] = STATE(1135), - [sym_path_lit] = STATE(983), - [sym_package_lit] = STATE(983), - [sym_include_reader_macro] = STATE(983), - [sym_complex_num_lit] = STATE(983), - [aux_sym_dis_expr_repeat1] = STATE(692), - [aux_sym_list_lit_repeat1] = STATE(2796), - [aux_sym_do_clause_repeat1] = STATE(23), - [sym__ws] = ACTIONS(4351), - [sym_comment] = ACTIONS(4351), - [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(827), - [aux_sym_num_lit_token1] = ACTIONS(829), - [anon_sym_COLON] = ACTIONS(4353), - [anon_sym_COLON_COLON] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym_nil_lit] = ACTIONS(827), - [aux_sym_sym_lit_token1] = ACTIONS(837), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(4355), - [anon_sym_POUND0A] = ACTIONS(839), - [anon_sym_POUND0a] = ACTIONS(839), - [anon_sym_POUND_QMARK] = ACTIONS(841), - [anon_sym_POUND_QMARK_AT] = ACTIONS(843), - [anon_sym_POUND_SQUOTE] = ACTIONS(845), - [anon_sym_SQUOTE] = ACTIONS(847), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_COMMA_AT] = ACTIONS(851), - [anon_sym_COMMA] = ACTIONS(853), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(827), - [anon_sym_cl] = ACTIONS(4357), - [anon_sym_POUNDP] = ACTIONS(855), - [anon_sym_POUNDp] = ACTIONS(855), - [sym_self_referential_reader_macro] = ACTIONS(857), - [anon_sym_POUND_PLUS] = ACTIONS(859), - [anon_sym_POUND_DASH] = ACTIONS(859), - [anon_sym_POUNDC] = ACTIONS(861), - [anon_sym_POUNDc] = ACTIONS(861), - }, - [340] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [348] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4457), + [anon_sym_RPAREN] = ACTIONS(4597), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -38514,63 +39197,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(4132), + [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(4144), + [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), }, - [341] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [349] = { + [sym__gap] = STATE(344), + [sym_dis_expr] = STATE(344), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(342), + [sym__ws] = ACTIONS(4599), + [sym_comment] = ACTIONS(4599), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4459), + [anon_sym_RPAREN] = ACTIONS(4601), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -38581,63 +39264,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(4132), + [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(4144), + [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), }, - [342] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [350] = { + [sym__gap] = STATE(532), + [sym_dis_expr] = STATE(532), + [sym__form] = STATE(993), + [sym_num_lit] = STATE(993), + [sym_kwd_lit] = STATE(993), + [sym_str_lit] = STATE(993), + [sym_char_lit] = STATE(993), + [sym_sym_lit] = STATE(1158), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(993), + [sym__bare_list_lit] = STATE(1192), + [sym_vec_lit] = STATE(993), + [sym_set_lit] = STATE(993), + [sym__bare_set_lit] = STATE(1201), + [sym_read_cond_lit] = STATE(993), + [sym_splicing_read_cond_lit] = STATE(993), + [sym_var_quoting_lit] = STATE(993), + [sym_quoting_lit] = STATE(993), + [sym_syn_quoting_lit] = STATE(993), + [sym_unquote_splicing_lit] = STATE(993), + [sym_unquoting_lit] = STATE(993), + [sym_defun] = STATE(1192), + [sym_loop_macro] = STATE(1192), + [sym_path_lit] = STATE(993), + [sym_package_lit] = STATE(993), + [sym_include_reader_macro] = STATE(993), + [sym_complex_num_lit] = STATE(993), + [aux_sym_dis_expr_repeat1] = STATE(532), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym_do_clause_repeat1] = STATE(17), + [sym__ws] = ACTIONS(4444), + [sym_comment] = ACTIONS(4444), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(173), + [anon_sym_DOT] = ACTIONS(175), + [aux_sym_num_lit_token1] = ACTIONS(177), + [anon_sym_COLON] = ACTIONS(4446), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(183), + [sym_nil_lit] = ACTIONS(175), + [aux_sym_sym_lit_token1] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(4448), + [anon_sym_POUND0A] = ACTIONS(187), + [anon_sym_POUND0a] = ACTIONS(187), + [anon_sym_POUND_QMARK] = ACTIONS(189), + [anon_sym_POUND_QMARK_AT] = ACTIONS(191), + [anon_sym_POUND_SQUOTE] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [anon_sym_BQUOTE] = ACTIONS(197), + [anon_sym_COMMA_AT] = ACTIONS(199), + [anon_sym_COMMA] = ACTIONS(201), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(175), + [anon_sym_cl] = ACTIONS(4450), + [anon_sym_POUNDP] = ACTIONS(203), + [anon_sym_POUNDp] = ACTIONS(203), + [sym_self_referential_reader_macro] = ACTIONS(205), + [anon_sym_POUND_PLUS] = ACTIONS(207), + [anon_sym_POUND_DASH] = ACTIONS(207), + [anon_sym_POUNDC] = ACTIONS(209), + [anon_sym_POUNDc] = ACTIONS(209), + }, + [351] = { + [sym__gap] = STATE(346), + [sym_dis_expr] = STATE(346), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(346), + [sym__ws] = ACTIONS(4603), + [sym_comment] = ACTIONS(4603), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4461), + [anon_sym_RBRACE] = ACTIONS(4605), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -38648,63 +39398,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(4132), + [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(4144), + [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), }, - [343] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [352] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4463), + [anon_sym_RPAREN] = ACTIONS(4607), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -38715,63 +39465,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(4132), + [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(4144), + [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), }, - [344] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [353] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4465), + [anon_sym_RPAREN] = ACTIONS(4609), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -38782,63 +39532,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(4132), + [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(4144), + [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), }, - [345] = { - [sym__gap] = STATE(330), - [sym_dis_expr] = STATE(330), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(328), - [sym__ws] = ACTIONS(4467), - [sym_comment] = ACTIONS(4467), + [354] = { + [sym__gap] = STATE(397), + [sym_dis_expr] = STATE(397), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(398), + [sym__ws] = ACTIONS(4611), + [sym_comment] = ACTIONS(4611), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4469), + [anon_sym_RPAREN] = ACTIONS(4613), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -38849,63 +39599,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(4132), + [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(4144), + [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), }, - [346] = { - [sym__gap] = STATE(322), - [sym_dis_expr] = STATE(322), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(322), - [sym__ws] = ACTIONS(4471), - [sym_comment] = ACTIONS(4471), + [355] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4473), + [anon_sym_RPAREN] = ACTIONS(4615), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -38916,63 +39666,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(4132), + [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(4144), + [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), }, - [347] = { - [sym__gap] = STATE(340), - [sym_dis_expr] = STATE(340), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(340), - [sym__ws] = ACTIONS(4475), - [sym_comment] = ACTIONS(4475), + [356] = { + [sym__gap] = STATE(352), + [sym_dis_expr] = STATE(352), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(352), + [sym__ws] = ACTIONS(4617), + [sym_comment] = ACTIONS(4617), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4477), + [anon_sym_RPAREN] = ACTIONS(4619), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -38983,63 +39733,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(4132), + [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(4144), + [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), }, - [348] = { - [sym__gap] = STATE(353), - [sym_dis_expr] = STATE(353), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(354), - [sym__ws] = ACTIONS(4479), - [sym_comment] = ACTIONS(4479), + [357] = { + [sym__gap] = STATE(391), + [sym_dis_expr] = STATE(391), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(391), + [sym__ws] = ACTIONS(4621), + [sym_comment] = ACTIONS(4621), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4481), + [anon_sym_RPAREN] = ACTIONS(4613), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -39050,63 +39800,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(4132), + [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(4144), + [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), }, - [349] = { - [sym__gap] = STATE(369), - [sym_dis_expr] = STATE(369), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(369), - [sym__ws] = ACTIONS(4483), - [sym_comment] = ACTIONS(4483), + [358] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4485), + [anon_sym_RPAREN] = ACTIONS(4623), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -39117,63 +39867,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(4132), + [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(4144), + [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), }, - [350] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [359] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4487), + [anon_sym_RPAREN] = ACTIONS(4625), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -39184,63 +39934,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(4132), + [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(4144), + [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), }, - [351] = { - [sym__gap] = STATE(355), - [sym_dis_expr] = STATE(355), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(355), - [sym__ws] = ACTIONS(4489), - [sym_comment] = ACTIONS(4489), + [360] = { + [sym__gap] = STATE(353), + [sym_dis_expr] = STATE(353), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(353), + [sym__ws] = ACTIONS(4627), + [sym_comment] = ACTIONS(4627), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4481), + [anon_sym_RPAREN] = ACTIONS(4629), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -39251,63 +40001,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(4132), + [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(4144), + [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), }, - [352] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [361] = { + [sym__gap] = STATE(356), + [sym_dis_expr] = STATE(356), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(355), + [sym__ws] = ACTIONS(4631), + [sym_comment] = ACTIONS(4631), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4491), + [anon_sym_RPAREN] = ACTIONS(4629), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -39318,63 +40068,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(4132), + [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(4144), + [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), }, - [353] = { - [sym__gap] = STATE(356), - [sym_dis_expr] = STATE(356), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(356), - [sym__ws] = ACTIONS(4493), - [sym_comment] = ACTIONS(4493), + [362] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4495), + [anon_sym_RBRACE] = ACTIONS(4633), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -39385,63 +40135,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(4132), + [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(4144), + [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), }, - [354] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [363] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4497), + [anon_sym_RPAREN] = ACTIONS(4635), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -39452,63 +40202,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(4132), + [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(4144), + [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), }, - [355] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [364] = { + [sym__gap] = STATE(360), + [sym_dis_expr] = STATE(360), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(359), + [sym__ws] = ACTIONS(4637), + [sym_comment] = ACTIONS(4637), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4499), + [anon_sym_RPAREN] = ACTIONS(4639), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -39519,63 +40269,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(4132), + [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(4144), + [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), }, - [356] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [365] = { + [sym__gap] = STATE(362), + [sym_dis_expr] = STATE(362), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(362), + [sym__ws] = ACTIONS(4641), + [sym_comment] = ACTIONS(4641), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4501), + [anon_sym_RBRACE] = ACTIONS(4643), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -39586,63 +40336,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(4132), + [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(4144), + [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), }, - [357] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [366] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4503), + [anon_sym_RPAREN] = ACTIONS(4645), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -39653,63 +40403,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(4132), + [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(4144), + [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), }, - [358] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [367] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4505), + [anon_sym_RPAREN] = ACTIONS(4647), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -39720,63 +40470,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(4132), + [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(4144), + [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), }, - [359] = { - [sym__gap] = STATE(362), - [sym_dis_expr] = STATE(362), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(362), - [sym__ws] = ACTIONS(4507), - [sym_comment] = ACTIONS(4507), + [368] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4509), + [anon_sym_RPAREN] = ACTIONS(4649), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -39787,63 +40537,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(4132), + [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(4144), + [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), }, - [360] = { - [sym__gap] = STATE(367), - [sym_dis_expr] = STATE(367), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(368), - [sym__ws] = ACTIONS(4511), - [sym_comment] = ACTIONS(4511), + [369] = { + [sym__gap] = STATE(366), + [sym_dis_expr] = STATE(366), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(366), + [sym__ws] = ACTIONS(4651), + [sym_comment] = ACTIONS(4651), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4513), + [anon_sym_RPAREN] = ACTIONS(4653), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -39854,63 +40604,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(4132), + [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(4144), + [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), }, - [361] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [370] = { + [sym__gap] = STATE(341), + [sym_dis_expr] = STATE(341), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(340), + [sym__ws] = ACTIONS(4655), + [sym_comment] = ACTIONS(4655), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4515), + [anon_sym_RPAREN] = ACTIONS(4589), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -39921,63 +40671,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(4132), + [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(4144), + [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), }, - [362] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [371] = { + [sym__gap] = STATE(367), + [sym_dis_expr] = STATE(367), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(367), + [sym__ws] = ACTIONS(4657), + [sym_comment] = ACTIONS(4657), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4517), + [anon_sym_RPAREN] = ACTIONS(4659), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -39988,63 +40738,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(4132), + [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(4144), + [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), }, - [363] = { - [sym__gap] = STATE(376), - [sym_dis_expr] = STATE(376), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(381), - [sym__ws] = ACTIONS(4519), - [sym_comment] = ACTIONS(4519), + [372] = { + [sym__gap] = STATE(369), + [sym_dis_expr] = STATE(369), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(368), + [sym__ws] = ACTIONS(4661), + [sym_comment] = ACTIONS(4661), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4521), + [anon_sym_RPAREN] = ACTIONS(4659), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40055,63 +40805,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(4132), + [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(4144), + [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), }, - [364] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [373] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4523), + [anon_sym_RBRACE] = ACTIONS(4663), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40122,63 +40872,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(4132), + [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(4144), + [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), }, - [365] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [374] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4525), + [anon_sym_RPAREN] = ACTIONS(4665), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40189,63 +40939,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(4132), + [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(4144), + [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), }, - [366] = { - [sym__gap] = STATE(358), - [sym_dis_expr] = STATE(358), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(358), - [sym__ws] = ACTIONS(4527), - [sym_comment] = ACTIONS(4527), + [375] = { + [sym__gap] = STATE(371), + [sym_dis_expr] = STATE(371), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(389), + [sym__ws] = ACTIONS(4667), + [sym_comment] = ACTIONS(4667), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4529), + [anon_sym_RPAREN] = ACTIONS(4669), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40256,63 +41006,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(4132), + [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(4144), + [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), }, - [367] = { - [sym__gap] = STATE(382), - [sym_dis_expr] = STATE(382), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(382), - [sym__ws] = ACTIONS(4531), - [sym_comment] = ACTIONS(4531), + [376] = { + [sym__gap] = STATE(373), + [sym_dis_expr] = STATE(373), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(373), + [sym__ws] = ACTIONS(4671), + [sym_comment] = ACTIONS(4671), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4521), + [anon_sym_RBRACE] = ACTIONS(4673), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40323,63 +41073,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(4132), + [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(4144), + [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), }, - [368] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [377] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4533), + [anon_sym_RPAREN] = ACTIONS(4675), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40390,63 +41140,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(4132), + [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(4144), + [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), }, - [369] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [378] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4535), + [anon_sym_RPAREN] = ACTIONS(4677), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40457,63 +41207,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(4132), + [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(4144), + [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), }, - [370] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [379] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4537), + [anon_sym_RPAREN] = ACTIONS(4679), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40524,63 +41274,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(4132), + [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(4144), + [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), }, - [371] = { - [sym__gap] = STATE(385), - [sym_dis_expr] = STATE(385), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(386), - [sym__ws] = ACTIONS(4539), - [sym_comment] = ACTIONS(4539), + [380] = { + [sym__gap] = STATE(377), + [sym_dis_expr] = STATE(377), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(377), + [sym__ws] = ACTIONS(4681), + [sym_comment] = ACTIONS(4681), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4541), + [anon_sym_RPAREN] = ACTIONS(4683), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40591,63 +41341,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(4132), + [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(4144), + [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), }, - [372] = { - [sym__gap] = STATE(392), - [sym_dis_expr] = STATE(392), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(392), - [sym__ws] = ACTIONS(4543), - [sym_comment] = ACTIONS(4543), + [381] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4545), + [anon_sym_RPAREN] = ACTIONS(4685), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40658,63 +41408,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(4132), + [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(4144), + [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), }, - [373] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [382] = { + [sym__gap] = STATE(378), + [sym_dis_expr] = STATE(378), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(378), + [sym__ws] = ACTIONS(4687), + [sym_comment] = ACTIONS(4687), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4547), + [anon_sym_RPAREN] = ACTIONS(4689), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40725,63 +41475,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(4132), + [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(4144), + [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), }, - [374] = { - [sym__gap] = STATE(316), - [sym_dis_expr] = STATE(316), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(316), - [sym__ws] = ACTIONS(4549), - [sym_comment] = ACTIONS(4549), + [383] = { + [sym__gap] = STATE(380), + [sym_dis_expr] = STATE(380), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(379), + [sym__ws] = ACTIONS(4691), + [sym_comment] = ACTIONS(4691), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4551), + [anon_sym_RPAREN] = ACTIONS(4689), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40792,63 +41542,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(4132), + [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(4144), + [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), }, - [375] = { - [sym__gap] = STATE(394), - [sym_dis_expr] = STATE(394), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(394), - [sym__ws] = ACTIONS(4553), - [sym_comment] = ACTIONS(4553), + [384] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4555), + [anon_sym_RBRACE] = ACTIONS(4693), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40859,130 +41609,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(4132), + [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(4144), + [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), }, - [376] = { - [sym__gap] = STATE(370), - [sym_dis_expr] = STATE(370), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(370), - [sym__ws] = ACTIONS(4557), - [sym_comment] = ACTIONS(4557), + [385] = { + [sym__gap] = STATE(532), + [sym_dis_expr] = STATE(532), + [sym__form] = STATE(993), + [sym_num_lit] = STATE(993), + [sym_kwd_lit] = STATE(993), + [sym_str_lit] = STATE(993), + [sym_char_lit] = STATE(993), + [sym_sym_lit] = STATE(1158), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(993), + [sym__bare_list_lit] = STATE(1192), + [sym_vec_lit] = STATE(993), + [sym_set_lit] = STATE(993), + [sym__bare_set_lit] = STATE(1201), + [sym_read_cond_lit] = STATE(993), + [sym_splicing_read_cond_lit] = STATE(993), + [sym_var_quoting_lit] = STATE(993), + [sym_quoting_lit] = STATE(993), + [sym_syn_quoting_lit] = STATE(993), + [sym_unquote_splicing_lit] = STATE(993), + [sym_unquoting_lit] = STATE(993), + [sym_defun] = STATE(1192), + [sym_loop_macro] = STATE(1192), + [sym_path_lit] = STATE(993), + [sym_package_lit] = STATE(993), + [sym_include_reader_macro] = STATE(993), + [sym_complex_num_lit] = STATE(993), + [aux_sym_dis_expr_repeat1] = STATE(532), + [aux_sym_list_lit_repeat1] = STATE(2817), + [aux_sym_do_clause_repeat1] = STATE(4), + [sym__ws] = ACTIONS(4444), + [sym_comment] = ACTIONS(4444), [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), - [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(4132), - [aux_sym_sym_lit_token1] = ACTIONS(23), + [anon_sym_POUND] = ACTIONS(173), + [anon_sym_DOT] = ACTIONS(175), + [aux_sym_num_lit_token1] = ACTIONS(177), + [anon_sym_COLON] = ACTIONS(4446), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(183), + [sym_nil_lit] = ACTIONS(175), + [aux_sym_sym_lit_token1] = ACTIONS(185), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(4559), - [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), + [anon_sym_LPAREN] = ACTIONS(4448), + [anon_sym_POUND0A] = ACTIONS(187), + [anon_sym_POUND0a] = ACTIONS(187), + [anon_sym_POUND_QMARK] = ACTIONS(189), + [anon_sym_POUND_QMARK_AT] = ACTIONS(191), + [anon_sym_POUND_SQUOTE] = ACTIONS(193), + [anon_sym_SQUOTE] = ACTIONS(195), + [anon_sym_BQUOTE] = ACTIONS(197), + [anon_sym_COMMA_AT] = ACTIONS(199), + [anon_sym_COMMA] = ACTIONS(201), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4132), - [anon_sym_cl] = ACTIONS(49), - [anon_sym_POUNDP] = ACTIONS(51), - [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(4144), - [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(175), + [anon_sym_cl] = ACTIONS(4450), + [anon_sym_POUNDP] = ACTIONS(203), + [anon_sym_POUNDp] = ACTIONS(203), + [sym_self_referential_reader_macro] = ACTIONS(205), + [anon_sym_POUND_PLUS] = ACTIONS(207), + [anon_sym_POUND_DASH] = ACTIONS(207), + [anon_sym_POUNDC] = ACTIONS(209), + [anon_sym_POUNDc] = ACTIONS(209), }, - [377] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [386] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4561), + [anon_sym_RPAREN] = ACTIONS(4695), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -40993,63 +41743,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(4132), + [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(4144), + [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), }, - [378] = { - [sym__gap] = STATE(364), - [sym_dis_expr] = STATE(364), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(364), - [sym__ws] = ACTIONS(4563), - [sym_comment] = ACTIONS(4563), + [387] = { + [sym__gap] = STATE(382), + [sym_dis_expr] = STATE(382), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(381), + [sym__ws] = ACTIONS(4697), + [sym_comment] = ACTIONS(4697), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4565), + [anon_sym_RPAREN] = ACTIONS(4699), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41060,63 +41810,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(4132), + [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(4144), + [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), }, - [379] = { - [sym__gap] = STATE(366), - [sym_dis_expr] = STATE(366), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(365), - [sym__ws] = ACTIONS(4567), - [sym_comment] = ACTIONS(4567), + [388] = { + [sym__gap] = STATE(384), + [sym_dis_expr] = STATE(384), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(384), + [sym__ws] = ACTIONS(4701), + [sym_comment] = ACTIONS(4701), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4565), + [anon_sym_RBRACE] = ACTIONS(4703), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41127,63 +41877,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(4132), + [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(4144), + [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), }, - [380] = { - [sym__gap] = STATE(321), - [sym_dis_expr] = STATE(321), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(320), - [sym__ws] = ACTIONS(4569), - [sym_comment] = ACTIONS(4569), + [389] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4551), + [anon_sym_RPAREN] = ACTIONS(4705), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41194,63 +41944,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(4132), + [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(4144), + [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), }, - [381] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [390] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4571), + [anon_sym_RPAREN] = ACTIONS(4707), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41261,63 +42011,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(4132), + [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(4144), + [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), }, - [382] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [391] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4573), + [anon_sym_RPAREN] = ACTIONS(4709), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41328,63 +42078,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(4132), + [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(4144), + [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), }, - [383] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [392] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4575), + [anon_sym_RPAREN] = ACTIONS(4711), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41395,63 +42145,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(4132), + [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(4144), + [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), }, - [384] = { - [sym__gap] = STATE(388), - [sym_dis_expr] = STATE(388), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(283), - [sym__ws] = ACTIONS(4577), - [sym_comment] = ACTIONS(4577), + [393] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4579), + [anon_sym_RPAREN] = ACTIONS(4713), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41462,63 +42212,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(4132), + [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(4144), + [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), }, - [385] = { - [sym__gap] = STATE(389), - [sym_dis_expr] = STATE(389), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(389), - [sym__ws] = ACTIONS(4581), - [sym_comment] = ACTIONS(4581), + [394] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4579), + [anon_sym_RPAREN] = ACTIONS(4715), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41529,63 +42279,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(4132), + [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(4144), + [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), }, - [386] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [395] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4583), + [anon_sym_RPAREN] = ACTIONS(4717), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41596,130 +42346,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(4132), + [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(4144), + [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), }, - [387] = { - [sym__gap] = STATE(692), - [sym_dis_expr] = STATE(692), - [sym__form] = STATE(983), - [sym_num_lit] = STATE(983), - [sym_kwd_lit] = STATE(983), - [sym_str_lit] = STATE(983), - [sym_char_lit] = STATE(983), - [sym_sym_lit] = STATE(1129), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(983), - [sym__bare_list_lit] = STATE(1135), - [sym_vec_lit] = STATE(983), - [sym_set_lit] = STATE(983), - [sym__bare_set_lit] = STATE(1150), - [sym_read_cond_lit] = STATE(983), - [sym_splicing_read_cond_lit] = STATE(983), - [sym_var_quoting_lit] = STATE(983), - [sym_quoting_lit] = STATE(983), - [sym_syn_quoting_lit] = STATE(983), - [sym_unquote_splicing_lit] = STATE(983), - [sym_unquoting_lit] = STATE(983), - [sym_defun] = STATE(1135), - [sym_loop_macro] = STATE(1135), - [sym_path_lit] = STATE(983), - [sym_package_lit] = STATE(983), - [sym_include_reader_macro] = STATE(983), - [sym_complex_num_lit] = STATE(983), - [aux_sym_dis_expr_repeat1] = STATE(692), - [aux_sym_list_lit_repeat1] = STATE(2796), - [aux_sym_do_clause_repeat1] = STATE(30), - [sym__ws] = ACTIONS(4351), - [sym_comment] = ACTIONS(4351), - [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(825), - [anon_sym_DOT] = ACTIONS(827), - [aux_sym_num_lit_token1] = ACTIONS(829), - [anon_sym_COLON] = ACTIONS(4353), - [anon_sym_COLON_COLON] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(835), - [sym_nil_lit] = ACTIONS(827), - [aux_sym_sym_lit_token1] = ACTIONS(837), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(4355), - [anon_sym_POUND0A] = ACTIONS(839), - [anon_sym_POUND0a] = ACTIONS(839), - [anon_sym_POUND_QMARK] = ACTIONS(841), - [anon_sym_POUND_QMARK_AT] = ACTIONS(843), - [anon_sym_POUND_SQUOTE] = ACTIONS(845), - [anon_sym_SQUOTE] = ACTIONS(847), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_COMMA_AT] = ACTIONS(851), - [anon_sym_COMMA] = ACTIONS(853), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(827), - [anon_sym_cl] = ACTIONS(4357), - [anon_sym_POUNDP] = ACTIONS(855), - [anon_sym_POUNDp] = ACTIONS(855), - [sym_self_referential_reader_macro] = ACTIONS(857), - [anon_sym_POUND_PLUS] = ACTIONS(859), - [anon_sym_POUND_DASH] = ACTIONS(859), - [anon_sym_POUNDC] = ACTIONS(861), - [anon_sym_POUNDc] = ACTIONS(861), - }, - [388] = { - [sym__gap] = STATE(393), - [sym_dis_expr] = STATE(393), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(393), - [sym__ws] = ACTIONS(4585), - [sym_comment] = ACTIONS(4585), + [396] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4587), + [anon_sym_RPAREN] = ACTIONS(4719), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41730,63 +42413,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(4132), + [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(4144), + [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), }, - [389] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [397] = { + [sym__gap] = STATE(347), + [sym_dis_expr] = STATE(347), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(347), + [sym__ws] = ACTIONS(4721), + [sym_comment] = ACTIONS(4721), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4589), + [anon_sym_RPAREN] = ACTIONS(4723), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41797,63 +42480,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(4132), + [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(4144), + [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), }, - [390] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [398] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4591), + [anon_sym_RPAREN] = ACTIONS(4725), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41864,63 +42547,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(4132), + [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(4144), + [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), }, - [391] = { - [sym__gap] = STATE(378), - [sym_dis_expr] = STATE(378), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(377), - [sym__ws] = ACTIONS(4593), - [sym_comment] = ACTIONS(4593), + [399] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4595), + [anon_sym_RPAREN] = ACTIONS(4727), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41931,63 +42614,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(4132), + [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(4144), + [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), }, - [392] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [400] = { + [sym__gap] = STATE(392), + [sym_dis_expr] = STATE(392), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(392), + [sym__ws] = ACTIONS(4729), + [sym_comment] = ACTIONS(4729), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4597), + [anon_sym_RPAREN] = ACTIONS(4731), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -41998,63 +42681,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(4132), + [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(4144), + [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), }, - [393] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [401] = { + [sym__gap] = STATE(404), + [sym_dis_expr] = STATE(404), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(404), + [sym__ws] = ACTIONS(4733), + [sym_comment] = ACTIONS(4733), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4599), + [anon_sym_RBRACE] = ACTIONS(4735), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -42065,63 +42748,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(4132), + [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(4144), + [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), }, - [394] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [402] = { + [sym__gap] = STATE(400), + [sym_dis_expr] = STATE(400), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(399), + [sym__ws] = ACTIONS(4737), + [sym_comment] = ACTIONS(4737), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4601), + [anon_sym_RPAREN] = ACTIONS(4739), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -42132,130 +42815,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(4132), + [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(4144), + [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), }, - [395] = { - [sym__gap] = STATE(395), - [sym_dis_expr] = STATE(395), - [sym__form] = STATE(1983), - [sym_num_lit] = STATE(1983), - [sym_kwd_lit] = STATE(1983), - [sym_str_lit] = STATE(1983), - [sym_char_lit] = STATE(1983), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1983), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1983), - [sym_set_lit] = STATE(1983), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1983), - [sym_splicing_read_cond_lit] = STATE(1983), - [sym_var_quoting_lit] = STATE(1983), - [sym_quoting_lit] = STATE(1983), - [sym_syn_quoting_lit] = STATE(1983), - [sym_unquote_splicing_lit] = STATE(1983), - [sym_unquoting_lit] = STATE(1983), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1983), - [sym_package_lit] = STATE(1983), - [sym_include_reader_macro] = STATE(1983), - [sym_complex_num_lit] = STATE(1983), - [aux_sym_source_repeat1] = STATE(395), - [aux_sym_list_lit_repeat1] = STATE(2810), - [ts_builtin_sym_end] = ACTIONS(4603), - [sym__ws] = ACTIONS(4605), - [sym_comment] = ACTIONS(4605), - [anon_sym_POUND_] = ACTIONS(4608), - [anon_sym_POUND] = ACTIONS(4611), - [anon_sym_DOT] = ACTIONS(4614), - [aux_sym_num_lit_token1] = ACTIONS(4617), - [anon_sym_COLON] = ACTIONS(4620), - [anon_sym_COLON_COLON] = ACTIONS(4623), - [anon_sym_DQUOTE] = ACTIONS(4626), - [sym_nil_lit] = ACTIONS(4614), - [aux_sym_sym_lit_token1] = ACTIONS(4629), - [anon_sym_CARET] = ACTIONS(4632), - [anon_sym_POUND_CARET] = ACTIONS(4635), - [anon_sym_LPAREN] = ACTIONS(4638), - [anon_sym_POUND0A] = ACTIONS(4641), - [anon_sym_POUND0a] = ACTIONS(4641), - [anon_sym_POUND_QMARK] = ACTIONS(4644), - [anon_sym_POUND_QMARK_AT] = ACTIONS(4647), - [anon_sym_POUND_SQUOTE] = ACTIONS(4650), - [anon_sym_SQUOTE] = ACTIONS(4653), - [anon_sym_BQUOTE] = ACTIONS(4656), - [anon_sym_COMMA_AT] = ACTIONS(4659), - [anon_sym_COMMA] = ACTIONS(4662), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4614), - [anon_sym_cl] = ACTIONS(4665), - [anon_sym_POUNDP] = ACTIONS(4668), - [anon_sym_POUNDp] = ACTIONS(4668), - [sym_self_referential_reader_macro] = ACTIONS(4671), - [anon_sym_POUND_PLUS] = ACTIONS(4674), - [anon_sym_POUND_DASH] = ACTIONS(4674), - [anon_sym_POUNDC] = ACTIONS(4677), - [anon_sym_POUNDc] = ACTIONS(4677), - }, - [396] = { - [sym__gap] = STATE(383), - [sym_dis_expr] = STATE(383), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(383), - [sym__ws] = ACTIONS(4680), - [sym_comment] = ACTIONS(4680), + [403] = { + [sym__gap] = STATE(290), + [sym_dis_expr] = STATE(290), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(394), + [sym__ws] = ACTIONS(4741), + [sym_comment] = ACTIONS(4741), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4682), + [anon_sym_RPAREN] = ACTIONS(4731), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -42266,63 +42882,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(4132), + [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(4144), + [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), }, - [397] = { - [sym__gap] = STATE(282), - [sym_dis_expr] = STATE(282), - [sym__form] = STATE(1966), - [sym_num_lit] = STATE(1966), - [sym_kwd_lit] = STATE(1966), - [sym_str_lit] = STATE(1966), - [sym_char_lit] = STATE(1966), - [sym_sym_lit] = STATE(1795), - [sym__metadata_lit] = STATE(2867), - [sym_meta_lit] = STATE(2815), - [sym_old_meta_lit] = STATE(2816), - [sym_list_lit] = STATE(1966), - [sym__bare_list_lit] = STATE(1793), - [sym_vec_lit] = STATE(1966), - [sym_set_lit] = STATE(1966), - [sym__bare_set_lit] = STATE(1792), - [sym_read_cond_lit] = STATE(1966), - [sym_splicing_read_cond_lit] = STATE(1966), - [sym_var_quoting_lit] = STATE(1966), - [sym_quoting_lit] = STATE(1966), - [sym_syn_quoting_lit] = STATE(1966), - [sym_unquote_splicing_lit] = STATE(1966), - [sym_unquoting_lit] = STATE(1966), - [sym_defun] = STATE(1793), - [sym_loop_macro] = STATE(1793), - [sym_path_lit] = STATE(1966), - [sym_package_lit] = STATE(1966), - [sym_include_reader_macro] = STATE(1966), - [sym_complex_num_lit] = STATE(1966), - [aux_sym_list_lit_repeat1] = STATE(2810), - [aux_sym__bare_list_lit_repeat1] = STATE(282), - [sym__ws] = ACTIONS(4295), - [sym_comment] = ACTIONS(4295), + [404] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1984), + [sym_num_lit] = STATE(1984), + [sym_kwd_lit] = STATE(1984), + [sym_str_lit] = STATE(1984), + [sym_char_lit] = STATE(1984), + [sym_sym_lit] = STATE(1777), + [sym__metadata_lit] = STATE(2892), + [sym_meta_lit] = STATE(2840), + [sym_old_meta_lit] = STATE(2858), + [sym_list_lit] = STATE(1984), + [sym__bare_list_lit] = STATE(1780), + [sym_vec_lit] = STATE(1984), + [sym_set_lit] = STATE(1984), + [sym__bare_set_lit] = STATE(1782), + [sym_read_cond_lit] = STATE(1984), + [sym_splicing_read_cond_lit] = STATE(1984), + [sym_var_quoting_lit] = STATE(1984), + [sym_quoting_lit] = STATE(1984), + [sym_syn_quoting_lit] = STATE(1984), + [sym_unquote_splicing_lit] = STATE(1984), + [sym_unquoting_lit] = STATE(1984), + [sym_defun] = STATE(1780), + [sym_loop_macro] = STATE(1780), + [sym_path_lit] = STATE(1984), + [sym_package_lit] = STATE(1984), + [sym_include_reader_macro] = STATE(1984), + [sym_complex_num_lit] = STATE(1984), + [aux_sym_list_lit_repeat1] = STATE(2825), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4132), + [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(4132), + [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(4684), + [anon_sym_RBRACE] = ACTIONS(4743), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -42333,11 +42949,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA_AT] = ACTIONS(43), [anon_sym_COMMA] = ACTIONS(45), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(4132), + [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(4144), + [sym_self_referential_reader_macro] = ACTIONS(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), @@ -42355,78 +42971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(4696), 1, + ACTIONS(4783), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, - sym__bare_set_lit, - STATE(2789), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + ACTIONS(4745), 2, + sym__ws, + sym_comment, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4686), 2, - sym__ws, - sym_comment, - ACTIONS(4688), 3, + ACTIONS(4749), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(792), 3, + STATE(650), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2574), 19, + STATE(2966), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42455,78 +43071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(4791), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(4734), 1, + ACTIONS(4825), 1, sym_self_referential_reader_macro, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2795), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4698), 2, + ACTIONS(4789), 2, sym__ws, sym_comment, - ACTIONS(4716), 2, + ACTIONS(4807), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(4827), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4702), 3, + ACTIONS(4793), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(858), 3, + STATE(835), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1948), 19, + STATE(2493), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42549,84 +43165,84 @@ static const uint16_t ts_small_parse_table[] = { [270] = 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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(4742), 1, + ACTIONS(4853), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4740), 3, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4833), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(933), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2552), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42655,78 +43271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(825), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(843), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(4353), 1, + ACTIONS(4859), 1, anon_sym_COLON, - ACTIONS(4355), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(4748), 1, + ACTIONS(4865), 1, sym_self_referential_reader_macro, - STATE(1129), 1, - sym_sym_lit, - STATE(1150), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(1486), 1, + sym_sym_lit, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4744), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4746), 3, + ACTIONS(4857), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(874), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1135), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1164), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(219), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42749,84 +43365,84 @@ static const uint16_t ts_small_parse_table[] = { [540] = 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(223), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 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(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4752), 1, + ACTIONS(4869), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4750), 3, + ACTIONS(4867), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2661), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1850), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42849,6 +43465,10 @@ static const uint16_t ts_small_parse_table[] = { [675] = 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, @@ -42867,66 +43487,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(4756), 1, - anon_sym_POUND, - ACTIONS(4760), 1, - aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4774), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(4873), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2806), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(4754), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4762), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4776), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4758), 3, + ACTIONS(4871), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(534), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1809), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(739), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42955,78 +43571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4877), 1, anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(4780), 1, + ACTIONS(4883), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(1072), 1, + sym_sym_lit, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4778), 3, + ACTIONS(4875), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2702), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(25), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43049,84 +43665,84 @@ static const uint16_t ts_small_parse_table[] = { [945] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 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(2680), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4790), 1, + ACTIONS(4889), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4885), 2, sym__ws, sym_comment, - ACTIONS(4782), 3, + ACTIONS(4887), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1320), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(440), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(223), 19, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(752), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43155,78 +43771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, - anon_sym_POUND, - ACTIONS(227), 1, - aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(4794), 1, + ACTIONS(4893), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4792), 3, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4891), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2701), 19, + STATE(2553), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43249,84 +43865,84 @@ static const uint16_t ts_small_parse_table[] = { [1215] = 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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(4800), 1, + ACTIONS(4897), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(4796), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4798), 3, + ACTIONS(4895), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(400), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(956), 19, + STATE(2686), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43355,78 +43971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, - anon_sym_POUND, - ACTIONS(227), 1, - aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(4804), 1, + ACTIONS(4901), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4802), 3, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4899), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2700), 19, + STATE(2554), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43455,78 +44071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(4808), 1, + ACTIONS(4905), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4806), 3, + ACTIONS(4903), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1320), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 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(2692), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43555,78 +44171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, - anon_sym_POUND, - ACTIONS(2654), 1, - aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(4814), 1, + ACTIONS(4911), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4810), 2, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4907), 2, sym__ws, sym_comment, - ACTIONS(4812), 3, + ACTIONS(4909), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(419), 3, + STATE(435), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1320), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1338), 19, + STATE(2558), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43655,78 +44271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(825), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(843), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(4820), 1, + ACTIONS(4915), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(2492), 1, sym_sym_lit, - STATE(1150), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4816), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4818), 3, + ACTIONS(4913), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(661), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1135), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1221), 19, + STATE(2693), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43755,78 +44371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, - anon_sym_POUND, - ACTIONS(4828), 1, - aux_sym_num_lit_token1, - ACTIONS(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(4842), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(4858), 1, + ACTIONS(4919), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4822), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4838), 2, + ACTIONS(4839), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(4855), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4826), 3, + ACTIONS(4917), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(703), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2156), 19, + STATE(2559), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43855,78 +44471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(4866), 1, + ACTIONS(4923), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4864), 3, + ACTIONS(4921), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1320), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1339), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2696), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43955,78 +44571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, - anon_sym_POUND, - ACTIONS(2654), 1, - aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(4872), 1, + ACTIONS(4929), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4868), 2, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4925), 2, sym__ws, sym_comment, - ACTIONS(4870), 3, + ACTIONS(4927), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(420), 3, + STATE(407), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1320), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1340), 19, + STATE(2565), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44049,84 +44665,84 @@ static const uint16_t ts_small_parse_table[] = { [2295] = 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(4756), 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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(4835), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(4878), 1, + ACTIONS(4851), 1, + anon_sym_cl, + ACTIONS(4935), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2806), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4762), 2, + ACTIONS(4839), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4776), 2, + ACTIONS(4855), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4874), 2, + ACTIONS(4931), 2, sym__ws, sym_comment, - ACTIONS(4876), 3, + ACTIONS(4933), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(532), 3, + STATE(413), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1816), 19, + STATE(2567), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44155,78 +44771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, - anon_sym_POUND, - ACTIONS(4884), 1, - aux_sym_num_lit_token1, - ACTIONS(4886), 1, - anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, - anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(4916), 1, + ACTIONS(4941), 1, sym_self_referential_reader_macro, - STATE(1469), 1, + STATE(2492), 1, sym_sym_lit, - STATE(1490), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4896), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4882), 3, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4937), 2, + sym__ws, + sym_comment, + ACTIONS(4939), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1489), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(415), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1569), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2569), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44249,84 +44865,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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(4926), 1, + ACTIONS(4947), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(4922), 2, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4943), 2, sym__ws, sym_comment, - ACTIONS(4924), 3, + ACTIONS(4945), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(431), 3, + STATE(419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(879), 19, + STATE(2574), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44355,78 +44971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, - anon_sym_POUND, - ACTIONS(4884), 1, - aux_sym_num_lit_token1, - ACTIONS(4886), 1, - anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, - anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(4932), 1, + ACTIONS(4951), 1, sym_self_referential_reader_macro, - STATE(1469), 1, + STATE(2492), 1, sym_sym_lit, - STATE(1490), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4896), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4928), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4930), 3, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4949), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(543), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1489), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1568), 19, + STATE(2576), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44449,84 +45065,84 @@ static const uint16_t ts_small_parse_table[] = { [2835] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 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(2680), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4936), 1, + ACTIONS(4957), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4953), 2, sym__ws, sym_comment, - ACTIONS(4934), 3, + ACTIONS(4955), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1320), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(443), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1346), 19, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(753), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44555,78 +45171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, - anon_sym_POUND, - ACTIONS(2654), 1, - aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(4940), 1, + ACTIONS(4961), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4938), 3, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4959), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1320), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1347), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2650), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44649,84 +45265,84 @@ static const uint16_t ts_small_parse_table[] = { [3105] = 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(4756), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(4969), 1, + anon_sym_COLON, + ACTIONS(4971), 1, + anon_sym_COLON_COLON, + ACTIONS(4973), 1, + anon_sym_DQUOTE, + ACTIONS(4975), 1, + aux_sym_sym_lit_token1, + ACTIONS(4977), 1, + anon_sym_LPAREN, + ACTIONS(4981), 1, + anon_sym_POUND_QMARK, + ACTIONS(4983), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(4944), 1, + ACTIONS(4995), 1, + anon_sym_cl, + ACTIONS(4999), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1490), 1, sym_sym_lit, - STATE(2806), 1, + STATE(1497), 1, + sym__bare_set_lit, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4762), 2, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4776), 2, + ACTIONS(4997), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4942), 3, + ACTIONS(5003), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4965), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1833), 19, + STATE(1511), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44755,78 +45371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, - anon_sym_POUND, - ACTIONS(2654), 1, - aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(4948), 1, + ACTIONS(5007), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4946), 3, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5005), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1320), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1335), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2578), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44855,78 +45471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(4969), 1, + anon_sym_COLON, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(4977), 1, + anon_sym_LPAREN, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(4954), 1, + ACTIONS(5013), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(1490), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1497), 1, + sym__bare_set_lit, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4950), 2, + ACTIONS(5009), 2, sym__ws, sym_comment, - ACTIONS(4952), 3, + ACTIONS(5011), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(413), 3, + STATE(562), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1320), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1330), 19, + STATE(1495), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44955,78 +45571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(4958), 1, + ACTIONS(5017), 1, sym_self_referential_reader_macro, - STATE(1927), 1, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, sym__bare_set_lit, - STATE(2795), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2356), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4738), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4956), 3, + ACTIONS(5015), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1879), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2044), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45049,84 +45665,84 @@ static const uint16_t ts_small_parse_table[] = { [3645] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - 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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(4964), 1, + ACTIONS(5021), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(4960), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4962), 3, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5019), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(433), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(861), 19, + STATE(2579), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45155,78 +45771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(4968), 1, + ACTIONS(5029), 1, sym_self_referential_reader_macro, - STATE(1927), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2795), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2356), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(2983), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4738), 2, + ACTIONS(2989), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4966), 3, + ACTIONS(5023), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1874), 19, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2791), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45255,78 +45871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, - anon_sym_POUND, - ACTIONS(2654), 1, - aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(4974), 1, + ACTIONS(5035), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4970), 2, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5031), 2, sym__ws, sym_comment, - ACTIONS(4972), 3, + ACTIONS(5033), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(409), 3, + STATE(515), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1320), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1329), 19, + STATE(2572), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45355,78 +45971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, - anon_sym_POUND, - ACTIONS(2654), 1, - aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(4978), 1, + ACTIONS(5039), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4976), 3, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5037), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1320), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1328), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2592), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45455,78 +46071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, - anon_sym_POUND, - ACTIONS(2654), 1, - aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(4982), 1, + ACTIONS(5043), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4980), 3, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5041), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1320), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 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(2580), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45549,84 +46165,84 @@ static const uint16_t ts_small_parse_table[] = { [4320] = 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(4700), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4988), 1, + ACTIONS(5049), 1, sym_self_referential_reader_macro, - STATE(1927), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, sym__bare_set_lit, - STATE(2795), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2356), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4984), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5045), 2, sym__ws, sym_comment, - ACTIONS(4986), 3, + ACTIONS(5047), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(462), 3, + STATE(410), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1878), 19, + STATE(730), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45649,84 +46265,84 @@ static const uint16_t ts_small_parse_table[] = { [4455] = 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(173), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(185), 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(189), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(4992), 1, + ACTIONS(5053), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4990), 3, + ACTIONS(5051), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(778), 19, + STATE(1155), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45749,84 +46365,84 @@ static const uint16_t ts_small_parse_table[] = { [4590] = 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(4756), 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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(4835), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(4996), 1, + ACTIONS(4851), 1, + anon_sym_cl, + ACTIONS(5059), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2806), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4762), 2, + ACTIONS(4839), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4776), 2, + ACTIONS(4855), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4994), 3, + ACTIONS(5055), 2, + sym__ws, + sym_comment, + ACTIONS(5057), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(425), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1835), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2615), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45885,19 +46501,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5000), 1, + ACTIONS(5063), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -45911,22 +46527,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4998), 3, + ACTIONS(5061), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(725), 19, + STATE(766), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45949,84 +46565,84 @@ static const uint16_t ts_small_parse_table[] = { [4860] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - 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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5004), 1, + ACTIONS(5069), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(4738), 2, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5065), 2, sym__ws, sym_comment, - ACTIONS(5002), 3, + ACTIONS(5067), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(427), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(451), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2619), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46055,78 +46671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, - anon_sym_POUND, - ACTIONS(2654), 1, - aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5008), 1, + ACTIONS(5075), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5071), 2, sym__ws, sym_comment, - ACTIONS(5006), 3, + ACTIONS(5073), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1320), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(429), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1326), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2623), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46149,84 +46765,84 @@ static const uint16_t ts_small_parse_table[] = { [5130] = 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(2650), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 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(2680), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5014), 1, + ACTIONS(5079), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5010), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5012), 3, + ACTIONS(5077), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(422), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1320), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1300), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(768), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46255,78 +46871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, - anon_sym_POUND, - ACTIONS(2654), 1, - aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5018), 1, + ACTIONS(5085), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5081), 2, sym__ws, sym_comment, - ACTIONS(5016), 3, + ACTIONS(5083), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1320), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(432), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1443), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2625), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46349,84 +46965,84 @@ static const uint16_t ts_small_parse_table[] = { [5400] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(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(33), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(5022), 1, + ACTIONS(5109), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5020), 3, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5089), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(430), 19, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1923), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46449,84 +47065,84 @@ static const uint16_t ts_small_parse_table[] = { [5535] = 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(4756), 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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(4835), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(5026), 1, + ACTIONS(4851), 1, + anon_sym_cl, + ACTIONS(5117), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2806), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4762), 2, + ACTIONS(4839), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4776), 2, + ACTIONS(4855), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5024), 3, + ACTIONS(5113), 2, + sym__ws, + sym_comment, + ACTIONS(5115), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(436), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1838), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2628), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46549,84 +47165,84 @@ static const uint16_t ts_small_parse_table[] = { [5670] = 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(5121), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(5127), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(5030), 1, + ACTIONS(5157), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1672), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1674), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(5119), 2, + sym__ws, + sym_comment, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(5028), 3, + ACTIONS(5123), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(709), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1784), 19, + STATE(1673), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1675), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46649,84 +47265,84 @@ static const uint16_t ts_small_parse_table[] = { [5805] = 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(4756), 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(5087), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(5091), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(5095), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(5036), 1, + ACTIONS(5107), 1, + anon_sym_cl, + ACTIONS(5167), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2806), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4762), 2, + ACTIONS(5093), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4776), 2, + ACTIONS(5111), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5032), 2, + ACTIONS(5163), 2, sym__ws, sym_comment, - ACTIONS(5034), 3, + ACTIONS(5165), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(529), 3, + STATE(701), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1754), 19, + STATE(1928), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46749,84 +47365,84 @@ static const uint16_t ts_small_parse_table[] = { [5940] = 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(4756), 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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(4835), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(5040), 1, + ACTIONS(4851), 1, + anon_sym_cl, + ACTIONS(5171), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2806), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4762), 2, + ACTIONS(4839), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4776), 2, + ACTIONS(4855), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5038), 3, + ACTIONS(5169), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1757), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2596), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46855,78 +47471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(825), 1, + ACTIONS(4791), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(843), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5046), 1, + ACTIONS(5175), 1, sym_self_referential_reader_macro, - STATE(1129), 1, - sym_sym_lit, - STATE(1150), 1, - sym__bare_set_lit, - STATE(2796), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(855), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5042), 2, + ACTIONS(4807), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4827), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5044), 3, + ACTIONS(5173), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(693), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1135), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1241), 19, + STATE(2987), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46955,78 +47571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, - anon_sym_POUND, - ACTIONS(227), 1, - aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5052), 1, + ACTIONS(5181), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5048), 2, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5177), 2, sym__ws, sym_comment, - ACTIONS(5050), 3, + ACTIONS(5179), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(584), 3, + STATE(525), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2676), 19, + STATE(2597), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47085,19 +47701,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5056), 1, + ACTIONS(5185), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -47111,22 +47727,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5054), 3, + ACTIONS(5183), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1785), 19, + STATE(1840), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47149,84 +47765,284 @@ static const uint16_t ts_small_parse_table[] = { [6480] = 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(2650), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(5197), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5199), 1, + anon_sym_SQUOTE, + ACTIONS(5201), 1, + anon_sym_BQUOTE, + ACTIONS(5203), 1, + anon_sym_COMMA_AT, + ACTIONS(5205), 1, + anon_sym_COMMA, + ACTIONS(5207), 1, + sym_self_referential_reader_macro, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2822), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5187), 2, + sym__ws, + sym_comment, + ACTIONS(5195), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5209), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5191), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(787), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1788), 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, + [6615] = 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(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(5060), 1, + ACTIONS(5215), 1, sym_self_referential_reader_macro, - STATE(1319), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(1321), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5211), 2, sym__ws, sym_comment, - ACTIONS(5058), 3, + ACTIONS(5213), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1320), 3, + STATE(969), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + 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, + [6750] = 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(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(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5097), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5099), 1, + anon_sym_SQUOTE, + ACTIONS(5101), 1, + anon_sym_BQUOTE, + ACTIONS(5103), 1, + anon_sym_COMMA_AT, + ACTIONS(5105), 1, + anon_sym_COMMA, + ACTIONS(5107), 1, + anon_sym_cl, + ACTIONS(5221), 1, + sym_self_referential_reader_macro, + STATE(1966), 1, + sym__bare_set_lit, + STATE(2827), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(2983), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2989), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5217), 2, + sym__ws, + sym_comment, + ACTIONS(5219), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(774), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1296), 19, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1926), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47246,7 +48062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6615] = 35, + [6885] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47255,78 +48071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5064), 1, + ACTIONS(5227), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5223), 2, sym__ws, sym_comment, - ACTIONS(5062), 3, + ACTIONS(5225), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(603), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2677), 19, + STATE(2713), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47346,7 +48162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6750] = 35, + [7020] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47355,78 +48171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(4791), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5070), 1, + ACTIONS(5231), 1, sym_self_referential_reader_macro, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2795), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(4807), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(4827), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5066), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5068), 3, + ACTIONS(5229), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(449), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1876), 19, + STATE(2984), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47446,7 +48262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [6885] = 35, + [7155] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47455,78 +48271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(4791), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5074), 1, + ACTIONS(5237), 1, sym_self_referential_reader_macro, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2795), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(4807), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(4827), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4738), 2, + ACTIONS(5233), 2, sym__ws, sym_comment, - ACTIONS(5072), 3, + ACTIONS(5235), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(450), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1875), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2980), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47546,7 +48362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7020] = 35, + [7290] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47555,78 +48371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5080), 1, + ACTIONS(5241), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5076), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5078), 3, + ACTIONS(5239), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(590), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2678), 19, + STATE(2721), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47646,7 +48462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7155] = 35, + [7425] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47655,78 +48471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(4791), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5086), 1, + ACTIONS(5245), 1, sym_self_referential_reader_macro, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2795), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(4807), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(4827), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5082), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5084), 3, + ACTIONS(5243), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(467), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1903), 19, + STATE(2979), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47746,87 +48562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7290] = 35, + [7560] = 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(4756), 1, + ACTIONS(4791), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, + anon_sym_COLON_COLON, + ACTIONS(4801), 1, + anon_sym_DQUOTE, + ACTIONS(4803), 1, + aux_sym_sym_lit_token1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_POUND_QMARK, + ACTIONS(4811), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(5092), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5251), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2806), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4762), 2, + ACTIONS(4807), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4776), 2, + ACTIONS(4827), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5088), 2, + ACTIONS(5247), 2, sym__ws, sym_comment, - ACTIONS(5090), 3, + ACTIONS(5249), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(421), 3, + STATE(457), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1811), 19, + STATE(2976), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47846,7 +48662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7425] = 35, + [7695] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47855,78 +48671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5098), 1, + ACTIONS(5257), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5094), 2, + ACTIONS(5253), 2, sym__ws, sym_comment, - ACTIONS(5096), 3, + ACTIONS(5255), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(594), 3, + STATE(609), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2679), 19, + STATE(2707), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47946,7 +48762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7560] = 35, + [7830] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47955,78 +48771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(4791), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5104), 1, + ACTIONS(5261), 1, sym_self_referential_reader_macro, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2795), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(4807), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(4827), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5100), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5102), 3, + ACTIONS(5259), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(424), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1880), 19, + STATE(2975), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48046,7 +48862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7695] = 35, + [7965] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48055,78 +48871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(4791), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5110), 1, + ACTIONS(5265), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2697), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5106), 2, + ACTIONS(4807), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4827), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5108), 3, + ACTIONS(5263), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(428), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1320), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1274), 19, + STATE(2973), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48146,7 +48962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7830] = 35, + [8100] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48155,78 +48971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5116), 1, + ACTIONS(5271), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5112), 2, + ACTIONS(5267), 2, sym__ws, sym_comment, - ACTIONS(5114), 3, + ACTIONS(5269), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(429), 3, + STATE(613), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1320), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1275), 19, + STATE(2699), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48246,87 +49062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [7965] = 35, + [8235] = 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(4791), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5122), 1, + ACTIONS(5277), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5118), 2, + ACTIONS(4807), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4827), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5273), 2, sym__ws, sym_comment, - ACTIONS(5120), 3, + ACTIONS(5275), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(714), 3, + STATE(460), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1852), 19, + STATE(2972), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48346,7 +49162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8100] = 35, + [8370] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48355,78 +49171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(4791), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5128), 1, + ACTIONS(5283), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2697), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5124), 2, + ACTIONS(4807), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4827), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5279), 2, sym__ws, sym_comment, - ACTIONS(5126), 3, + ACTIONS(5281), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(435), 3, + STATE(463), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1320), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1276), 19, + STATE(2970), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48446,7 +49262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8235] = 35, + [8505] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48455,78 +49271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(4791), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5134), 1, + ACTIONS(5287), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2697), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5130), 2, + ACTIONS(4807), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4827), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5132), 3, + ACTIONS(5285), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(437), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1320), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1279), 19, + STATE(2969), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48546,87 +49362,187 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8370] = 35, + [8640] = 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(4791), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_POUND_QMARK, + ACTIONS(4811), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4813), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(4815), 1, + anon_sym_SQUOTE, + ACTIONS(4817), 1, + anon_sym_BQUOTE, + ACTIONS(4819), 1, + anon_sym_COMMA_AT, + ACTIONS(4821), 1, + anon_sym_COMMA, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5291), 1, + sym_self_referential_reader_macro, + STATE(2816), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2892), 1, + sym__metadata_lit, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4807), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4827), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5289), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2968), 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, + [8775] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4791), 1, + anon_sym_POUND, + ACTIONS(4795), 1, + aux_sym_num_lit_token1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, + anon_sym_COLON_COLON, + ACTIONS(4801), 1, + anon_sym_DQUOTE, + ACTIONS(4803), 1, + aux_sym_sym_lit_token1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5140), 1, + ACTIONS(5295), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5136), 2, + ACTIONS(4807), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4827), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5138), 3, + ACTIONS(5293), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(722), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1851), 19, + STATE(2967), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48646,7 +49562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8505] = 35, + [8910] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48655,78 +49571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(4791), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5144), 1, + ACTIONS(5301), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2697), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4807), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4827), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5297), 2, sym__ws, sym_comment, - ACTIONS(5142), 3, + ACTIONS(5299), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1320), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(464), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1281), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2965), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48746,7 +49662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8640] = 35, + [9045] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48755,78 +49671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(4791), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5148), 1, + ACTIONS(5305), 1, sym_self_referential_reader_macro, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2795), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(4807), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(4827), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5146), 3, + ACTIONS(5303), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2964), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48846,87 +49762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8775] = 35, + [9180] = 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(4791), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5154), 1, + ACTIONS(5311), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5150), 2, + ACTIONS(4807), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4827), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5307), 2, sym__ws, sym_comment, - ACTIONS(5152), 3, + ACTIONS(5309), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(434), 3, + STATE(468), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(448), 19, + STATE(2958), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48946,87 +49862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [8910] = 35, + [9315] = 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(4791), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5160), 1, + ACTIONS(5317), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5156), 2, + ACTIONS(4807), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4827), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5313), 2, sym__ws, sym_comment, - ACTIONS(5158), 3, + ACTIONS(5315), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(772), 3, + STATE(469), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1850), 19, + STATE(2957), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49046,87 +49962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9045] = 35, + [9450] = 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(4791), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5166), 1, + ACTIONS(5323), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5162), 2, + ACTIONS(4807), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4827), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5319), 2, sym__ws, sym_comment, - ACTIONS(5164), 3, + ACTIONS(5321), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(777), 3, + STATE(470), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1849), 19, + STATE(2956), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49146,87 +50062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9180] = 35, + [9585] = 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(4791), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5172), 1, + ACTIONS(5329), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5168), 2, + ACTIONS(4807), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4827), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5325), 2, sym__ws, sym_comment, - ACTIONS(5170), 3, + ACTIONS(5327), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(438), 3, + STATE(472), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(454), 19, + STATE(2954), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49246,7 +50162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9315] = 35, + [9720] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49255,78 +50171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(4791), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5176), 1, + ACTIONS(5333), 1, sym_self_referential_reader_macro, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2795), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(4807), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(4827), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5174), 3, + ACTIONS(5331), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1893), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2949), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49346,87 +50262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9450] = 35, + [9855] = 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(4791), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5182), 1, + ACTIONS(5337), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5178), 2, + ACTIONS(4807), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4827), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5180), 3, + ACTIONS(5335), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(781), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1848), 19, + STATE(2944), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49446,87 +50362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9585] = 35, + [9990] = 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(4791), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5186), 1, + ACTIONS(5341), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4807), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4827), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5184), 3, + ACTIONS(5339), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(502), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2943), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49546,7 +50462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9720] = 35, + [10125] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49555,78 +50471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(4791), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5190), 1, + ACTIONS(5345), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2697), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4807), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4827), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5188), 3, + ACTIONS(5343), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1320), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1282), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2941), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49646,7 +50562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9855] = 35, + [10260] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49655,78 +50571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, + ACTIONS(4791), 1, + anon_sym_POUND, + ACTIONS(4795), 1, + aux_sym_num_lit_token1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5214), 1, + ACTIONS(5349), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, + STATE(2947), 1, sym__bare_set_lit, - STATE(3019), 1, + STATE(3088), 1, sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4862), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(4807), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(4827), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5194), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5347), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2897), 19, + STATE(2940), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49746,7 +50662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [9990] = 35, + [10395] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49755,78 +50671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5220), 1, + ACTIONS(5353), 1, sym_self_referential_reader_macro, - STATE(1927), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2795), 1, + STATE(1072), 1, + sym_sym_lit, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2356), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(266), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4738), 2, + ACTIONS(272), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5218), 3, + ACTIONS(5351), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1881), 19, + STATE(1025), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49846,7 +50762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10125] = 35, + [10530] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49855,78 +50771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(4791), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5224), 1, + ACTIONS(5359), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2697), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4807), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4827), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5355), 2, sym__ws, sym_comment, - ACTIONS(5222), 3, + ACTIONS(5357), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1320), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(477), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1283), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2910), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49946,87 +50862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10260] = 35, + [10665] = 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(4756), 1, + ACTIONS(4791), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, + anon_sym_COLON_COLON, + ACTIONS(4801), 1, + anon_sym_DQUOTE, + ACTIONS(4803), 1, + aux_sym_sym_lit_token1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_POUND_QMARK, + ACTIONS(4811), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(5230), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5365), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2806), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4762), 2, + ACTIONS(4807), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4776), 2, + ACTIONS(4827), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5226), 2, + ACTIONS(5361), 2, sym__ws, sym_comment, - ACTIONS(5228), 3, + ACTIONS(5363), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(432), 3, + STATE(478), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1812), 19, + STATE(2908), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50046,7 +50962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10395] = 35, + [10800] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50055,78 +50971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(4791), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5234), 1, + ACTIONS(5371), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2697), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4807), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4827), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5367), 2, sym__ws, sym_comment, - ACTIONS(5232), 3, + ACTIONS(5369), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1320), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(479), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1284), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2906), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50146,7 +51062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10530] = 35, + [10935] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50155,78 +51071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, + ACTIONS(4791), 1, + anon_sym_POUND, + ACTIONS(4795), 1, + aux_sym_num_lit_token1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5238), 1, + ACTIONS(5377), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, + STATE(2947), 1, sym__bare_set_lit, - STATE(3019), 1, + STATE(3088), 1, sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4862), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(4807), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(4827), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5236), 3, + ACTIONS(5373), 2, + sym__ws, + sym_comment, + ACTIONS(5375), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(480), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2894), 19, + STATE(2905), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50246,7 +51162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10665] = 35, + [11070] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50255,78 +51171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(4783), 1, + sym_self_referential_reader_macro, + ACTIONS(4791), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5242), 1, - sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, - sym_sym_lit, - STATE(2808), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2697), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4807), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4827), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5379), 2, sym__ws, sym_comment, - ACTIONS(5240), 3, + ACTIONS(4749), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1320), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(481), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1285), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2966), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50346,87 +51262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10800] = 35, + [11205] = 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(4756), 1, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(181), 1, + anon_sym_COLON_COLON, + ACTIONS(183), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + aux_sym_sym_lit_token1, + ACTIONS(189), 1, + anon_sym_POUND_QMARK, + ACTIONS(191), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(5248), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, + anon_sym_cl, + ACTIONS(5383), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2806), 1, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4762), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4776), 2, + ACTIONS(203), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5244), 2, + ACTIONS(209), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5246), 3, + ACTIONS(5381), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(439), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1813), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1214), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50446,87 +51362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [10935] = 35, + [11340] = 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(173), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(185), 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(189), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(5254), 1, + ACTIONS(5387), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5250), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5252), 3, + ACTIONS(5385), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(785), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(784), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1213), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50546,87 +51462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11070] = 35, + [11475] = 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(4756), 1, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(181), 1, + anon_sym_COLON_COLON, + ACTIONS(183), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + aux_sym_sym_lit_token1, + ACTIONS(189), 1, + anon_sym_POUND_QMARK, + ACTIONS(191), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(5260), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, + anon_sym_cl, + ACTIONS(5393), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2806), 1, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4762), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4776), 2, + ACTIONS(203), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5256), 2, + ACTIONS(209), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5389), 2, sym__ws, sym_comment, - ACTIONS(5258), 3, + ACTIONS(5391), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(442), 3, + STATE(488), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1817), 19, + STATE(1133), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50646,7 +51562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11205] = 35, + [11610] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50655,78 +51571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(185), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(189), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(5264), 1, + ACTIONS(5397), 1, sym_self_referential_reader_macro, - STATE(1927), 1, + STATE(1158), 1, + sym_sym_lit, + STATE(1201), 1, sym__bare_set_lit, - STATE(2795), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2356), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(203), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4738), 2, + ACTIONS(209), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5262), 3, + ACTIONS(5395), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1884), 19, + STATE(1206), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50746,87 +51662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11340] = 35, + [11745] = 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(173), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(185), 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(189), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(5270), 1, + ACTIONS(5403), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5266), 2, + ACTIONS(5399), 2, sym__ws, sym_comment, - ACTIONS(5268), 3, + ACTIONS(5401), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(469), 3, + STATE(489), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(807), 19, + STATE(1203), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50846,87 +51762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11475] = 35, + [11880] = 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(4756), 1, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(181), 1, + anon_sym_COLON_COLON, + ACTIONS(183), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + aux_sym_sym_lit_token1, + ACTIONS(189), 1, + anon_sym_POUND_QMARK, + ACTIONS(191), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(5274), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, + anon_sym_cl, + ACTIONS(5407), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2806), 1, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(187), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(207), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4762), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4776), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5272), 3, + ACTIONS(5405), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1819), 19, + STATE(1202), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50946,7 +51862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11610] = 35, + [12015] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50955,78 +51871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(185), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(189), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4446), 1, anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(5278), 1, + ACTIONS(5411), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1201), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5276), 3, + ACTIONS(5409), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2133), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1198), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51046,87 +51962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11745] = 35, + [12150] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(4756), 1, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(181), 1, + anon_sym_COLON_COLON, + ACTIONS(183), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + aux_sym_sym_lit_token1, + ACTIONS(189), 1, + anon_sym_POUND_QMARK, + ACTIONS(191), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(5282), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, + anon_sym_cl, + ACTIONS(5417), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2806), 1, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(187), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(207), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5413), 2, sym__ws, sym_comment, - ACTIONS(4762), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4776), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5280), 3, + ACTIONS(5415), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(491), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1820), 19, + STATE(1192), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1193), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51146,87 +52062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [11880] = 35, + [12285] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - 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(4756), 1, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(181), 1, + anon_sym_COLON_COLON, + ACTIONS(183), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + aux_sym_sym_lit_token1, + ACTIONS(189), 1, + anon_sym_POUND_QMARK, + ACTIONS(191), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(5286), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, + anon_sym_cl, + ACTIONS(5423), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2806), 1, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(187), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(207), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5419), 2, sym__ws, sym_comment, - ACTIONS(4762), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4776), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5284), 3, + ACTIONS(5421), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(493), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1821), 19, + STATE(1192), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1191), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51246,7 +52162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12015] = 35, + [12420] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51255,78 +52171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(233), 1, + ACTIONS(173), 1, + anon_sym_POUND, + ACTIONS(177), 1, + aux_sym_num_lit_token1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(185), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(189), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(5278), 1, - sym_self_referential_reader_macro, - ACTIONS(5288), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(201), 1, anon_sym_COMMA, - STATE(2159), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, + anon_sym_cl, + ACTIONS(5427), 1, + sym_self_referential_reader_macro, + STATE(1158), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1201), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(187), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(285), 2, + ACTIONS(207), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5292), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5304), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5276), 3, + ACTIONS(5425), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2133), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1190), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51346,7 +52262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12150] = 35, + [12555] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51355,78 +52271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(185), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(189), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4446), 1, anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(4858), 1, + ACTIONS(5431), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1201), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5306), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4826), 3, + ACTIONS(5429), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(484), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2156), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1189), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51446,87 +52362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12285] = 35, + [12690] = 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(4756), 1, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(181), 1, + anon_sym_COLON_COLON, + ACTIONS(183), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + aux_sym_sym_lit_token1, + ACTIONS(189), 1, + anon_sym_POUND_QMARK, + ACTIONS(191), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(5310), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, + anon_sym_cl, + ACTIONS(5435), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2806), 1, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(187), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(207), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4762), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4776), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5308), 3, + ACTIONS(5433), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1822), 19, + STATE(1188), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51546,7 +52462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12420] = 35, + [12825] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51555,78 +52471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(185), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(189), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(5314), 1, + ACTIONS(5441), 1, sym_self_referential_reader_macro, - STATE(1927), 1, + STATE(1158), 1, + sym_sym_lit, + STATE(1201), 1, sym__bare_set_lit, - STATE(2795), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2356), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(203), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4738), 2, + ACTIONS(209), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5437), 2, sym__ws, sym_comment, - ACTIONS(5312), 3, + ACTIONS(5439), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(494), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1885), 19, + STATE(1192), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1185), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51646,7 +52562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12555] = 35, + [12960] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51655,78 +52571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(173), 1, + anon_sym_POUND, + ACTIONS(177), 1, + aux_sym_num_lit_token1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(185), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(189), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(5320), 1, + ACTIONS(5445), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(1158), 1, + sym_sym_lit, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(203), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5316), 2, + ACTIONS(209), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5318), 3, + ACTIONS(5443), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(471), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2874), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1184), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51746,7 +52662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12690] = 35, + [13095] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51755,178 +52671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(173), 1, + anon_sym_POUND, + ACTIONS(177), 1, + aux_sym_num_lit_token1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(185), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(189), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(5212), 1, - anon_sym_cl, - ACTIONS(5324), 1, - sym_self_referential_reader_macro, - STATE(2785), 1, - aux_sym_list_lit_repeat1, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5216), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5322), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2873), 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, - [12825] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(17), 1, + ACTIONS(4446), 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(4448), 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(4450), 1, anon_sym_cl, - ACTIONS(4756), 1, - anon_sym_POUND, - ACTIONS(4760), 1, - aux_sym_num_lit_token1, - ACTIONS(4764), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, - anon_sym_SQUOTE, - ACTIONS(4768), 1, - anon_sym_BQUOTE, - ACTIONS(4770), 1, - anon_sym_COMMA_AT, - ACTIONS(4772), 1, - anon_sym_COMMA, - ACTIONS(5328), 1, + ACTIONS(5451), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2806), 1, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(187), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(207), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5447), 2, sym__ws, sym_comment, - ACTIONS(4762), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4776), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5326), 3, + ACTIONS(5449), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(497), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1823), 19, + STATE(1192), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1177), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51946,7 +52762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [12960] = 35, + [13230] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51955,78 +52771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(185), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(189), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(4784), 1, + ACTIONS(4446), 1, anon_sym_COLON, - ACTIONS(4786), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(5334), 1, + ACTIONS(5457), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5330), 2, + ACTIONS(5453), 2, sym__ws, sym_comment, - ACTIONS(5332), 3, + ACTIONS(5455), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(461), 3, + STATE(498), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1320), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1301), 19, + STATE(1176), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52046,7 +52862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13095] = 35, + [13365] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52055,78 +52871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(185), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(189), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(4784), 1, + ACTIONS(4446), 1, anon_sym_COLON, - ACTIONS(4786), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(5340), 1, + ACTIONS(5463), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5336), 2, + ACTIONS(5459), 2, sym__ws, sym_comment, - ACTIONS(5338), 3, + ACTIONS(5461), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(470), 3, + STATE(499), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1320), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1302), 19, + STATE(1175), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52146,7 +52962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13230] = 35, + [13500] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52155,78 +52971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(233), 1, + ACTIONS(173), 1, + anon_sym_POUND, + ACTIONS(177), 1, + aux_sym_num_lit_token1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(185), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(189), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(4858), 1, - sym_self_referential_reader_macro, - ACTIONS(5288), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(201), 1, anon_sym_COMMA, - STATE(2159), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, + anon_sym_cl, + ACTIONS(5469), 1, + sym_self_referential_reader_macro, + STATE(1158), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1201), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(285), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5292), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(203), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5342), 2, + ACTIONS(209), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5465), 2, sym__ws, sym_comment, - ACTIONS(4826), 3, + ACTIONS(5467), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(487), 3, + STATE(501), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2156), 19, + STATE(1172), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52246,7 +53062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13365] = 35, + [13635] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52255,78 +53071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(173), 1, + anon_sym_POUND, + ACTIONS(177), 1, + aux_sym_num_lit_token1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(185), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(189), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(5348), 1, + ACTIONS(5473), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(1158), 1, + sym_sym_lit, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(203), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5344), 2, + ACTIONS(209), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5346), 3, + ACTIONS(5471), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(476), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2912), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1170), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52346,7 +53162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13500] = 35, + [13770] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52355,78 +53171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(173), 1, + anon_sym_POUND, + ACTIONS(177), 1, + aux_sym_num_lit_token1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(185), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(189), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(5352), 1, + ACTIONS(5477), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(1158), 1, + sym_sym_lit, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(203), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5350), 3, + ACTIONS(209), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5475), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2920), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1169), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52446,87 +53262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13635] = 35, + [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(173), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(185), 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(189), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(5356), 1, + ACTIONS(5481), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5354), 3, + ACTIONS(5479), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(535), 19, + STATE(1168), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52546,87 +53362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13770] = 35, + [14040] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(185), 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(189), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(5360), 1, + ACTIONS(5485), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5358), 3, + ACTIONS(5483), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(533), 19, + STATE(1167), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52646,87 +53462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [13905] = 35, + [14175] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(185), 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(189), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(5364), 1, + ACTIONS(5489), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5362), 3, + ACTIONS(5487), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1780), 19, + STATE(1166), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52746,7 +53562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14040] = 35, + [14310] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52755,78 +53571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5370), 1, + ACTIONS(5493), 1, sym_self_referential_reader_macro, - STATE(1927), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(2795), 1, + STATE(1486), 1, + sym_sym_lit, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2356), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(2722), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5366), 2, + ACTIONS(2728), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5368), 3, + ACTIONS(5491), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(426), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1887), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1462), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52846,87 +53662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14175] = 35, + [14445] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(185), 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(189), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(5374), 1, + ACTIONS(5499), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5495), 2, sym__ws, sym_comment, - ACTIONS(5372), 3, + ACTIONS(5497), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(506), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(888), 19, + STATE(1192), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1151), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52946,87 +53762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14310] = 35, + [14580] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(185), 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(189), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(5380), 1, + ACTIONS(5505), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5376), 2, + ACTIONS(5501), 2, sym__ws, sym_comment, - ACTIONS(5378), 3, + ACTIONS(5503), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(525), 3, + STATE(507), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(459), 19, + STATE(1149), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53046,7 +53862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14445] = 35, + [14715] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53055,78 +53871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(185), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(189), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(5384), 1, + ACTIONS(5511), 1, sym_self_referential_reader_macro, - STATE(1927), 1, + STATE(1158), 1, + sym_sym_lit, + STATE(1201), 1, sym__bare_set_lit, - STATE(2795), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2356), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(203), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4738), 2, + ACTIONS(209), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5507), 2, sym__ws, sym_comment, - ACTIONS(5382), 3, + ACTIONS(5509), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(508), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2787), 19, + STATE(1192), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1148), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53146,7 +53962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14580] = 35, + [14850] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53155,78 +53971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, - anon_sym_POUND, - ACTIONS(4704), 1, - aux_sym_num_lit_token1, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5388), 1, + ACTIONS(5515), 1, sym_self_referential_reader_macro, - STATE(1927), 1, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, sym__bare_set_lit, - STATE(2795), 1, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2356), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(4839), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(4855), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(5386), 3, + ACTIONS(5513), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1888), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2599), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53246,87 +54062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14715] = 35, + [14985] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(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(4756), 1, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(181), 1, + anon_sym_COLON_COLON, + ACTIONS(183), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + aux_sym_sym_lit_token1, + ACTIONS(189), 1, + anon_sym_POUND_QMARK, + ACTIONS(191), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(5182), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, + anon_sym_cl, + ACTIONS(5521), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2806), 1, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4762), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4776), 2, + ACTIONS(203), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5390), 2, + ACTIONS(209), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5517), 2, sym__ws, sym_comment, - ACTIONS(5180), 3, + ACTIONS(5519), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(483), 3, + STATE(509), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1848), 19, + STATE(1147), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53346,87 +54162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14850] = 35, + [15120] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(4756), 1, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(181), 1, + anon_sym_COLON_COLON, + ACTIONS(183), 1, + anon_sym_DQUOTE, + ACTIONS(185), 1, + aux_sym_sym_lit_token1, + ACTIONS(189), 1, + anon_sym_POUND_QMARK, + ACTIONS(191), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(5166), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, + anon_sym_cl, + ACTIONS(5527), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2806), 1, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4762), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4776), 2, + ACTIONS(203), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5392), 2, + ACTIONS(209), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5523), 2, sym__ws, sym_comment, - ACTIONS(5164), 3, + ACTIONS(5525), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(485), 3, + STATE(510), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1849), 19, + STATE(1146), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53446,7 +54262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [14985] = 35, + [15255] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53455,78 +54271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5398), 1, + ACTIONS(5531), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5394), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5396), 3, + ACTIONS(5529), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(473), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1320), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1303), 19, + STATE(2719), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53546,9 +54362,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15120] = 35, + [15390] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -53567,66 +54387,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(4756), 1, - anon_sym_POUND, - ACTIONS(4760), 1, - aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(5160), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5537), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2806), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(4762), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4776), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5400), 2, + ACTIONS(5533), 2, sym__ws, sym_comment, - ACTIONS(5158), 3, + ACTIONS(5535), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(486), 3, + STATE(537), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1850), 19, + STATE(798), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53646,7 +54462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15255] = 35, + [15525] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53655,78 +54471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5406), 1, + ACTIONS(5541), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5402), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5404), 3, + ACTIONS(5539), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(475), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1320), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1304), 19, + STATE(2711), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53746,87 +54562,187 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15390] = 35, + [15660] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + 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(100), 1, + anon_sym_POUND_QMARK, + ACTIONS(102), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(4843), 1, + anon_sym_SQUOTE, + ACTIONS(4845), 1, + anon_sym_BQUOTE, + ACTIONS(4847), 1, + anon_sym_COMMA_AT, + ACTIONS(4849), 1, + anon_sym_COMMA, + ACTIONS(4851), 1, + anon_sym_cl, + ACTIONS(5547), 1, + sym_self_referential_reader_macro, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5543), 2, + sym__ws, + sym_comment, + ACTIONS(5545), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(530), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2602), 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, + [15795] = 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, + 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(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(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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5412), 1, + ACTIONS(5551), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(5408), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5410), 3, + ACTIONS(5549), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(499), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(403), 19, + STATE(2690), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53846,7 +54762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15525] = 35, + [15930] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53855,78 +54771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(4784), 1, + ACTIONS(4877), 1, anon_sym_COLON, - ACTIONS(4786), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5418), 1, + ACTIONS(5555), 1, sym_self_referential_reader_macro, - STATE(1319), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1321), 1, + STATE(1072), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5414), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5416), 3, + ACTIONS(5553), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(477), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1320), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1305), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1076), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53946,7 +54862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15660] = 35, + [16065] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53955,78 +54871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, - anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5458), 1, + ACTIONS(5559), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(1072), 1, + sym_sym_lit, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(5420), 2, - sym__ws, - sym_comment, - ACTIONS(5438), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5424), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5557), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(536), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1650), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1655), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1075), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54046,7 +54962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15795] = 35, + [16200] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54055,78 +54971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, - anon_sym_POUND, - ACTIONS(5426), 1, - aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, - anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5468), 1, + ACTIONS(5563), 1, sym_self_referential_reader_macro, - STATE(1649), 1, + STATE(2492), 1, sym_sym_lit, - STATE(1651), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(5438), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5464), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5466), 3, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5561), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(548), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1650), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1612), 19, + STATE(2632), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54146,87 +55062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [15930] = 35, + [16335] = 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(217), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(230), 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(245), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5474), 1, + ACTIONS(5569), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(1072), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5470), 2, + ACTIONS(5565), 2, sym__ws, sym_comment, - ACTIONS(5472), 3, + ACTIONS(5567), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(500), 3, + STATE(523), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(415), 19, + STATE(1064), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54246,87 +55162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16065] = 35, + [16470] = 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(4756), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(226), 1, + anon_sym_COLON_COLON, + ACTIONS(228), 1, + anon_sym_DQUOTE, + ACTIONS(230), 1, + aux_sym_sym_lit_token1, + ACTIONS(245), 1, + anon_sym_POUND_QMARK, + ACTIONS(247), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(5140), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_cl, + ACTIONS(5573), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(1072), 1, sym_sym_lit, - STATE(2806), 1, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4762), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4776), 2, + ACTIONS(266), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5476), 2, + ACTIONS(272), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5138), 3, + ACTIONS(5571), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(489), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1851), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1061), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54346,7 +55262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16200] = 35, + [16605] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54355,78 +55271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, - anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5482), 1, + ACTIONS(5577), 1, sym_self_referential_reader_macro, - STATE(1649), 1, + STATE(2492), 1, sym_sym_lit, - STATE(1651), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(5438), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5478), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5480), 3, + ACTIONS(5575), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(551), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1650), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1670), 19, + STATE(2748), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54446,7 +55362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16335] = 35, + [16740] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54455,78 +55371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, - anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5488), 1, + ACTIONS(5583), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(1072), 1, + sym_sym_lit, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(5438), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5484), 2, + ACTIONS(5579), 2, sym__ws, sym_comment, - ACTIONS(5486), 3, + ACTIONS(5581), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(552), 3, + STATE(524), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1650), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1672), 19, + STATE(1058), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54546,7 +55462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16470] = 35, + [16875] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54555,78 +55471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, - anon_sym_POUND, - ACTIONS(5426), 1, - aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, - anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5494), 1, + ACTIONS(5587), 1, sym_self_referential_reader_macro, - STATE(1649), 1, + STATE(2492), 1, sym_sym_lit, - STATE(1651), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(5438), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5490), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5492), 3, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5585), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(555), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1650), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1674), 19, + STATE(2635), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54646,87 +55562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16605] = 35, + [17010] = 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(217), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(230), 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(245), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5498), 1, + ACTIONS(5591), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(1072), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5496), 3, + ACTIONS(5589), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(441), 19, + STATE(1057), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54746,7 +55662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16740] = 35, + [17145] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54755,78 +55671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(185), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(189), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4446), 1, anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(5504), 1, + ACTIONS(5595), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1158), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1201), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5500), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5502), 3, + ACTIONS(5593), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(447), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2722), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(992), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54846,87 +55762,187 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [16875] = 35, + [17280] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + 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(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, + anon_sym_POUND_QMARK, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5097), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5099), 1, + anon_sym_SQUOTE, + ACTIONS(5101), 1, + anon_sym_BQUOTE, + ACTIONS(5103), 1, + anon_sym_COMMA_AT, + ACTIONS(5105), 1, + anon_sym_COMMA, + ACTIONS(5107), 1, + anon_sym_cl, + ACTIONS(5601), 1, + sym_self_referential_reader_macro, + STATE(1966), 1, + sym__bare_set_lit, + STATE(2827), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(2983), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2989), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5597), 2, + sym__ws, + sym_comment, + ACTIONS(5599), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(582), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1929), 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, + [17415] = 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(217), 1, + anon_sym_POUND, + ACTIONS(221), 1, + aux_sym_num_lit_token1, + ACTIONS(226), 1, + anon_sym_COLON_COLON, + ACTIONS(228), 1, + anon_sym_DQUOTE, + ACTIONS(230), 1, + aux_sym_sym_lit_token1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5508), 1, + ACTIONS(5605), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(1072), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5506), 3, + ACTIONS(5603), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1844), 19, + STATE(21), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54946,7 +55962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17010] = 35, + [17550] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54955,78 +55971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, - anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5512), 1, + ACTIONS(5609), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(1072), 1, + sym_sym_lit, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(5438), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5510), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5607), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1650), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1684), 19, + STATE(1049), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55046,87 +56062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17145] = 35, + [17685] = 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(2675), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(2688), 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(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5516), 1, + ACTIONS(5613), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(1486), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5514), 3, + ACTIONS(5611), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(436), 19, + STATE(160), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55146,7 +56162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17280] = 35, + [17820] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -55185,19 +56201,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5522), 1, + ACTIONS(5617), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -55211,22 +56227,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5518), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5520), 3, + ACTIONS(5615), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(427), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(815), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55246,87 +56262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17415] = 35, + [17955] = 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(4756), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 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(4766), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5122), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, + anon_sym_cl, + ACTIONS(5623), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2806), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4762), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4776), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5524), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5619), 2, sym__ws, sym_comment, - ACTIONS(5120), 3, + ACTIONS(5621), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(493), 3, + STATE(894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1852), 19, + STATE(2734), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55346,7 +56362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17550] = 35, + [18090] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -55385,19 +56401,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5530), 1, + ACTIONS(5629), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -55411,22 +56427,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5526), 2, + ACTIONS(5625), 2, sym__ws, sym_comment, - ACTIONS(5528), 3, + ACTIONS(5627), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(571), 3, + STATE(563), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(423), 19, + STATE(821), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55446,87 +56462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17685] = 35, + [18225] = 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(4756), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(226), 1, + anon_sym_COLON_COLON, + ACTIONS(228), 1, + anon_sym_DQUOTE, + ACTIONS(230), 1, + aux_sym_sym_lit_token1, + ACTIONS(245), 1, + anon_sym_POUND_QMARK, + ACTIONS(247), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(5534), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_cl, + ACTIONS(5635), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(1072), 1, sym_sym_lit, - STATE(2806), 1, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(243), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(270), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5631), 2, sym__ws, sym_comment, - ACTIONS(4762), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4776), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5532), 3, + ACTIONS(5633), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(527), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1776), 19, + STATE(1070), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1039), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55546,87 +56562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17820] = 35, + [18360] = 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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5540), 1, + ACTIONS(5641), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(5536), 2, + ACTIONS(5637), 2, sym__ws, sym_comment, - ACTIONS(5538), 3, + ACTIONS(5639), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(735), 3, + STATE(898), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(897), 19, + STATE(2738), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55646,87 +56662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [17955] = 35, + [18495] = 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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5544), 1, + ACTIONS(5647), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(4738), 2, + ACTIONS(5643), 2, sym__ws, sym_comment, - ACTIONS(5542), 3, + ACTIONS(5645), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(906), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(904), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2740), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55746,87 +56762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18090] = 35, + [18630] = 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(4756), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 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(4766), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5548), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, + anon_sym_cl, + ACTIONS(5653), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2806), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(98), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(127), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5649), 2, sym__ws, sym_comment, - ACTIONS(4762), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4776), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5546), 3, + ACTIONS(5651), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(913), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1778), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2742), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55846,87 +56862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18225] = 35, + [18765] = 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(4756), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(226), 1, + anon_sym_COLON_COLON, + ACTIONS(228), 1, + anon_sym_DQUOTE, + ACTIONS(230), 1, + aux_sym_sym_lit_token1, + ACTIONS(245), 1, + anon_sym_POUND_QMARK, + ACTIONS(247), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(5554), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_cl, + ACTIONS(5659), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(1072), 1, sym_sym_lit, - STATE(2806), 1, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4762), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4776), 2, + ACTIONS(266), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5550), 2, + ACTIONS(272), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5655), 2, sym__ws, sym_comment, - ACTIONS(5552), 3, + ACTIONS(5657), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(539), 3, + STATE(531), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1779), 19, + STATE(1038), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55946,87 +56962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18360] = 35, + [18900] = 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(4756), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(2953), 1, + anon_sym_COLON_COLON, + ACTIONS(2955), 1, + anon_sym_DQUOTE, + ACTIONS(2957), 1, + aux_sym_sym_lit_token1, + ACTIONS(2959), 1, + anon_sym_LPAREN, + ACTIONS(2963), 1, + anon_sym_POUND_QMARK, + ACTIONS(2965), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(5364), 1, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, + anon_sym_cl, + ACTIONS(5665), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(2766), 1, sym_sym_lit, - STATE(2806), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(2961), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(2987), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5661), 2, sym__ws, sym_comment, - ACTIONS(4762), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4776), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5362), 3, + ACTIONS(5663), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(568), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1780), 19, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1958), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56046,87 +57062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18495] = 35, + [19035] = 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(4756), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(226), 1, + anon_sym_COLON_COLON, + ACTIONS(228), 1, + anon_sym_DQUOTE, + ACTIONS(230), 1, + aux_sym_sym_lit_token1, + ACTIONS(245), 1, + anon_sym_POUND_QMARK, + ACTIONS(247), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(5560), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_cl, + ACTIONS(5671), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(1072), 1, sym_sym_lit, - STATE(2806), 1, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4762), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4776), 2, + ACTIONS(266), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5556), 2, + ACTIONS(272), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5667), 2, sym__ws, sym_comment, - ACTIONS(5558), 3, + ACTIONS(5669), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(553), 3, + STATE(914), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1781), 19, + STATE(6), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56146,7 +57162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18630] = 35, + [19170] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56155,78 +57171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, - anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5564), 1, + ACTIONS(5675), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(1072), 1, + sym_sym_lit, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(5438), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5562), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5673), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1650), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1696), 19, + STATE(997), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56246,7 +57262,107 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18765] = 35, + [19305] = 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(2675), 1, + anon_sym_POUND, + ACTIONS(2679), 1, + aux_sym_num_lit_token1, + ACTIONS(2684), 1, + anon_sym_COLON_COLON, + ACTIONS(2686), 1, + anon_sym_DQUOTE, + ACTIONS(2688), 1, + aux_sym_sym_lit_token1, + ACTIONS(2703), 1, + anon_sym_POUND_QMARK, + ACTIONS(2705), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(2707), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(2709), 1, + anon_sym_SQUOTE, + ACTIONS(2711), 1, + anon_sym_BQUOTE, + ACTIONS(2713), 1, + anon_sym_COMMA_AT, + ACTIONS(2715), 1, + anon_sym_COMMA, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, + anon_sym_cl, + ACTIONS(5681), 1, + sym_self_referential_reader_macro, + STATE(1484), 1, + sym__bare_set_lit, + STATE(1486), 1, + sym_sym_lit, + STATE(2831), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(2701), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(2722), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2726), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2728), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5677), 2, + sym__ws, + sym_comment, + ACTIONS(5679), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(915), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1485), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(256), 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, + [19440] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -56285,19 +57401,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5570), 1, + ACTIONS(5687), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -56311,22 +57427,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5566), 2, + ACTIONS(5683), 2, sym__ws, sym_comment, - ACTIONS(5568), 3, + ACTIONS(5685), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(521), 3, + STATE(565), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(480), 19, + STATE(822), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56346,7 +57462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18900] = 35, + [19575] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56355,78 +57471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(825), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 1, + ACTIONS(2959), 1, + anon_sym_LPAREN, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(843), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(4353), 1, + ACTIONS(5025), 1, anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(5576), 1, + ACTIONS(5693), 1, sym_self_referential_reader_macro, - STATE(1129), 1, - sym_sym_lit, - STATE(1150), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5572), 2, + ACTIONS(5689), 2, sym__ws, sym_comment, - ACTIONS(5574), 3, + ACTIONS(5691), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(612), 3, + STATE(571), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1135), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1216), 19, + STATE(1956), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56446,87 +57562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19035] = 35, + [19710] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_POUND_QMARK, - ACTIONS(35), 1, - anon_sym_POUND_QMARK_AT, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(4756), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(2953), 1, + anon_sym_COLON_COLON, + ACTIONS(2955), 1, + anon_sym_DQUOTE, + ACTIONS(2957), 1, + aux_sym_sym_lit_token1, + ACTIONS(2959), 1, + anon_sym_LPAREN, + ACTIONS(2963), 1, + anon_sym_POUND_QMARK, + ACTIONS(2965), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(5056), 1, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, + anon_sym_cl, + ACTIONS(5699), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(2766), 1, sym_sym_lit, - STATE(2806), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(2961), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(2987), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5695), 2, sym__ws, sym_comment, - ACTIONS(4762), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4776), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5054), 3, + ACTIONS(5697), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(574), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1785), 19, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1954), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56546,7 +57662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19170] = 35, + [19845] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56555,78 +57671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(2945), 1, + anon_sym_POUND, + ACTIONS(2949), 1, + aux_sym_num_lit_token1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(5580), 1, + ACTIONS(5705), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(1966), 1, + sym__bare_set_lit, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(2983), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5578), 3, + ACTIONS(2989), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5701), 2, + sym__ws, + sym_comment, + ACTIONS(5703), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(588), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2943), 19, + STATE(1952), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56646,7 +57762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19305] = 35, + [19980] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56655,78 +57771,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(5586), 1, + ACTIONS(4877), 1, anon_sym_COLON, - ACTIONS(5588), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5592), 1, + ACTIONS(5709), 1, sym_self_referential_reader_macro, - STATE(1027), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1062), 1, + STATE(1072), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5582), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5584), 3, + ACTIONS(5707), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(600), 3, + STATE(1070), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1028), 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, + [20115] = 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(217), 1, + anon_sym_POUND, + ACTIONS(221), 1, + aux_sym_num_lit_token1, + ACTIONS(226), 1, + anon_sym_COLON_COLON, + ACTIONS(228), 1, + anon_sym_DQUOTE, + ACTIONS(230), 1, + aux_sym_sym_lit_token1, + ACTIONS(245), 1, + anon_sym_POUND_QMARK, + ACTIONS(247), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(249), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(251), 1, + anon_sym_SQUOTE, + ACTIONS(253), 1, + anon_sym_BQUOTE, + ACTIONS(255), 1, + anon_sym_COMMA_AT, + ACTIONS(257), 1, + anon_sym_COMMA, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_cl, + ACTIONS(5713), 1, + sym_self_referential_reader_macro, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1072), 1, + sym_sym_lit, + STATE(2797), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(243), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(266), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(270), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(272), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5711), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1035), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1036), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56746,7 +57962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19440] = 35, + [20250] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56755,78 +57971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(5586), 1, + ACTIONS(4877), 1, anon_sym_COLON, - ACTIONS(5588), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5598), 1, + ACTIONS(5719), 1, sym_self_referential_reader_macro, - STATE(1027), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1062), 1, + STATE(1072), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5594), 2, + ACTIONS(5715), 2, sym__ws, sym_comment, - ACTIONS(5596), 3, + ACTIONS(5717), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(603), 3, + STATE(535), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1038), 19, + STATE(1032), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56846,7 +58062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19575] = 35, + [20385] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56855,78 +58071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, - anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, - anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5602), 1, + ACTIONS(5723), 1, sym_self_referential_reader_macro, - STATE(1469), 1, - sym_sym_lit, - STATE(1490), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(1072), 1, + sym_sym_lit, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4896), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5600), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5721), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1489), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1522), 19, + STATE(1030), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56946,7 +58162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19710] = 35, + [20520] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56955,78 +58171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(5586), 1, + ACTIONS(4877), 1, anon_sym_COLON, - ACTIONS(5588), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5608), 1, + ACTIONS(5729), 1, sym_self_referential_reader_macro, - STATE(1027), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1062), 1, + STATE(1072), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5604), 2, + ACTIONS(5725), 2, sym__ws, sym_comment, - ACTIONS(5606), 3, + ACTIONS(5727), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(604), 3, + STATE(547), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1039), 19, + STATE(1003), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57046,87 +58262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19845] = 35, + [20655] = 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(217), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(230), 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(245), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5614), 1, + ACTIONS(5735), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(1072), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5610), 2, + ACTIONS(5731), 2, sym__ws, sym_comment, - ACTIONS(5612), 3, + ACTIONS(5733), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(531), 3, + STATE(553), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(910), 19, + STATE(1004), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57146,7 +58362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19980] = 35, + [20790] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57155,78 +58371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(5586), 1, + ACTIONS(4877), 1, anon_sym_COLON, - ACTIONS(5588), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5620), 1, + ACTIONS(5741), 1, sym_self_referential_reader_macro, - STATE(1027), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1062), 1, + STATE(1072), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5616), 2, + ACTIONS(5737), 2, sym__ws, sym_comment, - ACTIONS(5618), 3, + ACTIONS(5739), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(607), 3, + STATE(554), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1049), 19, + STATE(1005), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57246,7 +58462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20115] = 35, + [20925] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57255,78 +58471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(5626), 1, + ACTIONS(5747), 1, sym_self_referential_reader_macro, - STATE(1927), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2795), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2356), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(2983), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5622), 2, + ACTIONS(2989), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5743), 2, sym__ws, sym_comment, - ACTIONS(5624), 3, + ACTIONS(5745), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(505), 3, + STATE(589), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2780), 19, + STATE(1950), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57346,7 +58562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20250] = 35, + [21060] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57355,78 +58571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, - anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5630), 1, + ACTIONS(5753), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(1072), 1, + sym_sym_lit, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(5438), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5628), 3, + ACTIONS(5749), 2, + sym__ws, + sym_comment, + ACTIONS(5751), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1650), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(556), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1697), 19, + STATE(1070), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1008), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57446,7 +58662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20385] = 35, + [21195] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57455,78 +58671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(4969), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(5636), 1, + ACTIONS(5757), 1, sym_self_referential_reader_macro, - STATE(1469), 1, - sym_sym_lit, STATE(1490), 1, + sym_sym_lit, + STATE(1497), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4896), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5632), 2, - sym__ws, - sym_comment, - ACTIONS(5634), 3, + ACTIONS(5755), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(416), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1489), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1586), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1494), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57546,87 +58762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20520] = 35, + [21330] = 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(65), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 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(95), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, - anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5642), 1, + ACTIONS(5761), 1, sym_self_referential_reader_macro, - STATE(1027), 1, - sym__bare_set_lit, - STATE(1062), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2775), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5638), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5640), 3, + ACTIONS(5759), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(608), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1052), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(829), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57646,7 +58862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20655] = 35, + [21465] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57655,78 +58871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, - anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5646), 1, + ACTIONS(5765), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(1072), 1, + sym_sym_lit, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(5438), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5644), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5763), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1650), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1698), 19, + STATE(1010), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57746,87 +58962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20790] = 35, + [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(5422), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5650), 1, + ACTIONS(5769), 1, sym_self_referential_reader_macro, - STATE(1649), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1651), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(5438), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5648), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5767), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1650), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1699), 19, + STATE(833), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57846,87 +59062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20925] = 35, + [21735] = 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(4756), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(226), 1, + anon_sym_COLON_COLON, + ACTIONS(228), 1, + anon_sym_DQUOTE, + ACTIONS(230), 1, + aux_sym_sym_lit_token1, + ACTIONS(245), 1, + anon_sym_POUND_QMARK, + ACTIONS(247), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(5030), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_cl, + ACTIONS(5773), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(1072), 1, sym_sym_lit, - STATE(2806), 1, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(243), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(270), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4762), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4776), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5028), 3, + ACTIONS(5771), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1784), 19, + STATE(1011), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57946,7 +59162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21060] = 35, + [21870] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57955,78 +59171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(2945), 1, + anon_sym_POUND, + ACTIONS(2949), 1, + aux_sym_num_lit_token1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5214), 1, - sym_self_referential_reader_macro, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - STATE(2798), 1, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, + anon_sym_cl, + ACTIONS(5777), 1, + sym_self_referential_reader_macro, + STATE(1966), 1, + sym__bare_set_lit, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(2983), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5194), 3, + ACTIONS(2989), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5775), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2897), 19, + STATE(1906), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58046,7 +59262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21195] = 35, + [22005] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58055,78 +59271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(5674), 1, + ACTIONS(5781), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(5438), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5672), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5779), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1650), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1700), 19, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1938), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58146,7 +59362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21330] = 35, + [22140] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58155,78 +59371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4877), 1, anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5680), 1, + ACTIONS(5785), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(1072), 1, + sym_sym_lit, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5676), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5678), 3, + ACTIONS(5783), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(408), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2666), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1012), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58246,7 +59462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21465] = 35, + [22275] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58255,78 +59471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4877), 1, anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5686), 1, + ACTIONS(5789), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(1072), 1, + sym_sym_lit, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5682), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5684), 3, + ACTIONS(5787), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(406), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2716), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1013), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58346,7 +59562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21600] = 35, + [22410] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58355,78 +59571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(2959), 1, + anon_sym_LPAREN, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(5025), 1, anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(5692), 1, + ACTIONS(5793), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5688), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5690), 3, + ACTIONS(5791), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(404), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2710), 19, + STATE(1891), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58446,7 +59662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21735] = 35, + [22545] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58455,78 +59671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4877), 1, anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5698), 1, + ACTIONS(5797), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(1072), 1, + sym_sym_lit, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5694), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5696), 3, + ACTIONS(5795), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(402), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2689), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1014), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58546,7 +59762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [21870] = 35, + [22680] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58555,78 +59771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, + ACTIONS(4751), 1, + aux_sym_num_lit_token1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5238), 1, - sym_self_referential_reader_macro, - ACTIONS(5652), 1, + ACTIONS(5799), 1, anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - STATE(2798), 1, + ACTIONS(5819), 1, + sym_self_referential_reader_macro, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, + STATE(2947), 1, sym__bare_set_lit, - STATE(3066), 1, + STATE(3088), 1, sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, + ACTIONS(4763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4862), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5198), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5821), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5236), 3, + ACTIONS(5801), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2894), 19, + STATE(3074), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58646,7 +59862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22005] = 35, + [22815] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58655,78 +59871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(2959), 1, + anon_sym_LPAREN, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(5586), 1, + ACTIONS(5025), 1, anon_sym_COLON, - ACTIONS(5588), 1, - anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(5704), 1, + ACTIONS(5825), 1, sym_self_referential_reader_macro, - STATE(1027), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(1062), 1, + STATE(2766), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5700), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5702), 3, + ACTIONS(5823), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(614), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(21), 19, + STATE(1936), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58746,7 +59962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22140] = 35, + [22950] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58755,178 +59971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, - anon_sym_COLON_COLON, - ACTIONS(4834), 1, - anon_sym_DQUOTE, - ACTIONS(4836), 1, - aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(5654), 1, - anon_sym_LPAREN, - ACTIONS(5656), 1, - anon_sym_POUND_QMARK, - ACTIONS(5658), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, - anon_sym_SQUOTE, - ACTIONS(5664), 1, - anon_sym_BQUOTE, - ACTIONS(5666), 1, - anon_sym_COMMA_AT, - ACTIONS(5668), 1, - anon_sym_COMMA, - ACTIONS(5708), 1, - sym_self_referential_reader_macro, - STATE(2798), 1, - aux_sym_list_lit_repeat1, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5670), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5706), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(3046), 19, - sym__form, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - sym_path_lit, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [22275] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(230), 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(245), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5712), 1, + ACTIONS(5831), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(1072), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5827), 2, sym__ws, sym_comment, - ACTIONS(5710), 3, + ACTIONS(5829), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(566), 19, + STATE(1070), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1034), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58946,7 +60062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22410] = 35, + [23085] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58955,78 +60071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(4784), 1, + ACTIONS(4877), 1, anon_sym_COLON, - ACTIONS(4786), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5718), 1, + ACTIONS(5837), 1, sym_self_referential_reader_macro, - STATE(1319), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1321), 1, + STATE(1072), 1, sym_sym_lit, - STATE(2808), 1, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5714), 2, + ACTIONS(5833), 2, sym__ws, sym_comment, - ACTIONS(5716), 3, + ACTIONS(5835), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(405), 3, + STATE(566), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1320), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(124), 19, + STATE(1037), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59046,87 +60162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22545] = 35, + [23220] = 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(217), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(230), 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(245), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5722), 1, + ACTIONS(5843), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(1072), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5839), 2, sym__ws, sym_comment, - ACTIONS(5720), 3, + ACTIONS(5841), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(574), 19, + STATE(1070), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1040), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59146,7 +60262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22680] = 35, + [23355] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59155,178 +60271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5320), 1, - sym_self_referential_reader_macro, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, - anon_sym_SQUOTE, - ACTIONS(5664), 1, - anon_sym_BQUOTE, - ACTIONS(5666), 1, - anon_sym_COMMA_AT, - ACTIONS(5668), 1, - anon_sym_COMMA, - STATE(2798), 1, - aux_sym_list_lit_repeat1, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5670), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5724), 2, - sym__ws, - sym_comment, - ACTIONS(5318), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(554), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2874), 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, - [22815] = 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(223), 1, + ACTIONS(5087), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(5091), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, - anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(5728), 1, + ACTIONS(5849), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5845), 2, sym__ws, sym_comment, - ACTIONS(5726), 3, + ACTIONS(5847), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(860), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2672), 19, + STATE(2815), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59346,7 +60362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [22950] = 35, + [23490] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59355,78 +60371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4877), 1, anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5732), 1, + ACTIONS(5855), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(1072), 1, + sym_sym_lit, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5851), 2, sym__ws, sym_comment, - ACTIONS(5730), 3, + ACTIONS(5853), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(570), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2719), 19, + STATE(1043), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59446,7 +60462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23085] = 35, + [23625] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -59485,19 +60501,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5736), 1, + ACTIONS(5859), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -59511,22 +60527,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5734), 3, + ACTIONS(5857), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(410), 19, + STATE(853), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59546,7 +60562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23220] = 35, + [23760] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59555,78 +60571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4877), 1, anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(5740), 1, + ACTIONS(5865), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(1072), 1, + sym_sym_lit, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5861), 2, sym__ws, sym_comment, - ACTIONS(5738), 3, + ACTIONS(5863), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(572), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2712), 19, + STATE(1046), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59646,87 +60662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23355] = 35, + [23895] = 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(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(33), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(5744), 1, + ACTIONS(5869), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5742), 3, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5867), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(414), 19, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1920), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59746,87 +60762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23490] = 35, + [24030] = 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(4830), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5324), 1, - sym_self_referential_reader_macro, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(45), 1, anon_sym_COMMA, - STATE(2798), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5875), 1, + sym_self_referential_reader_macro, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5322), 3, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5871), 2, + sym__ws, + sym_comment, + ACTIONS(5873), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(592), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2873), 19, + STATE(869), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59846,7 +60862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23625] = 35, + [24165] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59855,78 +60871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4859), 1, anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5748), 1, + ACTIONS(5879), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(1486), 1, + sym_sym_lit, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5746), 3, + ACTIONS(5877), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2724), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1409), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59946,7 +60962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23760] = 35, + [24300] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59955,78 +60971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(2675), 1, + anon_sym_POUND, + ACTIONS(2679), 1, + aux_sym_num_lit_token1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5348), 1, - sym_self_referential_reader_macro, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, - anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - STATE(2798), 1, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, + anon_sym_cl, + ACTIONS(5883), 1, + sym_self_referential_reader_macro, + STATE(1484), 1, + sym__bare_set_lit, + STATE(1486), 1, + sym_sym_lit, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(2722), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5750), 2, + ACTIONS(2728), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5346), 3, + ACTIONS(5881), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(560), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2912), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1410), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60046,87 +61062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23895] = 35, + [24435] = 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(4706), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5756), 1, + ACTIONS(5887), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5752), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5754), 3, + ACTIONS(5885), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(492), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2964), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1794), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60146,7 +61162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24030] = 35, + [24570] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60155,78 +61171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, - anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5762), 1, + ACTIONS(5893), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(1486), 1, + sym_sym_lit, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(5438), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5758), 2, + ACTIONS(5889), 2, sym__ws, sym_comment, - ACTIONS(5760), 3, + ACTIONS(5891), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(589), 3, + STATE(584), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1650), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1702), 19, + STATE(1416), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60246,7 +61262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24165] = 35, + [24705] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60255,78 +61271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(2959), 1, + anon_sym_LPAREN, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(5586), 1, + ACTIONS(5025), 1, anon_sym_COLON, - ACTIONS(5588), 1, - anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(5766), 1, + ACTIONS(5897), 1, sym_self_referential_reader_macro, - STATE(1027), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(1062), 1, + STATE(2766), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5764), 3, + ACTIONS(5895), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(4), 19, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1935), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60346,7 +61362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24300] = 35, + [24840] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60355,78 +61371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(5772), 1, + ACTIONS(5901), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(5438), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5768), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5770), 3, + ACTIONS(5899), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(628), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1650), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1707), 19, + STATE(1934), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60446,87 +61462,187 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24435] = 35, + [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(2675), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, + ACTIONS(2703), 1, + anon_sym_POUND_QMARK, + ACTIONS(2705), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(2707), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(2709), 1, + anon_sym_SQUOTE, + ACTIONS(2711), 1, + anon_sym_BQUOTE, + ACTIONS(2713), 1, + anon_sym_COMMA_AT, + ACTIONS(2715), 1, + anon_sym_COMMA, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, + anon_sym_cl, + ACTIONS(5905), 1, + sym_self_referential_reader_macro, + STATE(1484), 1, + sym__bare_set_lit, + STATE(1486), 1, + sym_sym_lit, + STATE(2831), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(2701), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(2722), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2726), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2728), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5903), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1485), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1284), 19, + sym__form, + sym_num_lit, + sym_kwd_lit, + sym_str_lit, + sym_char_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + sym_path_lit, + sym_package_lit, + sym_include_reader_macro, + sym_complex_num_lit, + [25110] = 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(2675), 1, + anon_sym_POUND, + ACTIONS(2679), 1, + aux_sym_num_lit_token1, + ACTIONS(2684), 1, + anon_sym_COLON_COLON, + ACTIONS(2686), 1, + anon_sym_DQUOTE, + ACTIONS(2688), 1, + aux_sym_sym_lit_token1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5778), 1, + ACTIONS(5911), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(1486), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5774), 2, + ACTIONS(5907), 2, sym__ws, sym_comment, - ACTIONS(5776), 3, + ACTIONS(5909), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(563), 3, + STATE(585), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(660), 19, + STATE(1417), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60546,7 +61662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24570] = 35, + [25245] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -60585,19 +61701,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5782), 1, + ACTIONS(5915), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -60611,22 +61727,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5780), 3, + ACTIONS(5913), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(730), 19, + STATE(879), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60646,7 +61762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24705] = 35, + [25380] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60655,78 +61771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, - anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5788), 1, + ACTIONS(5919), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(1486), 1, + sym_sym_lit, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(5438), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5784), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5786), 3, + ACTIONS(5917), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(638), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1650), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1709), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1418), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60746,7 +61862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24840] = 35, + [25515] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60755,78 +61871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, - anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5794), 1, + ACTIONS(5923), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(1486), 1, + sym_sym_lit, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(5438), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5790), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5792), 3, + ACTIONS(5921), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(639), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1650), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1711), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1420), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60846,7 +61962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24975] = 35, + [25650] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -60885,19 +62001,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5800), 1, + ACTIONS(5929), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -60911,22 +62027,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5796), 2, + ACTIONS(5925), 2, sym__ws, sym_comment, - ACTIONS(5798), 3, + ACTIONS(5927), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(565), 3, + STATE(630), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(670), 19, + STATE(889), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60946,7 +62062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25110] = 35, + [25785] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60955,178 +62071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4859), 1, anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5804), 1, + ACTIONS(5935), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(2789), 1, - aux_sym_list_lit_repeat1, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - ACTIONS(254), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(279), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(5802), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2699), 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, - [25245] = 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(223), 1, - anon_sym_POUND, - ACTIONS(227), 1, - aux_sym_num_lit_token1, - ACTIONS(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, - anon_sym_POUND_QMARK, - ACTIONS(258), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, - anon_sym_SQUOTE, - ACTIONS(264), 1, - anon_sym_BQUOTE, - ACTIONS(266), 1, - anon_sym_COMMA_AT, - ACTIONS(268), 1, - anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(5810), 1, - sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1486), 1, sym_sym_lit, - STATE(2537), 1, - sym__bare_set_lit, - STATE(2789), 1, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5806), 2, + ACTIONS(5931), 2, sym__ws, sym_comment, - ACTIONS(5808), 3, + ACTIONS(5933), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(759), 3, + STATE(590), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2697), 19, + STATE(1425), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61146,7 +62162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25380] = 35, + [25920] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -61185,19 +62201,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5814), 1, + ACTIONS(5941), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -61211,22 +62227,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5937), 2, sym__ws, sym_comment, - ACTIONS(5812), 3, + ACTIONS(5939), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(636), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(930), 19, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(891), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61246,7 +62262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25515] = 35, + [26055] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61255,78 +62271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4859), 1, anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5820), 1, + ACTIONS(5947), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(1486), 1, + sym_sym_lit, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5816), 2, + ACTIONS(5943), 2, sym__ws, sym_comment, - ACTIONS(5818), 3, + ACTIONS(5945), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(761), 3, + STATE(593), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2693), 19, + STATE(1426), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61346,7 +62362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25650] = 35, + [26190] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -61385,19 +62401,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5824), 1, + ACTIONS(5951), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -61411,22 +62427,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5822), 3, + ACTIONS(5949), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(733), 19, + STATE(1786), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61446,7 +62462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25785] = 35, + [26325] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61455,78 +62471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(5828), 1, + ACTIONS(5957), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(5438), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5826), 3, + ACTIONS(5953), 2, + sym__ws, + sym_comment, + ACTIONS(5955), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1650), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(640), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1721), 19, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1932), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61546,7 +62562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25920] = 35, + [26460] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61555,78 +62571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(2959), 1, + anon_sym_LPAREN, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(5025), 1, anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(5832), 1, + ACTIONS(5601), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5959), 2, sym__ws, sym_comment, - ACTIONS(5830), 3, + ACTIONS(5599), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(644), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2691), 19, + STATE(1929), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61646,7 +62662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26055] = 35, + [26595] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61655,78 +62671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4859), 1, anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5838), 1, + ACTIONS(5963), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(1486), 1, + sym_sym_lit, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5834), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5836), 3, + ACTIONS(5961), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(765), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2688), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1427), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61746,7 +62762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26190] = 35, + [26730] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61755,78 +62771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5844), 1, + ACTIONS(5967), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5840), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5842), 3, + ACTIONS(5965), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(498), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2965), 19, + STATE(2697), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61846,7 +62862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26325] = 35, + [26865] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61855,78 +62871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5848), 1, + ACTIONS(5973), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5846), 3, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5969), 2, + sym__ws, + sym_comment, + ACTIONS(5971), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(782), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2947), 19, + STATE(2687), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61946,7 +62962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26460] = 35, + [27000] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61955,78 +62971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4859), 1, anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5852), 1, + ACTIONS(5977), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(1486), 1, + sym_sym_lit, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5850), 3, + ACTIONS(5975), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2687), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1428), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62046,7 +63062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26595] = 35, + [27135] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62055,78 +63071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, - anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5858), 1, + ACTIONS(5983), 1, sym_self_referential_reader_macro, - STATE(1649), 1, + STATE(2492), 1, sym_sym_lit, - STATE(1651), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(5438), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5854), 2, + ACTIONS(5979), 2, sym__ws, sym_comment, - ACTIONS(5856), 3, + ACTIONS(5981), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(645), 3, + STATE(784), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1650), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1722), 19, + STATE(2684), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62146,87 +63162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26730] = 35, + [27270] = 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(2675), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(2688), 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(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5864), 1, + ACTIONS(5987), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(1486), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5860), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5862), 3, + ACTIONS(5985), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(586), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(864), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1429), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62246,7 +63262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26865] = 35, + [27405] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62255,78 +63271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4859), 1, anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5870), 1, + ACTIONS(5993), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(1486), 1, + sym_sym_lit, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5866), 2, + ACTIONS(5989), 2, sym__ws, sym_comment, - ACTIONS(5868), 3, + ACTIONS(5991), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(771), 3, + STATE(594), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2707), 19, + STATE(1432), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62346,87 +63362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27000] = 35, + [27540] = 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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5876), 1, + ACTIONS(5997), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(5872), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5874), 3, + ACTIONS(5995), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(580), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(738), 19, + STATE(2725), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62446,7 +63462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27135] = 35, + [27675] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62455,78 +63471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5880), 1, + ACTIONS(6003), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5878), 3, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5999), 2, + sym__ws, + sym_comment, + ACTIONS(6001), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(788), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2966), 19, + STATE(2747), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62546,7 +63562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27270] = 35, + [27810] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62555,78 +63571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(5586), 1, + ACTIONS(4859), 1, anon_sym_COLON, - ACTIONS(5588), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5884), 1, + ACTIONS(6007), 1, sym_self_referential_reader_macro, - STATE(1027), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(1062), 1, + STATE(1486), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5882), 3, + ACTIONS(6005), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1119), 19, + STATE(1433), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62646,7 +63662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27405] = 35, + [27945] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62655,78 +63671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(2675), 1, + anon_sym_POUND, + ACTIONS(2679), 1, + aux_sym_num_lit_token1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5888), 1, + ACTIONS(6013), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(1484), 1, + sym__bare_set_lit, + STATE(1486), 1, + sym_sym_lit, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(2722), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5886), 3, + ACTIONS(2728), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6009), 2, + sym__ws, + sym_comment, + ACTIONS(6011), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(602), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2875), 19, + STATE(1440), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62746,87 +63762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27540] = 35, + [28080] = 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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5894), 1, + ACTIONS(6017), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(5890), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5892), 3, + ACTIONS(6015), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(588), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(740), 19, + STATE(2749), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62846,7 +63862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27675] = 35, + [28215] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62855,78 +63871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(5586), 1, + ACTIONS(4859), 1, anon_sym_COLON, - ACTIONS(5588), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5898), 1, + ACTIONS(6023), 1, sym_self_referential_reader_macro, - STATE(1027), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(1062), 1, + STATE(1486), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6019), 2, sym__ws, sym_comment, - ACTIONS(5896), 3, + ACTIONS(6021), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(605), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1060), 19, + STATE(1485), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1441), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62946,7 +63962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27810] = 35, + [28350] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62955,78 +63971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(5586), 1, + ACTIONS(4859), 1, anon_sym_COLON, - ACTIONS(5588), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5902), 1, + ACTIONS(6029), 1, sym_self_referential_reader_macro, - STATE(1027), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(1062), 1, + STATE(1486), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6025), 2, sym__ws, sym_comment, - ACTIONS(5900), 3, + ACTIONS(6027), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(607), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1087), 19, + STATE(1485), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1442), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63046,7 +64062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27945] = 35, + [28485] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63055,78 +64071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5908), 1, + ACTIONS(6035), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5904), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6031), 2, sym__ws, sym_comment, - ACTIONS(5906), 3, + ACTIONS(6033), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(540), 3, + STATE(794), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2931), 19, + STATE(2746), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63146,7 +64162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28080] = 35, + [28620] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63155,78 +64171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(2675), 1, + anon_sym_POUND, + ACTIONS(2679), 1, + aux_sym_num_lit_token1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5912), 1, + ACTIONS(6041), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(1484), 1, + sym__bare_set_lit, + STATE(1486), 1, + sym_sym_lit, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(2722), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5910), 3, + ACTIONS(2728), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6037), 2, + sym__ws, + sym_comment, + ACTIONS(6039), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(611), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2911), 19, + STATE(1445), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63246,7 +64262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28215] = 35, + [28755] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63255,78 +64271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(5586), 1, + ACTIONS(4859), 1, anon_sym_COLON, - ACTIONS(5588), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5916), 1, + ACTIONS(6045), 1, sym_self_referential_reader_macro, - STATE(1027), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(1062), 1, + STATE(1486), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5914), 3, + ACTIONS(6043), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1083), 19, + STATE(1447), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63346,7 +64362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28350] = 35, + [28890] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63355,78 +64371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(5586), 1, + ACTIONS(4859), 1, anon_sym_COLON, - ACTIONS(5588), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5920), 1, + ACTIONS(6049), 1, sym_self_referential_reader_macro, - STATE(1027), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(1062), 1, + STATE(1486), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5918), 3, + ACTIONS(6047), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1065), 19, + STATE(1448), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63446,7 +64462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28485] = 35, + [29025] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63455,178 +64471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, - anon_sym_COLON_COLON, - ACTIONS(4834), 1, - anon_sym_DQUOTE, - ACTIONS(4836), 1, - aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(5654), 1, - anon_sym_LPAREN, - ACTIONS(5656), 1, - anon_sym_POUND_QMARK, - ACTIONS(5658), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, - anon_sym_SQUOTE, - ACTIONS(5664), 1, - anon_sym_BQUOTE, - ACTIONS(5666), 1, - anon_sym_COMMA_AT, - ACTIONS(5668), 1, - anon_sym_COMMA, - ACTIONS(5926), 1, - sym_self_referential_reader_macro, - STATE(2798), 1, - aux_sym_list_lit_repeat1, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5670), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5922), 2, - sym__ws, - sym_comment, - ACTIONS(5924), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(562), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(3031), 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, - [28620] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(2688), 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(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5930), 1, + ACTIONS(6053), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(1486), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5928), 3, + ACTIONS(6051), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(745), 19, + STATE(1449), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63646,87 +64562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28755] = 35, + [29160] = 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(2675), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(2688), 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(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5936), 1, + ACTIONS(6057), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(1486), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5932), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5934), 3, + ACTIONS(6055), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(610), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(753), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1450), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63746,7 +64662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28890] = 35, + [29295] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63755,78 +64671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(825), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(843), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(4353), 1, + ACTIONS(4859), 1, anon_sym_COLON, - ACTIONS(4355), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5940), 1, + ACTIONS(6061), 1, sym_self_referential_reader_macro, - STATE(1129), 1, - sym_sym_lit, - STATE(1150), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(1486), 1, + sym_sym_lit, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5938), 3, + ACTIONS(6059), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1135), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1227), 19, + STATE(1451), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63846,7 +64762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29025] = 35, + [29430] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63855,78 +64771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, - anon_sym_POUND, - ACTIONS(69), 1, - aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, - anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5946), 1, + ACTIONS(6065), 1, sym_self_referential_reader_macro, - STATE(1027), 1, - sym__bare_set_lit, - STATE(1062), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5942), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5944), 3, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6063), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(626), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1063), 19, + STATE(2516), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63946,7 +64862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29160] = 35, + [29565] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63955,78 +64871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(5586), 1, + ACTIONS(4859), 1, anon_sym_COLON, - ACTIONS(5588), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5950), 1, + ACTIONS(6071), 1, sym_self_referential_reader_macro, - STATE(1027), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(1062), 1, + STATE(1486), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6067), 2, sym__ws, sym_comment, - ACTIONS(5948), 3, + ACTIONS(6069), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(618), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(3), 19, + STATE(1485), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1466), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64046,7 +64962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29295] = 35, + [29700] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64055,78 +64971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(2675), 1, + anon_sym_POUND, + ACTIONS(2679), 1, + aux_sym_num_lit_token1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5352), 1, - sym_self_referential_reader_macro, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, - anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - STATE(2798), 1, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, + anon_sym_cl, + ACTIONS(6077), 1, + sym_self_referential_reader_macro, + STATE(1484), 1, + sym__bare_set_lit, + STATE(1486), 1, + sym_sym_lit, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(2722), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5350), 3, + ACTIONS(2728), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6073), 2, + sym__ws, + sym_comment, + ACTIONS(6075), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(619), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2920), 19, + STATE(1467), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64146,87 +65062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29430] = 35, + [29835] = 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(4756), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(4760), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(2684), 1, + anon_sym_COLON_COLON, + ACTIONS(2686), 1, + anon_sym_DQUOTE, + ACTIONS(2688), 1, + aux_sym_sym_lit_token1, + ACTIONS(2703), 1, + anon_sym_POUND_QMARK, + ACTIONS(2705), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(5956), 1, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, + anon_sym_cl, + ACTIONS(6083), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(1486), 1, sym_sym_lit, - STATE(2806), 1, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4762), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4776), 2, + ACTIONS(2722), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5952), 2, + ACTIONS(2728), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6079), 2, sym__ws, sym_comment, - ACTIONS(5954), 3, + ACTIONS(6081), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(713), 3, + STATE(620), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1791), 19, + STATE(1468), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64246,7 +65162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29565] = 35, + [29970] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64255,78 +65171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(5586), 1, + ACTIONS(4859), 1, anon_sym_COLON, - ACTIONS(5588), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5962), 1, + ACTIONS(6089), 1, sym_self_referential_reader_macro, - STATE(1027), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(1062), 1, + STATE(1486), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5958), 2, + ACTIONS(6085), 2, sym__ws, sym_comment, - ACTIONS(5960), 3, + ACTIONS(6087), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(662), 3, + STATE(621), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1054), 19, + STATE(1469), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64346,7 +65262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29700] = 35, + [30105] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64355,78 +65271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(5586), 1, + ACTIONS(4859), 1, anon_sym_COLON, - ACTIONS(5588), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(5968), 1, + ACTIONS(6095), 1, sym_self_referential_reader_macro, - STATE(1027), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(1062), 1, + STATE(1486), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5964), 2, + ACTIONS(6091), 2, sym__ws, sym_comment, - ACTIONS(5966), 3, + ACTIONS(6093), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(667), 3, + STATE(622), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1047), 19, + STATE(1470), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64446,7 +65362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29835] = 35, + [30240] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64455,78 +65371,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(825), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 1, + ACTIONS(2959), 1, + anon_sym_LPAREN, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(843), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(4353), 1, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, + anon_sym_cl, + ACTIONS(5167), 1, + sym_self_referential_reader_macro, + STATE(1966), 1, + sym__bare_set_lit, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(2961), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(2983), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2987), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2989), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6097), 2, + sym__ws, + sym_comment, + ACTIONS(5165), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(656), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1928), 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, + [30375] = 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(4355), 1, + 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(4357), 1, + 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(5972), 1, + ACTIONS(6101), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1150), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5970), 3, + ACTIONS(6099), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1135), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1230), 19, + STATE(899), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64546,187 +65562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29970] = 35, + [30510] = 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(65), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 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(95), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, - anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5978), 1, + ACTIONS(6105), 1, sym_self_referential_reader_macro, - STATE(1027), 1, - sym__bare_set_lit, - STATE(1062), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2775), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5974), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5976), 3, + ACTIONS(6103), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(675), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1040), 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, - [30105] = 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(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, - anon_sym_COLON_COLON, - ACTIONS(4834), 1, - anon_sym_DQUOTE, - ACTIONS(4836), 1, - aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5580), 1, - sym_self_referential_reader_macro, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, - anon_sym_LPAREN, - ACTIONS(5656), 1, - anon_sym_POUND_QMARK, - ACTIONS(5658), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, - anon_sym_SQUOTE, - ACTIONS(5664), 1, - anon_sym_BQUOTE, - ACTIONS(5666), 1, - anon_sym_COMMA_AT, - ACTIONS(5668), 1, - anon_sym_COMMA, - STATE(2798), 1, - aux_sym_list_lit_repeat1, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5670), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5578), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2943), 19, + STATE(944), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64746,7 +65662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30240] = 35, + [30645] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -64785,19 +65701,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5956), 1, + ACTIONS(6111), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -64811,22 +65727,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5980), 2, + ACTIONS(6107), 2, sym__ws, sym_comment, - ACTIONS(5954), 3, + ACTIONS(6109), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(523), 3, + STATE(823), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1791), 19, + STATE(1803), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64846,87 +65762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30375] = 35, + [30780] = 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(223), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 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(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5984), 1, + ACTIONS(6115), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5982), 3, + ACTIONS(6113), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2675), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(642), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64946,87 +65862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30510] = 35, + [30915] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5990), 1, + ACTIONS(6121), 1, sym_self_referential_reader_macro, - STATE(1927), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, sym__bare_set_lit, - STATE(2795), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2356), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5986), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6117), 2, sym__ws, sym_comment, - ACTIONS(5988), 3, + ACTIONS(6119), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(754), 3, + STATE(452), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1939), 19, + STATE(1806), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65046,7 +65962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30645] = 35, + [31050] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -65085,19 +66001,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5560), 1, + ACTIONS(6125), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -65111,22 +66027,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5992), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5558), 3, + ACTIONS(6123), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(440), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1781), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1809), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65146,87 +66062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30780] = 35, + [31185] = 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(65), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 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(95), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, - anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5996), 1, + ACTIONS(6129), 1, sym_self_referential_reader_macro, - STATE(1027), 1, - sym__bare_set_lit, - STATE(1062), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2775), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5994), 3, + ACTIONS(6127), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1001), 19, + STATE(904), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65246,87 +66162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30915] = 35, + [31320] = 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(5422), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6000), 1, + ACTIONS(6133), 1, sym_self_referential_reader_macro, - STATE(1649), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1651), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(5438), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5998), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(6131), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1650), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1669), 19, + STATE(1852), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65346,7 +66262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31050] = 35, + [31455] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65355,78 +66271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(6004), 1, + ACTIONS(5221), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(5438), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6002), 3, + ACTIONS(6135), 2, + sym__ws, + sym_comment, + ACTIONS(5219), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1650), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(666), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1726), 19, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1926), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65446,87 +66362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31185] = 35, + [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(825), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 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(843), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6008), 1, + ACTIONS(6139), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1150), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6006), 3, + ACTIONS(6137), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1135), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1237), 19, + STATE(1812), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65546,7 +66462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31320] = 35, + [31725] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65555,78 +66471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(2959), 1, + anon_sym_LPAREN, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(5586), 1, + ACTIONS(5025), 1, anon_sym_COLON, - ACTIONS(5588), 1, - anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(6014), 1, + ACTIONS(5109), 1, sym_self_referential_reader_macro, - STATE(1027), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(1062), 1, + STATE(2766), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6010), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6012), 3, + ACTIONS(5089), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(689), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(999), 19, + STATE(1923), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65646,7 +66562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31455] = 35, + [31860] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65655,78 +66571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(2959), 1, + anon_sym_LPAREN, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(5025), 1, anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(6020), 1, + ACTIONS(5215), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6016), 2, + ACTIONS(6141), 2, sym__ws, sym_comment, - ACTIONS(6018), 3, + ACTIONS(5213), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(790), 3, + STATE(677), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2570), 19, + STATE(1922), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65746,7 +66662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31590] = 35, + [31995] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -65785,19 +66701,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5554), 1, + ACTIONS(6147), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -65811,22 +66727,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6022), 2, + ACTIONS(6143), 2, sym__ws, sym_comment, - ACTIONS(5552), 3, + ACTIONS(6145), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(445), 3, + STATE(599), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1779), 19, + STATE(1839), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65846,87 +66762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31725] = 35, + [32130] = 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(6026), 1, + ACTIONS(5377), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + 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(4738), 2, + ACTIONS(6149), 2, sym__ws, sym_comment, - ACTIONS(6024), 3, + ACTIONS(5375), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(651), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(656), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2905), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65946,7 +66862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31860] = 35, + [32265] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65955,78 +66871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(2959), 1, + anon_sym_LPAREN, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(5025), 1, anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(6032), 1, + ACTIONS(5869), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6028), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6030), 3, + ACTIONS(5867), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(797), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2590), 19, + STATE(1920), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66046,87 +66962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31995] = 35, + [32400] = 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(6036), 1, + ACTIONS(5371), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + 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(4738), 2, + ACTIONS(6151), 2, sym__ws, sym_comment, - ACTIONS(6034), 3, + ACTIONS(5369), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(653), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(651), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2906), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66146,87 +67062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32130] = 35, + [32535] = 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(5548), 1, + ACTIONS(5365), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + 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(4738), 2, + ACTIONS(6153), 2, sym__ws, sym_comment, - ACTIONS(5546), 3, + ACTIONS(5363), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(654), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1778), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2908), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66246,7 +67162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32265] = 35, + [32670] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66255,78 +67171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(6042), 1, + ACTIONS(5359), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, - sym__bare_set_lit, - STATE(2789), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6038), 2, + ACTIONS(6155), 2, sym__ws, sym_comment, - ACTIONS(6040), 3, + ACTIONS(5357), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(939), 3, + STATE(657), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2595), 19, + STATE(2910), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66346,7 +67262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32400] = 35, + [32805] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66355,78 +67271,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(6046), 1, + ACTIONS(6159), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, - sym__bare_set_lit, - STATE(2791), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(5438), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6044), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(6157), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1650), 3, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(2802), 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, + [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(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + 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(106), 1, + anon_sym_SQUOTE, + ACTIONS(108), 1, + anon_sym_BQUOTE, + ACTIONS(110), 1, + anon_sym_COMMA_AT, + ACTIONS(112), 1, + anon_sym_COMMA, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + sym_self_referential_reader_macro, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, + anon_sym_cl, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(98), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6161), 2, + sym__ws, + sym_comment, + ACTIONS(4793), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(930), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1727), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2493), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66446,7 +67462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32535] = 35, + [33075] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66455,78 +67471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(6050), 1, + ACTIONS(5349), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, - sym__bare_set_lit, - STATE(2791), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(5438), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6048), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5347), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1650), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1636), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2940), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66546,7 +67562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32670] = 35, + [33210] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66555,78 +67571,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4779), 1, + anon_sym_cl, + ACTIONS(5345), 1, + sym_self_referential_reader_macro, + STATE(2833), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2892), 1, + sym__metadata_lit, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + ACTIONS(4763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4781), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4785), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5343), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2941), 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, + [33345] = 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(4692), 1, + 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(4694), 1, + 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(6056), 1, + ACTIONS(6165), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6052), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6054), 3, + ACTIONS(6163), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(950), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2596), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(828), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66646,7 +67762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32805] = 35, + [33480] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66655,78 +67771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, + aux_sym_num_lit_token1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(6062), 1, + ACTIONS(5341), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, + STATE(2947), 1, sym__bare_set_lit, - STATE(3019), 1, + STATE(3017), 1, sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(4781), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6058), 2, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6060), 3, + ACTIONS(5339), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(593), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2898), 19, + STATE(2943), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66746,7 +67862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32940] = 35, + [33615] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66755,78 +67871,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, + aux_sym_num_lit_token1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(6068), 1, + ACTIONS(5337), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, + STATE(2947), 1, sym__bare_set_lit, - STATE(3019), 1, + STATE(3017), 1, sym_sym_lit, - ACTIONS(4856), 2, + ACTIONS(4763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4862), 2, + ACTIONS(4785), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5335), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2944), 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, + [33750] = 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(6171), 1, + sym_self_referential_reader_macro, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6064), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6167), 2, sym__ws, sym_comment, - ACTIONS(6066), 3, + ACTIONS(6169), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(599), 3, + STATE(668), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2896), 19, + STATE(973), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66846,7 +68062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33075] = 35, + [33885] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66855,78 +68071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(6074), 1, + ACTIONS(6175), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(5438), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6070), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6072), 3, + ACTIONS(6173), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(647), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1650), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1723), 19, + STATE(1919), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66946,7 +68162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33210] = 35, + [34020] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66955,78 +68171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(6080), 1, + ACTIONS(5333), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, - sym__bare_set_lit, - STATE(2791), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(5438), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6076), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6078), 3, + ACTIONS(5331), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(652), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1650), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1714), 19, + STATE(2949), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67046,7 +68262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33345] = 35, + [34155] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67055,78 +68271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(6084), 1, + ACTIONS(5329), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, - sym__bare_set_lit, - STATE(2791), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(5438), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6082), 3, + ACTIONS(6177), 2, + sym__ws, + sym_comment, + ACTIONS(5327), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1650), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(663), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1704), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2954), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67146,7 +68362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33480] = 35, + [34290] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -67185,19 +68401,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6090), 1, + ACTIONS(6183), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -67211,22 +68427,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6086), 2, + ACTIONS(6179), 2, sym__ws, sym_comment, - ACTIONS(6088), 3, + ACTIONS(6181), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(633), 3, + STATE(409), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(644), 19, + STATE(1816), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67246,7 +68462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33615] = 35, + [34425] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67255,78 +68471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(6094), 1, + ACTIONS(5323), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, - sym__bare_set_lit, - STATE(2791), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(5438), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6092), 3, + ACTIONS(6185), 2, + sym__ws, + sym_comment, + ACTIONS(5321), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1650), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(669), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1685), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2956), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67346,87 +68562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33750] = 35, + [34560] = 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(6100), 1, + ACTIONS(5317), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + 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(6096), 2, + ACTIONS(6187), 2, sym__ws, sym_comment, - ACTIONS(6098), 3, + ACTIONS(5315), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(635), 3, + STATE(671), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(643), 19, + STATE(2957), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67446,87 +68662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33885] = 35, + [34695] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(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(6104), 1, + ACTIONS(5311), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + 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(4738), 2, + ACTIONS(6189), 2, sym__ws, sym_comment, - ACTIONS(6102), 3, + ACTIONS(5309), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(674), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(595), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2958), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67546,87 +68762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34020] = 35, + [34830] = 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(6110), 1, + ACTIONS(5305), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + 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(6106), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6108), 3, + ACTIONS(5303), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(664), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(613), 19, + STATE(2964), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67646,7 +68862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34155] = 35, + [34965] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67655,78 +68871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(6116), 1, + ACTIONS(5301), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, - sym__bare_set_lit, - STATE(2791), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(5438), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6112), 2, + ACTIONS(6191), 2, sym__ws, sym_comment, - ACTIONS(6114), 3, + ACTIONS(5299), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(627), 3, + STATE(678), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1650), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1681), 19, + STATE(2965), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67746,87 +68962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34290] = 35, + [35100] = 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(5422), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6120), 1, + ACTIONS(6195), 1, sym_self_referential_reader_macro, - STATE(1649), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1651), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(5438), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6118), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(6193), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1650), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1680), 19, + STATE(1811), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67846,7 +69062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34425] = 35, + [35235] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67855,78 +69071,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(2945), 1, + anon_sym_POUND, + ACTIONS(2949), 1, + aux_sym_num_lit_token1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(6126), 1, + ACTIONS(6199), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(1966), 1, + sym__bare_set_lit, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4856), 2, + ACTIONS(2961), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4862), 2, + ACTIONS(2987), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(6197), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1918), 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, + [35370] = 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(2945), 1, + anon_sym_POUND, + ACTIONS(2949), 1, + aux_sym_num_lit_token1, + ACTIONS(2953), 1, + anon_sym_COLON_COLON, + ACTIONS(2955), 1, + anon_sym_DQUOTE, + ACTIONS(2957), 1, + aux_sym_sym_lit_token1, + ACTIONS(2959), 1, + anon_sym_LPAREN, + ACTIONS(2963), 1, + anon_sym_POUND_QMARK, + ACTIONS(2965), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(2967), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(2969), 1, + anon_sym_SQUOTE, + ACTIONS(2971), 1, + anon_sym_BQUOTE, + ACTIONS(2973), 1, + anon_sym_COMMA_AT, + ACTIONS(2975), 1, + anon_sym_COMMA, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, + anon_sym_cl, + ACTIONS(6205), 1, + sym_self_referential_reader_macro, + STATE(1966), 1, + sym__bare_set_lit, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(2983), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6122), 2, + ACTIONS(2989), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6201), 2, sym__ws, sym_comment, - ACTIONS(6124), 3, + ACTIONS(6203), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(601), 3, + STATE(679), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2895), 19, + STATE(1917), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67946,7 +69262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34560] = 35, + [35505] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -67985,19 +69301,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5534), 1, + ACTIONS(6209), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -68011,22 +69327,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5532), 3, + ACTIONS(6207), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1776), 19, + STATE(454), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68046,7 +69362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34695] = 35, + [35640] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68055,78 +69371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(6132), 1, + ACTIONS(5295), 1, sym_self_referential_reader_macro, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2795), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2356), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4716), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(4781), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6128), 2, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6130), 3, + ACTIONS(5293), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(876), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1946), 19, + STATE(2967), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68146,87 +69462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34830] = 35, + [35775] = 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(5422), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6138), 1, + ACTIONS(6215), 1, sym_self_referential_reader_macro, - STATE(1649), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1651), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(5438), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6134), 2, + ACTIONS(6211), 2, sym__ws, sym_comment, - ACTIONS(6136), 3, + ACTIONS(6213), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(659), 3, + STATE(684), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1650), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1679), 19, + STATE(779), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68246,87 +69562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34965] = 35, + [35910] = 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(4774), 1, + ACTIONS(5291), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + 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(6140), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4758), 3, + ACTIONS(5289), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(501), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1809), 19, + STATE(2968), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68346,7 +69662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35100] = 35, + [36045] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -68385,19 +69701,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6146), 1, + ACTIONS(6221), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -68411,22 +69727,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6142), 2, + ACTIONS(6217), 2, sym__ws, sym_comment, - ACTIONS(6144), 3, + ACTIONS(6219), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(649), 3, + STATE(685), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(576), 19, + STATE(844), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68446,7 +69762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35235] = 35, + [36180] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68455,78 +69771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(6150), 1, + ACTIONS(6227), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(5438), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6148), 3, + ACTIONS(6223), 2, + sym__ws, + sym_comment, + ACTIONS(6225), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1650), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(687), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1633), 19, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1916), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68546,7 +69862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35370] = 35, + [36315] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68555,78 +69871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, + aux_sym_num_lit_token1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(5756), 1, + ACTIONS(4779), 1, + anon_sym_cl, + ACTIONS(5287), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, + STATE(2947), 1, sym__bare_set_lit, - STATE(3066), 1, + STATE(3017), 1, sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(4781), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6152), 2, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5754), 3, + ACTIONS(5285), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(572), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2964), 19, + STATE(2969), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68646,7 +69962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35505] = 35, + [36450] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68655,78 +69971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(825), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(843), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(6156), 1, + ACTIONS(5283), 1, sym_self_referential_reader_macro, - STATE(1129), 1, - sym_sym_lit, - STATE(1150), 1, - sym__bare_set_lit, - STATE(2796), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6229), 2, sym__ws, sym_comment, - ACTIONS(6154), 3, + ACTIONS(5281), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1135), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(680), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1245), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2970), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68746,7 +70062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35640] = 35, + [36585] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68755,78 +70071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, - anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(6160), 1, + ACTIONS(5277), 1, sym_self_referential_reader_macro, - STATE(1027), 1, - sym__bare_set_lit, - STATE(1062), 1, - sym_sym_lit, - STATE(2775), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6231), 2, sym__ws, sym_comment, - ACTIONS(6158), 3, + ACTIONS(5275), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(683), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(991), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2972), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68846,7 +70162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35775] = 35, + [36720] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68855,78 +70171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5422), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(5432), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(5436), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(5440), 1, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(5442), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(5452), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(5454), 1, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(6166), 1, + ACTIONS(6235), 1, sym_self_referential_reader_macro, - STATE(1649), 1, - sym_sym_lit, - STATE(1651), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2791), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(5438), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6162), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6164), 3, + ACTIONS(6233), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(524), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1650), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1652), 19, + STATE(1915), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68946,87 +70262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35910] = 35, + [36855] = 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(6170), 1, + ACTIONS(5265), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + 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(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6168), 3, + ACTIONS(5263), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(630), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2973), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69046,87 +70362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36045] = 35, + [36990] = 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(2945), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(6176), 1, + ACTIONS(6239), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(2766), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6172), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6174), 3, + ACTIONS(6237), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(718), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(678), 19, + STATE(1913), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69146,7 +70462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36180] = 35, + [37125] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69155,78 +70471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, + aux_sym_num_lit_token1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(6182), 1, + ACTIONS(4779), 1, + anon_sym_cl, + ACTIONS(5261), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, + STATE(2947), 1, sym__bare_set_lit, - STATE(3066), 1, + STATE(3017), 1, sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(4781), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6178), 2, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6180), 3, + ACTIONS(5259), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(878), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2730), 19, + STATE(2975), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69246,7 +70562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36315] = 35, + [37260] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69255,178 +70571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, - anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(6186), 1, + ACTIONS(5251), 1, sym_self_referential_reader_macro, - STATE(1027), 1, - sym__bare_set_lit, - STATE(1062), 1, - sym_sym_lit, - STATE(2775), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(6184), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(993), 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, - [36450] = 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(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, - anon_sym_COLON_COLON, - ACTIONS(4834), 1, - anon_sym_DQUOTE, - ACTIONS(4836), 1, - aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, - anon_sym_LPAREN, - ACTIONS(5656), 1, - anon_sym_POUND_QMARK, - ACTIONS(5658), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, - anon_sym_SQUOTE, - ACTIONS(5664), 1, - anon_sym_BQUOTE, - ACTIONS(5666), 1, - anon_sym_COMMA_AT, - ACTIONS(5668), 1, - anon_sym_COMMA, - ACTIONS(6192), 1, - sym_self_referential_reader_macro, - STATE(2798), 1, - aux_sym_list_lit_repeat1, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5198), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5670), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6188), 2, + ACTIONS(6241), 2, sym__ws, sym_comment, - ACTIONS(6190), 3, + ACTIONS(5249), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(817), 3, + STATE(689), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2882), 19, + STATE(2976), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69446,7 +70662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36585] = 35, + [37395] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69455,78 +70671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(2945), 1, + anon_sym_POUND, + ACTIONS(2949), 1, + aux_sym_num_lit_token1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(6198), 1, + ACTIONS(6247), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(1966), 1, + sym__bare_set_lit, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(2983), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6194), 2, + ACTIONS(2989), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6243), 2, sym__ws, sym_comment, - ACTIONS(6196), 3, + ACTIONS(6245), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(606), 3, + STATE(567), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2890), 19, + STATE(1912), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69546,7 +70762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36720] = 35, + [37530] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69555,78 +70771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, + aux_sym_num_lit_token1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(5844), 1, + ACTIONS(4779), 1, + anon_sym_cl, + ACTIONS(5245), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, + STATE(2947), 1, sym__bare_set_lit, - STATE(3066), 1, + STATE(3017), 1, sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(4781), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6200), 2, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5842), 3, + ACTIONS(5243), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(615), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2965), 19, + STATE(2979), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69646,7 +70862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36855] = 35, + [37665] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -69685,19 +70901,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6206), 1, + ACTIONS(6251), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -69711,22 +70927,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6202), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6204), 3, + ACTIONS(6249), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(719), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(683), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(956), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69746,87 +70962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36990] = 35, + [37800] = 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(4830), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6212), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6255), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6208), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6210), 3, + ACTIONS(6253), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(827), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2880), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(952), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69846,7 +71062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37125] = 35, + [37935] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69855,78 +71071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, + aux_sym_num_lit_token1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(6218), 1, + ACTIONS(4779), 1, + anon_sym_cl, + ACTIONS(5237), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, + STATE(2947), 1, sym__bare_set_lit, - STATE(3066), 1, + STATE(3017), 1, sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(4781), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6214), 2, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6257), 2, sym__ws, sym_comment, - ACTIONS(6216), 3, + ACTIONS(5235), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(843), 3, + STATE(693), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2879), 19, + STATE(2980), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69946,7 +71162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37260] = 35, + [38070] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69955,78 +71171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(2945), 1, + anon_sym_POUND, + ACTIONS(2949), 1, + aux_sym_num_lit_token1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(6224), 1, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, + anon_sym_cl, + ACTIONS(6261), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(1966), 1, + sym__bare_set_lit, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(2983), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6220), 2, + ACTIONS(2989), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6222), 3, + ACTIONS(6259), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(849), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2922), 19, + STATE(1911), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70046,7 +71262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37395] = 35, + [38205] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70055,78 +71271,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(2959), 1, + anon_sym_LPAREN, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(5586), 1, + ACTIONS(5025), 1, anon_sym_COLON, - ACTIONS(5588), 1, - anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(6228), 1, + ACTIONS(6267), 1, sym_self_referential_reader_macro, - STATE(1027), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(1062), 1, + STATE(2766), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6263), 2, sym__ws, sym_comment, - ACTIONS(6226), 3, + ACTIONS(6265), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, + STATE(694), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1910), 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, + [38340] = 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(5231), 1, + sym_self_referential_reader_macro, + STATE(2833), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2892), 1, + sym__metadata_lit, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + ACTIONS(4763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4781), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4785), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5229), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(994), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2984), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70146,7 +71462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37530] = 35, + [38475] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70155,78 +71471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4969), 1, + anon_sym_COLON, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4977), 1, + anon_sym_LPAREN, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6232), 1, + ACTIONS(6273), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1490), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1497), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6269), 2, sym__ws, sym_comment, - ACTIONS(6230), 3, + ACTIONS(6271), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2028), 19, + STATE(1524), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70246,7 +71562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37665] = 35, + [38610] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70255,78 +71571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, + ACTIONS(4751), 1, + aux_sym_num_lit_token1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, + ACTIONS(5799), 1, anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(6238), 1, + ACTIONS(6277), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, + STATE(2947), 1, sym__bare_set_lit, - STATE(3066), 1, + STATE(3088), 1, sym_sym_lit, - ACTIONS(4856), 2, + ACTIONS(4763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4862), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5198), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5670), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6234), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6236), 3, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6275), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(857), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2932), 19, + STATE(2765), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70346,7 +71662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37800] = 35, + [38745] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70355,78 +71671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6244), 1, + ACTIONS(5587), 1, sym_self_referential_reader_macro, - STATE(1027), 1, - sym__bare_set_lit, - STATE(1062), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6240), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6242), 3, + ACTIONS(5585), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(711), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(995), 19, + STATE(2635), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70446,7 +71762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37935] = 35, + [38880] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70455,78 +71771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(6248), 1, + ACTIONS(5175), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, - sym__bare_set_lit, - STATE(2789), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3017), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6246), 3, + ACTIONS(5173), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2706), 19, + STATE(2987), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70546,87 +71862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38070] = 35, + [39015] = 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(2945), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(6252), 1, + ACTIONS(6281), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(2766), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6250), 3, + ACTIONS(6279), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(788), 19, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1905), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70646,7 +71962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38205] = 35, + [39150] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70655,78 +71971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(5127), 1, + anon_sym_COLON, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(5135), 1, + anon_sym_LPAREN, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6256), 1, + ACTIONS(6287), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1672), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1674), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6283), 2, sym__ws, sym_comment, - ACTIONS(6254), 3, + ACTIONS(6285), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(710), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2695), 19, + STATE(1689), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70746,7 +72062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38340] = 35, + [39285] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70755,78 +72071,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, + ACTIONS(4963), 1, + anon_sym_POUND, + ACTIONS(4967), 1, + aux_sym_num_lit_token1, + ACTIONS(4969), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(5848), 1, + ACTIONS(4995), 1, + anon_sym_cl, + ACTIONS(6293), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(1490), 1, + sym_sym_lit, + STATE(1497), 1, + sym__bare_set_lit, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, + ACTIONS(4979), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4862), 2, + ACTIONS(5001), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(6289), 2, + sym__ws, + sym_comment, + ACTIONS(6291), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(723), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1496), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1505), 19, + sym__form, + sym_num_lit, + sym_kwd_lit, + sym_str_lit, + sym_char_lit, + sym_list_lit, + sym_vec_lit, + sym_set_lit, + sym_read_cond_lit, + sym_splicing_read_cond_lit, + sym_var_quoting_lit, + sym_quoting_lit, + sym_syn_quoting_lit, + sym_unquote_splicing_lit, + sym_unquoting_lit, + sym_path_lit, + sym_package_lit, + sym_include_reader_macro, + sym_complex_num_lit, + [39420] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(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(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(106), 1, + anon_sym_SQUOTE, + ACTIONS(108), 1, + anon_sym_BQUOTE, + ACTIONS(110), 1, + anon_sym_COMMA_AT, + ACTIONS(112), 1, + anon_sym_COMMA, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, + anon_sym_cl, + ACTIONS(5563), 1, + sym_self_referential_reader_macro, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5846), 3, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5561), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2947), 19, + STATE(2632), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70846,7 +72262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38475] = 35, + [39555] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70855,78 +72271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(4969), 1, + anon_sym_COLON, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(4977), 1, + anon_sym_LPAREN, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, - anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6262), 1, + ACTIONS(6299), 1, sym_self_referential_reader_macro, - STATE(1027), 1, - sym__bare_set_lit, - STATE(1062), 1, + STATE(1490), 1, sym_sym_lit, - STATE(2775), 1, + STATE(1497), 1, + sym__bare_set_lit, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6258), 2, + ACTIONS(6295), 2, sym__ws, sym_comment, - ACTIONS(6260), 3, + ACTIONS(6297), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(715), 3, + STATE(724), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1003), 19, + STATE(1506), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70946,7 +72362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38610] = 35, + [39690] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70955,78 +72371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, + ACTIONS(4963), 1, + anon_sym_POUND, + ACTIONS(4967), 1, + aux_sym_num_lit_token1, + ACTIONS(4969), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6266), 1, + ACTIONS(6305), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(1490), 1, + sym_sym_lit, + STATE(1497), 1, + sym__bare_set_lit, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(4997), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6264), 3, + ACTIONS(5003), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6301), 2, + sym__ws, + sym_comment, + ACTIONS(6303), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(734), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2887), 19, + STATE(1507), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71046,87 +72462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38745] = 35, + [39825] = 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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6270), 1, + ACTIONS(6311), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(4738), 2, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6307), 2, sym__ws, sym_comment, - ACTIONS(6268), 3, + ACTIONS(6309), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(449), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(793), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2611), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71146,87 +72562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38880] = 35, + [39960] = 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(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(33), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(6274), 1, + ACTIONS(6175), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6272), 3, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6173), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(491), 19, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1919), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71246,87 +72662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39015] = 35, + [40095] = 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(5121), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(5127), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6278), 1, + ACTIONS(6317), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1672), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1674), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6313), 2, sym__ws, sym_comment, - ACTIONS(6276), 3, + ACTIONS(6315), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(712), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(497), 19, + STATE(1673), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1691), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71346,7 +72762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39150] = 35, + [40230] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71355,78 +72771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(5127), 1, + anon_sym_COLON, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(5135), 1, + anon_sym_LPAREN, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6282), 1, + ACTIONS(6323), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1672), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1674), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6319), 2, sym__ws, sym_comment, - ACTIONS(6280), 3, + ACTIONS(6321), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(718), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2692), 19, + STATE(1693), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71446,7 +72862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39285] = 35, + [40365] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71455,78 +72871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6286), 1, + ACTIONS(6329), 1, sym_self_referential_reader_macro, - STATE(1027), 1, - sym__bare_set_lit, - STATE(1062), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6325), 2, sym__ws, sym_comment, - ACTIONS(6284), 3, + ACTIONS(6327), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(431), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1023), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2047), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71546,87 +72962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39420] = 35, + [40500] = 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(223), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 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(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6290), 1, + ACTIONS(6335), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6331), 2, sym__ws, sym_comment, - ACTIONS(6288), 3, + ACTIONS(6333), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(725), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2684), 19, + STATE(806), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71646,7 +73062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39555] = 35, + [40635] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71655,78 +73071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(5127), 1, + anon_sym_COLON, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(5135), 1, + anon_sym_LPAREN, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6294), 1, + ACTIONS(6341), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1672), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1674), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6337), 2, sym__ws, sym_comment, - ACTIONS(6292), 3, + ACTIONS(6339), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(722), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2587), 19, + STATE(1625), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71746,7 +73162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39690] = 35, + [40770] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71755,78 +73171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(825), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(5127), 1, + anon_sym_COLON, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 1, + ACTIONS(5135), 1, + anon_sym_LPAREN, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(843), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6298), 1, + ACTIONS(6347), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(1672), 1, sym_sym_lit, - STATE(1150), 1, + STATE(1674), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6343), 2, sym__ws, sym_comment, - ACTIONS(6296), 3, + ACTIONS(6345), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1135), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(727), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(985), 19, + STATE(1673), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1697), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71846,7 +73262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39825] = 35, + [40905] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71855,78 +73271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(825), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(843), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6302), 1, + ACTIONS(6353), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(2492), 1, sym_sym_lit, - STATE(1150), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6349), 2, sym__ws, sym_comment, - ACTIONS(6300), 3, + ACTIONS(6351), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1135), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(518), 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(2729), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71946,7 +73362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39960] = 35, + [41040] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71955,178 +73371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(825), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(5127), 1, + anon_sym_COLON, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 1, + ACTIONS(5135), 1, + anon_sym_LPAREN, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(843), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6308), 1, + ACTIONS(6357), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(1672), 1, sym_sym_lit, - STATE(1150), 1, + STATE(1674), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6304), 2, - sym__ws, - sym_comment, - ACTIONS(6306), 3, + ACTIONS(6355), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(629), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1135), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1219), 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, - [40095] = 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(6314), 1, - sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, - aux_sym_list_lit_repeat1, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2867), 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(6310), 2, - sym__ws, - sym_comment, - ACTIONS(6312), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(680), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(799), 19, + STATE(1707), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72146,7 +73462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40230] = 35, + [41175] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72155,78 +73471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(5127), 1, + anon_sym_COLON, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(5135), 1, + anon_sym_LPAREN, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, - anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6318), 1, + ACTIONS(6361), 1, sym_self_referential_reader_macro, - STATE(1027), 1, - sym__bare_set_lit, - STATE(1062), 1, + STATE(1672), 1, sym_sym_lit, - STATE(2775), 1, + STATE(1674), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(6316), 3, + ACTIONS(6359), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(22), 19, + STATE(1719), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72246,7 +73562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40365] = 35, + [41310] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72255,78 +73571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(4969), 1, + anon_sym_COLON, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(4977), 1, + anon_sym_LPAREN, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6322), 1, + ACTIONS(6367), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(1490), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1497), 1, + sym__bare_set_lit, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6363), 2, sym__ws, sym_comment, - ACTIONS(6320), 3, + ACTIONS(6365), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1320), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(735), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(254), 19, + STATE(1496), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1508), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72346,7 +73662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40500] = 35, + [41445] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72355,78 +73671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, + ACTIONS(5121), 1, + anon_sym_POUND, + ACTIONS(5125), 1, + aux_sym_num_lit_token1, + ACTIONS(5127), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6326), 1, + ACTIONS(6371), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(1672), 1, + sym_sym_lit, + STATE(1674), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(5155), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6324), 3, + ACTIONS(5161), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6369), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2885), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1720), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72446,7 +73762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40635] = 35, + [41580] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72455,78 +73771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, - anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5880), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, + anon_sym_cl, + ACTIONS(6377), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5878), 3, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6373), 2, + sym__ws, + sym_comment, + ACTIONS(6375), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(520), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2966), 19, + STATE(2730), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72546,7 +73862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40770] = 35, + [41715] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72555,78 +73871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6332), 1, + ACTIONS(6383), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6328), 2, + ACTIONS(6379), 2, sym__ws, sym_comment, - ACTIONS(6330), 3, + ACTIONS(6381), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(567), 3, + STATE(522), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2668), 19, + STATE(2735), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72646,7 +73962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40905] = 35, + [41850] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72655,78 +73971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6338), 1, + ACTIONS(6389), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6334), 2, + ACTIONS(6385), 2, sym__ws, sym_comment, - ACTIONS(6336), 3, + ACTIONS(6387), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(568), 3, + STATE(528), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2667), 19, + STATE(2736), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72746,7 +74062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41040] = 35, + [41985] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72755,78 +74071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4969), 1, + anon_sym_COLON, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4977), 1, + anon_sym_LPAREN, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6344), 1, + ACTIONS(6395), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1490), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1497), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6340), 2, + ACTIONS(6391), 2, sym__ws, sym_comment, - ACTIONS(6342), 3, + ACTIONS(6393), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(570), 3, + STATE(738), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2665), 19, + STATE(1509), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72846,7 +74162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41175] = 35, + [42120] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72855,78 +74171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(4842), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5278), 1, + ACTIONS(5547), 1, sym_self_referential_reader_macro, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, + sym__bare_set_lit, STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4838), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5276), 3, + ACTIONS(6397), 2, + sym__ws, + sym_comment, + ACTIONS(5545), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(692), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2133), 19, + STATE(2602), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72946,7 +74262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41310] = 35, + [42255] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72955,178 +74271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(5127), 1, + anon_sym_COLON, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(5135), 1, + anon_sym_LPAREN, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6348), 1, + ACTIONS(6401), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1672), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1674), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(6346), 3, + ACTIONS(6399), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2549), 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, - [41445] = 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(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(4710), 1, - anon_sym_DQUOTE, - ACTIONS(4712), 1, - aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, - anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, - anon_sym_SQUOTE, - ACTIONS(5206), 1, - anon_sym_BQUOTE, - ACTIONS(5208), 1, - anon_sym_COMMA_AT, - ACTIONS(5210), 1, - anon_sym_COMMA, - ACTIONS(5212), 1, - anon_sym_cl, - ACTIONS(6352), 1, - sym_self_referential_reader_macro, - STATE(2785), 1, - aux_sym_list_lit_repeat1, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5216), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6350), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2878), 19, + STATE(1721), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73146,7 +74362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41580] = 35, + [42390] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73155,78 +74371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4877), 1, anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(6358), 1, + ACTIONS(6407), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(1072), 1, + sym_sym_lit, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6354), 2, + ACTIONS(6403), 2, sym__ws, sym_comment, - ACTIONS(6356), 3, + ACTIONS(6405), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(573), 3, + STATE(534), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2663), 19, + STATE(19), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73246,87 +74462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41715] = 35, + [42525] = 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(2675), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(2688), 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(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(6364), 1, + ACTIONS(6413), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(1486), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6360), 2, + ACTIONS(6409), 2, sym__ws, sym_comment, - ACTIONS(6362), 3, + ACTIONS(6411), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(686), 3, + STATE(536), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(575), 19, + STATE(226), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73346,7 +74562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41850] = 35, + [42660] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73355,78 +74571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6370), 1, + ACTIONS(5515), 1, sym_self_referential_reader_macro, - STATE(1027), 1, - sym__bare_set_lit, - STATE(1062), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6366), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6368), 3, + ACTIONS(5513), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(577), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(24), 19, + STATE(2599), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73446,187 +74662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41985] = 35, + [42795] = 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(6376), 1, - sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, - aux_sym_list_lit_repeat1, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2867), 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(6372), 2, - sym__ws, - sym_comment, - ACTIONS(6374), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(687), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(592), 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, - [42120] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(5127), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6380), 1, + ACTIONS(6417), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1672), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1674), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(6378), 3, + ACTIONS(6415), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(605), 19, + STATE(1722), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73646,7 +74762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42255] = 35, + [42930] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73655,78 +74771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(4969), 1, + anon_sym_COLON, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(4977), 1, + anon_sym_LPAREN, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, - anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6384), 1, + ACTIONS(6421), 1, sym_self_referential_reader_macro, - STATE(1027), 1, - sym__bare_set_lit, - STATE(1062), 1, + STATE(1490), 1, sym_sym_lit, - STATE(2775), 1, + STATE(1497), 1, + sym__bare_set_lit, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(6382), 3, + ACTIONS(6419), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1025), 19, + STATE(1522), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73746,7 +74862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42390] = 35, + [43065] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73755,78 +74871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(4969), 1, + anon_sym_COLON, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(4977), 1, + anon_sym_LPAREN, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, - anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6390), 1, + ACTIONS(6425), 1, sym_self_referential_reader_macro, - STATE(1027), 1, - sym__bare_set_lit, - STATE(1062), 1, + STATE(1490), 1, sym_sym_lit, - STATE(2775), 1, + STATE(1497), 1, + sym__bare_set_lit, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6386), 2, - sym__ws, - sym_comment, - ACTIONS(6388), 3, + ACTIONS(6423), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(736), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1028), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1523), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73846,9 +74962,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42525] = 35, + [43200] = 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, @@ -73867,66 +74987,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(4756), 1, - anon_sym_POUND, - ACTIONS(4760), 1, - aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(5508), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6429), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2806), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4762), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4776), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5506), 3, + ACTIONS(6427), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1844), 19, + STATE(770), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73946,7 +75062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42660] = 35, + [43335] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -73985,19 +75101,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5328), 1, + ACTIONS(6435), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -74011,22 +75127,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6431), 2, sym__ws, sym_comment, - ACTIONS(5326), 3, + ACTIONS(6433), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(744), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1823), 19, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(756), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74046,7 +75162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42795] = 35, + [43470] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74055,78 +75171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(5127), 1, + anon_sym_COLON, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(5135), 1, + anon_sym_LPAREN, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, - anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6394), 1, + ACTIONS(6439), 1, sym_self_referential_reader_macro, - STATE(1027), 1, - sym__bare_set_lit, - STATE(1062), 1, + STATE(1672), 1, sym_sym_lit, - STATE(2775), 1, + STATE(1674), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(6392), 3, + ACTIONS(6437), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1029), 19, + STATE(1723), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74146,7 +75262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42930] = 35, + [43605] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74155,78 +75271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6400), 1, + ACTIONS(5181), 1, sym_self_referential_reader_macro, - STATE(1027), 1, - sym__bare_set_lit, - STATE(1062), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6396), 2, + ACTIONS(6441), 2, sym__ws, sym_comment, - ACTIONS(6398), 3, + ACTIONS(5179), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(776), 3, + STATE(697), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1031), 19, + STATE(2597), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74246,7 +75362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43065] = 35, + [43740] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74255,78 +75371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6404), 1, + ACTIONS(5171), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6402), 3, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5169), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2877), 19, + STATE(2596), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74346,87 +75462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43200] = 35, + [43875] = 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(5121), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(5127), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6408), 1, + ACTIONS(6447), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1672), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1674), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6443), 2, sym__ws, sym_comment, - ACTIONS(6406), 3, + ACTIONS(6445), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(737), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(712), 19, + STATE(1673), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1725), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74446,7 +75562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43335] = 35, + [44010] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -74485,19 +75601,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6412), 1, + ACTIONS(6453), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -74511,22 +75627,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6449), 2, sym__ws, sym_comment, - ACTIONS(6410), 3, + ACTIONS(6451), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(745), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(716), 19, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(754), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74546,87 +75662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43470] = 35, + [44145] = 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(5121), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(5127), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6418), 1, + ACTIONS(6459), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1672), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1674), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6414), 2, + ACTIONS(6455), 2, sym__ws, sym_comment, - ACTIONS(6416), 3, + ACTIONS(6457), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(710), 3, + STATE(742), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(669), 19, + STATE(1730), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74646,7 +75762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43605] = 35, + [44280] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74655,78 +75771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, + ACTIONS(5127), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6424), 1, + ACTIONS(6465), 1, sym_self_referential_reader_macro, - STATE(1927), 1, + STATE(1672), 1, + sym_sym_lit, + STATE(1674), 1, sym__bare_set_lit, - STATE(2795), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2356), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(5155), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6420), 2, + ACTIONS(5161), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6461), 2, sym__ws, sym_comment, - ACTIONS(6422), 3, + ACTIONS(6463), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(846), 3, + STATE(747), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1950), 19, + STATE(1732), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74746,87 +75862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43740] = 35, + [44415] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4969), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(5310), 1, + ACTIONS(6469), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1490), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1497), 1, + sym__bare_set_lit, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(5308), 3, + ACTIONS(6467), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1822), 19, + STATE(1525), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74846,7 +75962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43875] = 35, + [44550] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74855,78 +75971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(825), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(4969), 1, + anon_sym_COLON, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 1, + ACTIONS(4977), 1, + anon_sym_LPAREN, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(843), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6430), 1, + ACTIONS(6473), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(1490), 1, sym_sym_lit, - STATE(1150), 1, + STATE(1497), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6426), 2, - sym__ws, - sym_comment, - ACTIONS(6428), 3, + ACTIONS(6471), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(953), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1135), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1242), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1533), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74946,7 +76062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44010] = 35, + [44685] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74955,78 +76071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(825), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(5127), 1, + anon_sym_COLON, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 1, + ACTIONS(5135), 1, + anon_sym_LPAREN, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(843), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6436), 1, + ACTIONS(6479), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(1672), 1, sym_sym_lit, - STATE(1150), 1, + STATE(1674), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6432), 2, + ACTIONS(6475), 2, sym__ws, sym_comment, - ACTIONS(6434), 3, + ACTIONS(6477), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(949), 3, + STATE(749), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1135), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1238), 19, + STATE(1734), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75046,7 +76162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44145] = 35, + [44820] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75055,78 +76171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(5127), 1, + anon_sym_COLON, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(5135), 1, + anon_sym_LPAREN, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6442), 1, + ACTIONS(6483), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1672), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1674), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6438), 2, - sym__ws, - sym_comment, - ACTIONS(6440), 3, + ACTIONS(6481), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(691), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2603), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1744), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75146,7 +76262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44280] = 35, + [44955] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75155,78 +76271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, + ACTIONS(4963), 1, + anon_sym_POUND, + ACTIONS(4967), 1, + aux_sym_num_lit_token1, + ACTIONS(4969), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(5626), 1, + ACTIONS(6487), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(1490), 1, + sym_sym_lit, + STATE(1497), 1, + sym__bare_set_lit, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(4997), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6444), 2, - sym__ws, - sym_comment, - ACTIONS(5624), 3, + ACTIONS(5003), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6485), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(795), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2780), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1534), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75246,7 +76362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44415] = 35, + [45090] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75255,178 +76371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(5127), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6448), 1, + ACTIONS(6493), 1, sym_self_referential_reader_macro, - STATE(1469), 1, + STATE(1672), 1, sym_sym_lit, - STATE(1490), 1, + STATE(1674), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4896), 2, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6446), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1489), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1584), 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, - [44550] = 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(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, - anon_sym_COLON_COLON, - ACTIONS(4834), 1, - anon_sym_DQUOTE, - ACTIONS(4836), 1, - aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, - anon_sym_LPAREN, - ACTIONS(5656), 1, - anon_sym_POUND_QMARK, - ACTIONS(5658), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, - anon_sym_SQUOTE, - ACTIONS(5664), 1, - anon_sym_BQUOTE, - ACTIONS(5666), 1, - anon_sym_COMMA_AT, - ACTIONS(5668), 1, - anon_sym_COMMA, - ACTIONS(5888), 1, - sym_self_referential_reader_macro, - STATE(2798), 1, - aux_sym_list_lit_repeat1, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, + ACTIONS(6489), 2, sym__ws, sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5670), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(5886), 3, + ACTIONS(6491), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(760), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2875), 19, + STATE(1745), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75446,7 +76462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44685] = 35, + [45225] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75455,78 +76471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, - anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, - anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6452), 1, + ACTIONS(5039), 1, sym_self_referential_reader_macro, - STATE(1469), 1, + STATE(2492), 1, sym_sym_lit, - STATE(1490), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4896), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6450), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5037), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1489), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1583), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2592), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75546,7 +76562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44820] = 35, + [45360] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75555,78 +76571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(4969), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6458), 1, + ACTIONS(6499), 1, sym_self_referential_reader_macro, - STATE(1469), 1, - sym_sym_lit, STATE(1490), 1, + sym_sym_lit, + STATE(1497), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4896), 2, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6454), 2, + ACTIONS(6495), 2, sym__ws, sym_comment, - ACTIONS(6456), 3, + ACTIONS(6497), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(727), 3, + STATE(751), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1489), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1560), 19, + STATE(1537), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75646,7 +76662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44955] = 35, + [45495] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75655,78 +76671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(5127), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6462), 1, + ACTIONS(6503), 1, sym_self_referential_reader_macro, - STATE(1469), 1, + STATE(1672), 1, sym_sym_lit, - STATE(1490), 1, + STATE(1674), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4896), 2, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6460), 3, + ACTIONS(6501), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1489), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1558), 19, + STATE(1660), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75746,7 +76762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45090] = 35, + [45630] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75755,78 +76771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2650), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(4969), 1, + anon_sym_COLON, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(4977), 1, + anon_sym_LPAREN, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6468), 1, + ACTIONS(6509), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(1490), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1497), 1, + sym__bare_set_lit, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6464), 2, + ACTIONS(6505), 2, sym__ws, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6507), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(446), 3, + STATE(765), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1320), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1318), 19, + STATE(1540), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75846,187 +76862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45225] = 35, + [45765] = 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(4880), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, - anon_sym_LPAREN, - ACTIONS(4898), 1, - anon_sym_POUND_QMARK, - ACTIONS(4900), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, - anon_sym_SQUOTE, - ACTIONS(4906), 1, - anon_sym_BQUOTE, - ACTIONS(4908), 1, - anon_sym_COMMA_AT, - ACTIONS(4910), 1, - anon_sym_COMMA, - ACTIONS(4912), 1, - anon_sym_cl, - ACTIONS(6474), 1, - sym_self_referential_reader_macro, - STATE(1469), 1, - sym_sym_lit, - STATE(1490), 1, - sym__bare_set_lit, - STATE(2792), 1, - aux_sym_list_lit_repeat1, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - ACTIONS(4896), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4914), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4918), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4920), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6470), 2, - sym__ws, - sym_comment, - ACTIONS(6472), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(729), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1489), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1524), 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, - [45360] = 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(4880), 1, - anon_sym_POUND, - ACTIONS(4884), 1, - aux_sym_num_lit_token1, - ACTIONS(4886), 1, - anon_sym_COLON, - ACTIONS(4888), 1, - anon_sym_COLON_COLON, - ACTIONS(4890), 1, - anon_sym_DQUOTE, - ACTIONS(4892), 1, - aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6478), 1, + ACTIONS(6513), 1, sym_self_referential_reader_macro, - STATE(1469), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1490), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4896), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6476), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(6511), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1489), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1555), 19, + STATE(728), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76046,7 +76962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45495] = 35, + [45900] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -76085,19 +77001,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6482), 1, + ACTIONS(6517), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -76111,22 +77027,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6480), 3, + ACTIONS(6515), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(893), 19, + STATE(717), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76146,7 +77062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45630] = 35, + [46035] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76155,78 +77071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6486), 1, + ACTIONS(6523), 1, sym_self_referential_reader_macro, - STATE(1027), 1, - sym__bare_set_lit, - STATE(1062), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6519), 2, sym__ws, sym_comment, - ACTIONS(6484), 3, + ACTIONS(6521), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(459), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1044), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2695), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76246,7 +77162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45765] = 35, + [46170] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76255,78 +77171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(5127), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6490), 1, + ACTIONS(6527), 1, sym_self_referential_reader_macro, - STATE(1469), 1, + STATE(1672), 1, sym_sym_lit, - STATE(1490), 1, + STATE(1674), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4896), 2, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6488), 3, + ACTIONS(6525), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1489), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1553), 19, + STATE(1646), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76346,7 +77262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45900] = 35, + [46305] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76355,78 +77271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(4969), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6496), 1, + ACTIONS(6533), 1, sym_self_referential_reader_macro, - STATE(1469), 1, - sym_sym_lit, STATE(1490), 1, + sym_sym_lit, + STATE(1497), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4896), 2, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6492), 2, + ACTIONS(6529), 2, sym__ws, sym_comment, - ACTIONS(6494), 3, + ACTIONS(6531), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(731), 3, + STATE(769), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1489), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1548), 19, + STATE(1541), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76446,7 +77362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46035] = 35, + [46440] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76455,78 +77371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, + ACTIONS(5127), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6502), 1, + ACTIONS(6537), 1, sym_self_referential_reader_macro, - STATE(1927), 1, + STATE(1672), 1, + sym_sym_lit, + STATE(1674), 1, sym__bare_set_lit, - STATE(2795), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2356), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(5155), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6498), 2, - sym__ws, - sym_comment, - ACTIONS(6500), 3, + ACTIONS(5161), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6535), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(472), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1894), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1645), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76546,7 +77462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46170] = 35, + [46575] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76555,78 +77471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(4969), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6508), 1, + ACTIONS(6543), 1, sym_self_referential_reader_macro, - STATE(1469), 1, - sym_sym_lit, STATE(1490), 1, + sym_sym_lit, + STATE(1497), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4896), 2, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6504), 2, + ACTIONS(6539), 2, sym__ws, sym_comment, - ACTIONS(6506), 3, + ACTIONS(6541), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(734), 3, + STATE(799), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1489), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1557), 19, + STATE(1542), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76646,7 +77562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46305] = 35, + [46710] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76655,78 +77571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(4969), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6512), 1, + ACTIONS(6547), 1, sym_self_referential_reader_macro, - STATE(1469), 1, - sym_sym_lit, STATE(1490), 1, + sym_sym_lit, + STATE(1497), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4896), 2, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6510), 3, + ACTIONS(6545), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1489), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1546), 19, + STATE(1548), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76746,87 +77662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46440] = 35, + [46845] = 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(5121), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(5127), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6518), 1, + ACTIONS(6553), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1672), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1674), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6514), 2, + ACTIONS(6549), 2, sym__ws, sym_comment, - ACTIONS(6516), 3, + ACTIONS(6551), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(823), 3, + STATE(763), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(723), 19, + STATE(1643), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76846,7 +77762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46575] = 35, + [46980] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76855,78 +77771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(5127), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6522), 1, + ACTIONS(6559), 1, sym_self_referential_reader_macro, - STATE(1469), 1, + STATE(1672), 1, sym_sym_lit, - STATE(1490), 1, + STATE(1674), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4896), 2, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6520), 3, + ACTIONS(6555), 2, + sym__ws, + sym_comment, + ACTIONS(6557), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1489), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(767), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1545), 19, + STATE(1673), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1642), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76946,7 +77862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46710] = 35, + [47115] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76955,78 +77871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, - anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, - anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6526), 1, + ACTIONS(5035), 1, sym_self_referential_reader_macro, - STATE(1469), 1, + STATE(2492), 1, sym_sym_lit, - STATE(1490), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4896), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6524), 3, + ACTIONS(6561), 2, + sym__ws, + sym_comment, + ACTIONS(5033), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1489), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(721), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1544), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2572), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77046,7 +77962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46845] = 35, + [47250] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77055,78 +77971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, - anon_sym_POUND, - ACTIONS(4884), 1, - aux_sym_num_lit_token1, - ACTIONS(4886), 1, - anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, - anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + sym_self_referential_reader_macro, + ACTIONS(4831), 1, + anon_sym_POUND, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6532), 1, - sym_self_referential_reader_macro, - STATE(1469), 1, + STATE(2492), 1, sym_sym_lit, - STATE(1490), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4896), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6528), 2, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6563), 2, sym__ws, sym_comment, - ACTIONS(6530), 3, + ACTIONS(4793), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(737), 3, + STATE(623), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1489), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1542), 19, + STATE(2493), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77146,7 +78062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46980] = 35, + [47385] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77155,78 +78071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6538), 1, + ACTIONS(6311), 1, sym_self_referential_reader_macro, - STATE(1927), 1, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, sym__bare_set_lit, - STATE(2795), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2356), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6534), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6565), 2, sym__ws, sym_comment, - ACTIONS(6536), 3, + ACTIONS(6309), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(481), 3, + STATE(729), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1896), 19, + STATE(2611), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77246,7 +78162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47115] = 35, + [47520] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77255,78 +78171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, - anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, - anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6542), 1, + ACTIONS(4853), 1, sym_self_referential_reader_macro, - STATE(1469), 1, + STATE(2492), 1, sym_sym_lit, - STATE(1490), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4896), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6540), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(4833), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1489), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1541), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2552), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77346,87 +78262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47250] = 35, + [47655] = 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(4700), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6548), 1, + ACTIONS(6571), 1, sym_self_referential_reader_macro, - STATE(1927), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, sym__bare_set_lit, - STATE(2795), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2356), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6544), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6567), 2, sym__ws, sym_comment, - ACTIONS(6546), 3, + ACTIONS(6569), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(490), 3, + STATE(580), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1899), 19, + STATE(809), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77446,87 +78362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47385] = 35, + [47790] = 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(4880), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6554), 1, + ACTIONS(6577), 1, sym_self_referential_reader_macro, - STATE(1469), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1490), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4896), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6550), 2, + ACTIONS(6573), 2, sym__ws, sym_comment, - ACTIONS(6552), 3, + ACTIONS(6575), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(741), 3, + STATE(771), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1489), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1531), 19, + STATE(617), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77546,7 +78462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47520] = 35, + [47925] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77555,78 +78471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(5127), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6560), 1, + ACTIONS(6581), 1, sym_self_referential_reader_macro, - STATE(1469), 1, + STATE(1672), 1, sym_sym_lit, - STATE(1490), 1, + STATE(1674), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4896), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6556), 2, - sym__ws, - sym_comment, - ACTIONS(6558), 3, + ACTIONS(6579), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(743), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1489), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1530), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1637), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77646,87 +78562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47655] = 35, + [48060] = 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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6564), 1, + ACTIONS(4893), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6562), 3, + ACTIONS(4891), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(625), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2553), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77746,7 +78662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47790] = 35, + [48195] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77755,78 +78671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(4969), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6570), 1, + ACTIONS(6587), 1, sym_self_referential_reader_macro, - STATE(1469), 1, - sym_sym_lit, STATE(1490), 1, + sym_sym_lit, + STATE(1497), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4896), 2, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6566), 2, + ACTIONS(6583), 2, sym__ws, sym_comment, - ACTIONS(6568), 3, + ACTIONS(6585), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(744), 3, + STATE(824), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1489), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1529), 19, + STATE(1549), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77846,7 +78762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47925] = 35, + [48330] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77855,78 +78771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(5127), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6576), 1, + ACTIONS(6591), 1, sym_self_referential_reader_macro, - STATE(1469), 1, + STATE(1672), 1, sym_sym_lit, - STATE(1490), 1, + STATE(1674), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4896), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6572), 2, - sym__ws, - sym_comment, - ACTIONS(6574), 3, + ACTIONS(6589), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(747), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1489), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1525), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1635), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77946,7 +78862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48060] = 35, + [48465] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77955,78 +78871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6580), 1, + ACTIONS(4901), 1, sym_self_referential_reader_macro, - STATE(1927), 1, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, sym__bare_set_lit, - STATE(2795), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2356), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4738), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6578), 3, + ACTIONS(4899), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1931), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2554), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78046,7 +78962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48195] = 35, + [48600] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78055,78 +78971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(4969), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6584), 1, + ACTIONS(6595), 1, sym_self_referential_reader_macro, - STATE(1469), 1, - sym_sym_lit, STATE(1490), 1, + sym_sym_lit, + STATE(1497), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4896), 2, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6582), 3, + ACTIONS(6593), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1489), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1521), 19, + STATE(1551), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78146,87 +79062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48330] = 35, + [48735] = 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(5121), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(5127), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6588), 1, + ACTIONS(6601), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1672), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1674), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6597), 2, sym__ws, sym_comment, - ACTIONS(6586), 3, + ACTIONS(6599), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(775), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(632), 19, + STATE(1673), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1634), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78246,7 +79162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48465] = 35, + [48870] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78255,78 +79171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(5127), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6592), 1, + ACTIONS(6605), 1, sym_self_referential_reader_macro, - STATE(1469), 1, + STATE(1672), 1, sym_sym_lit, - STATE(1490), 1, + STATE(1674), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4896), 2, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6590), 3, + ACTIONS(6603), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1489), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1520), 19, + STATE(1633), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78346,7 +79262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48600] = 35, + [49005] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78355,78 +79271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(5127), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6596), 1, + ACTIONS(6611), 1, sym_self_referential_reader_macro, - STATE(1469), 1, + STATE(1672), 1, sym_sym_lit, - STATE(1490), 1, + STATE(1674), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4896), 2, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6594), 3, + ACTIONS(6607), 2, + sym__ws, + sym_comment, + ACTIONS(6609), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1489), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(776), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1519), 19, + STATE(1673), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1632), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78446,7 +79362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48735] = 35, + [49140] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78455,78 +79371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4969), 1, + anon_sym_COLON, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4977), 1, + anon_sym_LPAREN, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6600), 1, + ACTIONS(6615), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1490), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1497), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(6598), 3, + ACTIONS(6613), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2703), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1552), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78546,7 +79462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48870] = 35, + [49275] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78555,78 +79471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, - anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, - anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6604), 1, + ACTIONS(4911), 1, sym_self_referential_reader_macro, - STATE(1469), 1, + STATE(2492), 1, sym_sym_lit, - STATE(1490), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4896), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6602), 3, + ACTIONS(6617), 2, + sym__ws, + sym_comment, + ACTIONS(4909), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1489), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(740), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1518), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2558), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78646,87 +79562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49005] = 35, + [49410] = 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(223), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 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(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6608), 1, + ACTIONS(6621), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6606), 3, + ACTIONS(6619), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2690), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(608), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78746,7 +79662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49140] = 35, + [49545] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78755,78 +79671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6614), 1, + ACTIONS(4919), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6610), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6612), 3, + ACTIONS(4917), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(952), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2673), 19, + STATE(2559), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78846,87 +79762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49275] = 35, + [49680] = 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(4880), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6618), 1, + ACTIONS(6627), 1, sym_self_referential_reader_macro, - STATE(1469), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1490), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4896), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6616), 3, + ACTIONS(6623), 2, + sym__ws, + sym_comment, + ACTIONS(6625), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1489), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(811), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1517), 19, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(598), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78946,7 +79862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49410] = 35, + [49815] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78955,78 +79871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, - anon_sym_POUND, - ACTIONS(4884), 1, - aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(6624), 1, + ACTIONS(6199), 1, sym_self_referential_reader_macro, - STATE(1469), 1, - sym_sym_lit, - STATE(1490), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4896), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6620), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6622), 3, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6197), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(755), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1489), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1488), 19, + STATE(1918), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79046,7 +79962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49545] = 35, + [49950] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79055,78 +79971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(5127), 1, + anon_sym_COLON, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(5135), 1, + anon_sym_LPAREN, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(6628), 1, + ACTIONS(6631), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1672), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1674), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(5155), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(5161), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(6626), 3, + ACTIONS(6629), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2685), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1737), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79146,7 +80062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49680] = 35, + [50085] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79155,78 +80071,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(5121), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(5127), 1, + anon_sym_COLON, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(5135), 1, + anon_sym_LPAREN, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(5153), 1, + anon_sym_cl, + ACTIONS(6635), 1, + sym_self_referential_reader_macro, + STATE(1672), 1, + sym_sym_lit, + STATE(1674), 1, + sym__bare_set_lit, + STATE(2834), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5137), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5155), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5159), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5161), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6633), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1673), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1736), 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, + [50220] = 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(4692), 1, + 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(4694), 1, + 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(6634), 1, + ACTIONS(6641), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6630), 2, + ACTIONS(6637), 2, sym__ws, sym_comment, - ACTIONS(6632), 3, + ACTIONS(6639), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(955), 3, + STATE(817), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2704), 19, + STATE(596), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79246,7 +80262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49815] = 35, + [50355] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79255,78 +80271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, - anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(4783), 1, + sym_self_referential_reader_macro, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(4912), 1, - anon_sym_cl, - ACTIONS(6640), 1, - sym_self_referential_reader_macro, - STATE(1469), 1, - sym_sym_lit, - STATE(1490), 1, - sym__bare_set_lit, - STATE(2792), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4896), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6636), 2, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6643), 2, sym__ws, sym_comment, - ACTIONS(6638), 3, + ACTIONS(4749), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(757), 3, + STATE(790), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1489), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1504), 19, + STATE(2966), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79346,7 +80362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49950] = 35, + [50490] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79355,78 +80371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, - anon_sym_POUND, - ACTIONS(227), 1, - aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(6646), 1, + ACTIONS(6205), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6642), 2, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6645), 2, sym__ws, sym_comment, - ACTIONS(6644), 3, + ACTIONS(6203), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(957), 3, + STATE(958), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2664), 19, + STATE(1917), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79446,7 +80462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50085] = 35, + [50625] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79455,78 +80471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, - anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5377), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(4912), 1, - anon_sym_cl, - ACTIONS(6652), 1, - sym_self_referential_reader_macro, - STATE(1469), 1, - sym_sym_lit, - STATE(1490), 1, - sym__bare_set_lit, - STATE(2792), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4896), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6648), 2, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6647), 2, sym__ws, sym_comment, - ACTIONS(6650), 3, + ACTIONS(5375), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(758), 3, + STATE(793), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1489), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1503), 19, + STATE(2905), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79546,7 +80562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50220] = 35, + [50760] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79555,78 +80571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, - anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5371), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(4912), 1, - anon_sym_cl, - ACTIONS(6658), 1, - sym_self_referential_reader_macro, - STATE(1469), 1, - sym_sym_lit, - STATE(1490), 1, - sym__bare_set_lit, - STATE(2792), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4896), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6654), 2, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6649), 2, sym__ws, sym_comment, - ACTIONS(6656), 3, + ACTIONS(5369), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(760), 3, + STATE(795), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1489), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1502), 19, + STATE(2906), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79646,7 +80662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50355] = 35, + [50895] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79655,78 +80671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6662), 1, + ACTIONS(6653), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6660), 3, + ACTIONS(6651), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2698), 19, + STATE(2709), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79746,87 +80762,187 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50490] = 35, + [51030] = 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(4751), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5365), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, + anon_sym_LPAREN, + ACTIONS(5805), 1, + anon_sym_POUND_QMARK, + ACTIONS(5807), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5809), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5811), 1, + anon_sym_SQUOTE, + ACTIONS(5813), 1, + anon_sym_BQUOTE, + ACTIONS(5815), 1, + anon_sym_COMMA_AT, + ACTIONS(5817), 1, + anon_sym_COMMA, + STATE(2808), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2892), 1, + sym__metadata_lit, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4781), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6655), 2, + sym__ws, + sym_comment, + ACTIONS(5363), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(796), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2908), 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, + [51165] = 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, + 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(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(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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5286), 1, + ACTIONS(6659), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5284), 3, + ACTIONS(6657), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1821), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2705), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79846,7 +80962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50625] = 35, + [51300] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79855,78 +80971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6666), 1, + ACTIONS(6665), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6664), 3, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6661), 2, + sym__ws, + sym_comment, + ACTIONS(6663), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(975), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2940), 19, + STATE(2703), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79946,7 +81062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50760] = 35, + [51435] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79955,78 +81071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, - anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5359), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(4732), 1, - anon_sym_cl, - ACTIONS(6672), 1, - sym_self_referential_reader_macro, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2795), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4716), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(5821), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6668), 2, + ACTIONS(6667), 2, sym__ws, sym_comment, - ACTIONS(6670), 3, + ACTIONS(5357), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(820), 3, + STATE(797), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1959), 19, + STATE(2910), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80046,87 +81162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50895] = 35, + [51570] = 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(223), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, - anon_sym_POUND_QMARK, - ACTIONS(258), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(6676), 1, + ACTIONS(6671), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6674), 3, + ACTIONS(5195), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5209), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6669), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2604), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1808), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80146,7 +81262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51030] = 35, + [51705] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80155,78 +81271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6680), 1, + ACTIONS(6675), 1, sym_self_referential_reader_macro, - STATE(1027), 1, - sym__bare_set_lit, - STATE(1062), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2775), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6673), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1045), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2685), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80246,87 +81362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51165] = 35, + [51840] = 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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5282), 1, + ACTIONS(6681), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(4738), 2, + ACTIONS(6677), 2, sym__ws, sym_comment, - ACTIONS(5280), 3, + ACTIONS(6679), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(929), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1820), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2682), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80346,7 +81462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51300] = 35, + [51975] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80355,78 +81471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, - anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5349), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, + anon_sym_LPAREN, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(6686), 1, - sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, - sym__bare_set_lit, - STATE(2789), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6682), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6684), 3, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5347), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(704), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2605), 19, + STATE(2940), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80446,7 +81562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51435] = 35, + [52110] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80455,78 +81571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4880), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(4884), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, - anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, - anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6692), 1, + ACTIONS(6687), 1, sym_self_referential_reader_macro, - STATE(1469), 1, + STATE(2492), 1, sym_sym_lit, - STATE(1490), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2792), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(4896), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6688), 2, + ACTIONS(6683), 2, sym__ws, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6685), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(763), 3, + STATE(903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1489), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1501), 19, + STATE(2723), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80546,7 +81662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51570] = 35, + [52245] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80555,78 +81671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6696), 1, + ACTIONS(6691), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6689), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2606), 19, + STATE(2708), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80646,87 +81762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51705] = 35, + [52380] = 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(4751), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5345), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5274), 1, - sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5272), 3, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5343), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1819), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2941), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80746,87 +81862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51840] = 35, + [52515] = 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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6702), 1, + ACTIONS(6695), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(6698), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6700), 3, + ACTIONS(6693), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(685), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(800), 19, + STATE(2678), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80846,7 +81962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51975] = 35, + [52650] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80855,78 +81971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, - anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5341), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(5176), 1, - sym_self_referential_reader_macro, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, - anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, - sym_sym_lit, - STATE(2781), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5174), 3, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5339), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1893), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2943), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80946,87 +82062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52110] = 35, + [52785] = 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(4751), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5337), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5260), 1, - sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6708), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5258), 3, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5335), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(841), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1817), 19, + STATE(2944), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81046,87 +82162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52245] = 35, + [52920] = 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(4751), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5333), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6712), 1, - sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6710), 3, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5331), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(837), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2949), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81146,7 +82262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52380] = 35, + [53055] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81155,78 +82271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, - anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5329), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(5148), 1, - sym_self_referential_reader_macro, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, - anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, - sym_sym_lit, - STATE(2781), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6697), 2, sym__ws, sym_comment, - ACTIONS(5146), 3, + ACTIONS(5327), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(813), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2954), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81246,87 +82362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52515] = 35, + [53190] = 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(4963), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4969), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6716), 1, + ACTIONS(6701), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1490), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1497), 1, + sym__bare_set_lit, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(6714), 3, + ACTIONS(6699), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(805), 19, + STATE(1554), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81346,7 +82462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52650] = 35, + [53325] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81355,78 +82471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, - anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5323), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(5086), 1, - sym_self_referential_reader_macro, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, - anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, - sym_sym_lit, - STATE(2781), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6718), 2, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6703), 2, sym__ws, sym_comment, - ACTIONS(5084), 3, + ACTIONS(5321), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(783), 3, + STATE(818), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1903), 19, + STATE(2956), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81446,7 +82562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52785] = 35, + [53460] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81455,78 +82571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, - anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5317), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(5074), 1, - sym_self_referential_reader_macro, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, - anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, - sym_sym_lit, - STATE(2781), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6705), 2, sym__ws, sym_comment, - ACTIONS(5072), 3, + ACTIONS(5315), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(819), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1875), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2957), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81546,7 +82662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52920] = 35, + [53595] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81555,78 +82671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4969), 1, + anon_sym_COLON, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4977), 1, + anon_sym_LPAREN, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6722), 1, + ACTIONS(6711), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1490), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1497), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6707), 2, sym__ws, sym_comment, - ACTIONS(6720), 3, + ACTIONS(6709), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(827), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2634), 19, + STATE(1555), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81646,87 +82762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53055] = 35, + [53730] = 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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6728), 1, + ACTIONS(4929), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(6724), 2, + ACTIONS(6713), 2, sym__ws, sym_comment, - ACTIONS(6726), 3, + ACTIONS(4927), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(787), 3, + STATE(757), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(814), 19, + STATE(2565), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81746,7 +82862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53190] = 35, + [53865] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81755,78 +82871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6732), 1, + ACTIONS(4935), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6715), 2, sym__ws, sym_comment, - ACTIONS(6730), 3, + ACTIONS(4933), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(761), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2633), 19, + STATE(2567), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81846,7 +82962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53325] = 35, + [54000] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81855,78 +82971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4988), 1, - sym_self_referential_reader_macro, - ACTIONS(6704), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, anon_sym_COLON, - ACTIONS(6706), 1, + ACTIONS(4851), 1, anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, + ACTIONS(4941), 1, + sym_self_referential_reader_macro, + STATE(2492), 1, sym_sym_lit, - STATE(2781), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6734), 2, + ACTIONS(6717), 2, sym__ws, sym_comment, - ACTIONS(4986), 3, + ACTIONS(4939), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(786), 3, + STATE(764), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1878), 19, + STATE(2569), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81946,7 +83062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53460] = 35, + [54135] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81955,78 +83071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6740), 1, + ACTIONS(4947), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6736), 2, + ACTIONS(6719), 2, sym__ws, sym_comment, - ACTIONS(6738), 3, + ACTIONS(4945), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(887), 3, + STATE(772), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2620), 19, + STATE(2574), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82046,7 +83162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53595] = 35, + [54270] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82055,78 +83171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, + ACTIONS(4751), 1, + aux_sym_num_lit_token1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5311), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(5212), 1, - anon_sym_cl, - ACTIONS(5384), 1, - sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, + STATE(2947), 1, sym__bare_set_lit, - STATE(3019), 1, + STATE(3088), 1, sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, + ACTIONS(4763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4862), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5198), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(5821), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5382), 3, + ACTIONS(6721), 2, + sym__ws, + sym_comment, + ACTIONS(5309), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(820), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2787), 19, + STATE(2958), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82146,7 +83262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53730] = 35, + [54405] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82155,78 +83271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4958), 1, - sym_self_referential_reader_macro, - ACTIONS(6704), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, anon_sym_COLON, - ACTIONS(6706), 1, + ACTIONS(4851), 1, anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, + ACTIONS(4951), 1, + sym_self_referential_reader_macro, + STATE(2492), 1, sym_sym_lit, - STATE(2781), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4956), 3, + ACTIONS(4949), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1879), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2576), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82246,7 +83362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53865] = 35, + [54540] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82255,78 +83371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4969), 1, + anon_sym_COLON, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4977), 1, + anon_sym_LPAREN, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6744), 1, + ACTIONS(6727), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1490), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1497), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6723), 2, sym__ws, sym_comment, - ACTIONS(6742), 3, + ACTIONS(6725), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(851), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2631), 19, + STATE(1556), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82346,7 +83462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54000] = 35, + [54675] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82355,78 +83471,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4968), 1, - sym_self_referential_reader_macro, - ACTIONS(6704), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, anon_sym_COLON, - ACTIONS(6706), 1, + ACTIONS(4851), 1, anon_sym_cl, - STATE(1927), 1, + ACTIONS(4961), 1, + sym_self_referential_reader_macro, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, sym__bare_set_lit, - STATE(2744), 1, + STATE(2804), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(98), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(4959), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2650), 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, + [54810] = 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(6731), 1, + sym_self_referential_reader_macro, + STATE(1777), 1, sym_sym_lit, - STATE(2781), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4966), 3, + ACTIONS(6729), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1874), 19, + STATE(591), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82446,7 +83662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54135] = 35, + [54945] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82455,78 +83671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5070), 1, - sym_self_referential_reader_macro, - ACTIONS(6704), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, anon_sym_COLON, - ACTIONS(6706), 1, + ACTIONS(4851), 1, anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, + ACTIONS(5007), 1, + sym_self_referential_reader_macro, + STATE(2492), 1, sym_sym_lit, - STATE(2781), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6746), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5068), 3, + ACTIONS(5005), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(789), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1876), 19, + STATE(2578), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82546,7 +83762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54270] = 35, + [55080] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82555,78 +83771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, - anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5305), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(5104), 1, - sym_self_referential_reader_macro, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, - anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, - sym_sym_lit, - STATE(2781), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6748), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5102), 3, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5303), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(796), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1880), 19, + STATE(2964), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82646,7 +83862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54405] = 35, + [55215] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82655,78 +83871,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5220), 1, - sym_self_referential_reader_macro, - ACTIONS(6704), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, anon_sym_COLON, - ACTIONS(6706), 1, + ACTIONS(4851), 1, anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, + ACTIONS(5021), 1, + sym_self_referential_reader_macro, + STATE(2492), 1, sym_sym_lit, - STATE(2781), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5218), 3, + ACTIONS(5019), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(2579), 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, + [55350] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4751), 1, + aux_sym_num_lit_token1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, + anon_sym_COLON_COLON, + ACTIONS(4801), 1, + anon_sym_DQUOTE, + ACTIONS(4803), 1, + aux_sym_sym_lit_token1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5301), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, + anon_sym_LPAREN, + ACTIONS(5805), 1, + anon_sym_POUND_QMARK, + ACTIONS(5807), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5809), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5811), 1, + anon_sym_SQUOTE, + ACTIONS(5813), 1, + anon_sym_BQUOTE, + ACTIONS(5815), 1, + anon_sym_COMMA_AT, + ACTIONS(5817), 1, + anon_sym_COMMA, + STATE(2808), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2892), 1, + sym__metadata_lit, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4781), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6733), 2, + sym__ws, + sym_comment, + ACTIONS(5299), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(825), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1881), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2965), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82746,7 +84062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54540] = 35, + [55485] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82755,78 +84071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5264), 1, - sym_self_referential_reader_macro, - ACTIONS(6704), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, anon_sym_COLON, - ACTIONS(6706), 1, + ACTIONS(4851), 1, anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, + ACTIONS(5043), 1, + sym_self_referential_reader_macro, + STATE(2492), 1, sym_sym_lit, - STATE(2781), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5262), 3, + ACTIONS(5041), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1884), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2580), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82846,7 +84162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54675] = 35, + [55620] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -82885,19 +84201,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4878), 1, + ACTIONS(6737), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -82911,22 +84227,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6750), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4876), 3, + ACTIONS(6735), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(636), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1816), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(587), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82946,7 +84262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54810] = 35, + [55755] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82955,78 +84271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, - anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5295), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(5314), 1, - sym_self_referential_reader_macro, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, - anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, - sym_sym_lit, - STATE(2781), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5312), 3, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5293), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1885), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2967), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83046,7 +84362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54945] = 35, + [55890] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -83055,178 +84371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, - anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5291), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(5370), 1, - sym_self_referential_reader_macro, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, - anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, - sym_sym_lit, - STATE(2781), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6752), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5368), 3, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5289), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(798), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1887), 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, - [55080] = 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(4944), 1, - sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, - aux_sym_list_lit_repeat1, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2867), 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(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4942), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1793), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1833), 19, + STATE(2968), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83246,7 +84462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55215] = 35, + [56025] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -83255,78 +84471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, - anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5287), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(4732), 1, - anon_sym_cl, - ACTIONS(6758), 1, - sym_self_referential_reader_macro, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2795), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4716), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4736), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6754), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6756), 3, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5285), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(506), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1904), 19, + STATE(2969), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83346,7 +84562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55350] = 35, + [56160] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -83355,78 +84571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, - anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5283), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(5388), 1, - sym_self_referential_reader_macro, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, - anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, - sym_sym_lit, - STATE(2781), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6739), 2, sym__ws, sym_comment, - ACTIONS(5386), 3, + ACTIONS(5281), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(826), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1888), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2970), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83446,7 +84662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55485] = 35, + [56295] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -83455,78 +84671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, - anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5277), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(6502), 1, - sym_self_referential_reader_macro, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, - anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, - sym_sym_lit, - STATE(2781), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6760), 2, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6741), 2, sym__ws, sym_comment, - ACTIONS(6500), 3, + ACTIONS(5275), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(801), 3, + STATE(832), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1894), 19, + STATE(2972), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83546,7 +84762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55620] = 35, + [56430] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -83585,19 +84801,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4996), 1, + ACTIONS(6745), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -83611,22 +84827,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4994), 3, + ACTIONS(6743), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1835), 19, + STATE(1767), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83646,7 +84862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55755] = 35, + [56565] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -83655,78 +84871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(4969), 1, + anon_sym_COLON, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(6538), 1, - sym_self_referential_reader_macro, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, + ACTIONS(4995), 1, anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, + ACTIONS(6749), 1, + sym_self_referential_reader_macro, + STATE(1490), 1, sym_sym_lit, - STATE(2781), 1, + STATE(1497), 1, + sym__bare_set_lit, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6762), 2, - sym__ws, - sym_comment, - ACTIONS(6536), 3, + ACTIONS(6747), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(802), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1896), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1562), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83746,7 +84962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55890] = 35, + [56700] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -83755,78 +84971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, - anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5265), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(6548), 1, - sym_self_referential_reader_macro, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, - anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, - sym_sym_lit, - STATE(2781), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6764), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6546), 3, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5263), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(804), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1899), 19, + STATE(2973), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83846,7 +85062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56025] = 35, + [56835] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -83855,78 +85071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, - anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5261), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, + anon_sym_LPAREN, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(6768), 1, - sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, - sym__bare_set_lit, - STATE(2789), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6766), 3, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5259), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2608), 19, + STATE(2975), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83946,7 +85162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56160] = 35, + [56970] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -83955,78 +85171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(4969), 1, + anon_sym_COLON, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6758), 1, + ACTIONS(6753), 1, sym_self_referential_reader_macro, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, + STATE(1490), 1, sym_sym_lit, - STATE(2781), 1, + STATE(1497), 1, + sym__bare_set_lit, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6770), 2, - sym__ws, - sym_comment, - ACTIONS(6756), 3, + ACTIONS(6751), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(808), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1904), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1565), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84046,7 +85262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56295] = 35, + [57105] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -84055,78 +85271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, + ACTIONS(4963), 1, anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(4969), 1, + anon_sym_COLON, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(6774), 1, + ACTIONS(6759), 1, sym_self_referential_reader_macro, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, + STATE(1490), 1, sym_sym_lit, - STATE(2781), 1, + STATE(1497), 1, + sym__bare_set_lit, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6755), 2, sym__ws, sym_comment, - ACTIONS(6772), 3, + ACTIONS(6757), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(892), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1906), 19, + STATE(1496), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1566), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84146,87 +85362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56430] = 35, + [57240] = 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(4751), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5251), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5026), 1, - sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6761), 2, sym__ws, sym_comment, - ACTIONS(5024), 3, + ACTIONS(5249), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(836), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1838), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2976), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84246,7 +85462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56565] = 35, + [57375] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -84255,78 +85471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, + ACTIONS(4751), 1, + aux_sym_num_lit_token1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, + ACTIONS(5799), 1, anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(6666), 1, + ACTIONS(6767), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, + STATE(2947), 1, sym__bare_set_lit, - STATE(3066), 1, + STATE(3088), 1, sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, + ACTIONS(4763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4862), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5198), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(5821), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6664), 3, + ACTIONS(6763), 2, + sym__ws, + sym_comment, + ACTIONS(6765), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(573), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2940), 19, + STATE(3052), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84346,87 +85562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56700] = 35, + [57510] = 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(2312), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6778), 1, + ACTIONS(6773), 1, sym_self_referential_reader_macro, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2781), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6769), 2, sym__ws, sym_comment, - ACTIONS(6776), 3, + ACTIONS(6771), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(631), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1908), 19, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(632), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84446,7 +85662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56835] = 35, + [57645] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -84455,78 +85671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, - anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5245), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, - anon_sym_cl, - ACTIONS(6782), 1, - sym_self_referential_reader_macro, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, - sym_sym_lit, - STATE(2781), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6780), 3, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5243), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1922), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2979), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84546,7 +85762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56970] = 35, + [57780] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -84555,78 +85771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, - anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5237), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(4732), 1, - anon_sym_cl, - ACTIONS(6774), 1, - sym_self_referential_reader_macro, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2795), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4716), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(5821), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4738), 2, + ACTIONS(6775), 2, sym__ws, sym_comment, - ACTIONS(6772), 3, + ACTIONS(5235), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(838), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1906), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2980), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84646,87 +85862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57105] = 35, + [57915] = 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(2312), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6786), 1, + ACTIONS(6781), 1, sym_self_referential_reader_macro, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2781), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6777), 2, sym__ws, sym_comment, - ACTIONS(6784), 3, + ACTIONS(6779), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(633), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1928), 19, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(634), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84746,7 +85962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57240] = 35, + [58050] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -84755,78 +85971,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, + ACTIONS(4791), 1, anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(6580), 1, - sym_self_referential_reader_macro, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, + ACTIONS(4823), 1, anon_sym_cl, - STATE(1927), 1, + ACTIONS(6065), 1, + sym_self_referential_reader_macro, + STATE(2816), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2892), 1, + sym__metadata_lit, + STATE(2947), 1, sym__bare_set_lit, - STATE(2744), 1, + STATE(3088), 1, sym_sym_lit, - STATE(2781), 1, + ACTIONS(4781), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4807), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4827), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(6063), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2516), 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, + [58185] = 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(4751), 1, + aux_sym_num_lit_token1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, + anon_sym_COLON_COLON, + ACTIONS(4801), 1, + anon_sym_DQUOTE, + ACTIONS(4803), 1, + aux_sym_sym_lit_token1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5231), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, + anon_sym_LPAREN, + ACTIONS(5805), 1, + anon_sym_POUND_QMARK, + ACTIONS(5807), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5809), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5811), 1, + anon_sym_SQUOTE, + ACTIONS(5813), 1, + anon_sym_BQUOTE, + ACTIONS(5815), 1, + anon_sym_COMMA_AT, + ACTIONS(5817), 1, + anon_sym_COMMA, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6578), 3, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5229), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1931), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2984), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84846,7 +86162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57375] = 35, + [58320] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -84885,19 +86201,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6790), 1, + ACTIONS(6787), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -84911,22 +86227,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6783), 2, sym__ws, sym_comment, - ACTIONS(6788), 3, + ACTIONS(6785), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(635), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(951), 19, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1857), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84946,7 +86262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57510] = 35, + [58455] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -84955,78 +86271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, - anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5175), 1, + sym_self_referential_reader_macro, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, - anon_sym_cl, - ACTIONS(6794), 1, - sym_self_referential_reader_macro, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, - sym_sym_lit, - STATE(2781), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3088), 1, + sym_sym_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6792), 3, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5173), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2765), 19, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2987), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85046,87 +86362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57645] = 35, + [58590] = 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(2312), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, - anon_sym_COLON_COLON, - ACTIONS(2322), 1, - anon_sym_DQUOTE, - ACTIONS(2324), 1, - aux_sym_sym_lit_token1, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2330), 1, - anon_sym_POUND_QMARK, - ACTIONS(2332), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(6672), 1, + ACTIONS(6793), 1, sym_self_referential_reader_macro, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, - anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2781), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6796), 2, + ACTIONS(5195), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5209), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6789), 2, sym__ws, sym_comment, - ACTIONS(6670), 3, + ACTIONS(6791), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(815), 3, + STATE(862), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1959), 19, + STATE(1872), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85146,87 +86462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57780] = 35, + [58725] = 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(2312), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6424), 1, - sym_self_referential_reader_macro, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, + ACTIONS(6799), 1, + sym_self_referential_reader_macro, + STATE(1777), 1, sym_sym_lit, - STATE(2781), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6798), 2, + ACTIONS(6795), 2, sym__ws, sym_comment, - ACTIONS(6422), 3, + ACTIONS(6797), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(818), 3, + STATE(637), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1950), 19, + STATE(1847), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85246,87 +86562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57915] = 35, + [58860] = 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(4830), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6404), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6805), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6402), 3, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6801), 2, + sym__ws, + sym_comment, + ACTIONS(6803), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(639), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2877), 19, + STATE(1843), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85346,87 +86662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58050] = 35, + [58995] = 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(2312), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, - anon_sym_COLON_COLON, - ACTIONS(2322), 1, - anon_sym_DQUOTE, - ACTIONS(2324), 1, - aux_sym_sym_lit_token1, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2330), 1, - anon_sym_POUND_QMARK, - ACTIONS(2332), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(4734), 1, + ACTIONS(6811), 1, sym_self_referential_reader_macro, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, - anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2781), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6800), 2, + ACTIONS(5195), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5209), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6807), 2, sym__ws, sym_comment, - ACTIONS(4702), 3, + ACTIONS(6809), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(819), 3, + STATE(863), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1948), 19, + STATE(1873), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85446,87 +86762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58185] = 35, + [59130] = 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(2312), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, - anon_sym_COLON_COLON, - ACTIONS(2322), 1, - anon_sym_DQUOTE, - ACTIONS(2324), 1, - aux_sym_sym_lit_token1, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2330), 1, - anon_sym_POUND_QMARK, - ACTIONS(2332), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(6132), 1, + ACTIONS(6817), 1, sym_self_referential_reader_macro, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, - anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2781), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6802), 2, + ACTIONS(5195), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5209), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6813), 2, sym__ws, sym_comment, - ACTIONS(6130), 3, + ACTIONS(6815), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(821), 3, + STATE(864), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1946), 19, + STATE(1792), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85546,87 +86862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58320] = 35, + [59265] = 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(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(33), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(6808), 1, + ACTIONS(6227), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6804), 2, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6819), 2, sym__ws, sym_comment, - ACTIONS(6806), 3, + ACTIONS(6225), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(898), 3, + STATE(953), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(945), 19, + STATE(1916), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85646,87 +86962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58455] = 35, + [59400] = 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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6814), 1, + ACTIONS(5059), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(6810), 2, + ACTIONS(6821), 2, sym__ws, sym_comment, - ACTIONS(6812), 3, + ACTIONS(5057), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(918), 3, + STATE(808), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(944), 19, + STATE(2615), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85746,7 +87062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58590] = 35, + [59535] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -85755,78 +87071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2312), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5990), 1, - sym_self_referential_reader_macro, - ACTIONS(6704), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, anon_sym_COLON, - ACTIONS(6706), 1, + ACTIONS(4851), 1, anon_sym_cl, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, + ACTIONS(5069), 1, + sym_self_referential_reader_macro, + STATE(2492), 1, sym_sym_lit, - STATE(2781), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6816), 2, + ACTIONS(6823), 2, sym__ws, sym_comment, - ACTIONS(5988), 3, + ACTIONS(5067), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(822), 3, + STATE(810), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1939), 19, + STATE(2619), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85846,87 +87162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58725] = 35, + [59670] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(2312), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6704), 1, - anon_sym_COLON, - ACTIONS(6706), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6822), 1, + ACTIONS(6829), 1, sym_self_referential_reader_macro, - STATE(1927), 1, - sym__bare_set_lit, - STATE(2744), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2781), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2328), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6818), 2, + ACTIONS(6825), 2, sym__ws, sym_comment, - ACTIONS(6820), 3, + ACTIONS(6827), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(824), 3, + STATE(855), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1926), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2768), 19, + STATE(561), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85946,87 +87262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58860] = 35, + [59805] = 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(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6826), 1, + ACTIONS(5075), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(4738), 2, + ACTIONS(6831), 2, sym__ws, sym_comment, - ACTIONS(6824), 3, + ACTIONS(5073), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(812), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(838), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2623), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86046,7 +87362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58995] = 35, + [59940] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -86055,78 +87371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(233), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(5288), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(6294), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, + anon_sym_cl, + ACTIONS(5085), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(98), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(285), 2, + ACTIONS(127), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6833), 2, sym__ws, sym_comment, - ACTIONS(5292), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5304), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6292), 3, + ACTIONS(5083), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(814), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2587), 19, + STATE(2625), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86146,7 +87462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59130] = 35, + [60075] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -86155,78 +87471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(233), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(5288), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(6348), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, + anon_sym_cl, + ACTIONS(5117), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(98), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(285), 2, + ACTIONS(127), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6835), 2, sym__ws, sym_comment, - ACTIONS(5292), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5304), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6346), 3, + ACTIONS(5115), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(816), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2549), 19, + STATE(2628), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86246,87 +87562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59265] = 35, + [60210] = 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(4963), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4969), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(5036), 1, + ACTIONS(6839), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1490), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1497), 1, + sym__bare_set_lit, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6828), 2, - sym__ws, - sym_comment, - ACTIONS(5034), 3, + ACTIONS(6837), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(654), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1754), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1567), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86346,7 +87662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59400] = 35, + [60345] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -86355,78 +87671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(233), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(5288), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(6442), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, + anon_sym_cl, + ACTIONS(6845), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(285), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5292), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6830), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6841), 2, sym__ws, sym_comment, - ACTIONS(6440), 3, + ACTIONS(6843), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(835), 3, + STATE(420), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2603), 19, + STATE(2691), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86446,7 +87762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59535] = 35, + [60480] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -86455,78 +87771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(233), 1, + ACTIONS(4963), 1, + anon_sym_POUND, + ACTIONS(4967), 1, + aux_sym_num_lit_token1, + ACTIONS(4969), 1, + anon_sym_COLON, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4977), 1, + anon_sym_LPAREN, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(5288), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(6676), 1, + ACTIONS(4995), 1, + anon_sym_cl, + ACTIONS(6851), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1490), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1497), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(4979), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(285), 2, + ACTIONS(5001), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6847), 2, sym__ws, sym_comment, - ACTIONS(5292), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5304), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6674), 3, + ACTIONS(6849), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(895), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2604), 19, + STATE(1568), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86546,7 +87862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59670] = 35, + [60615] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -86555,78 +87871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(233), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(5288), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(6686), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, + anon_sym_cl, + ACTIONS(6857), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(285), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5292), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6832), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6853), 2, sym__ws, sym_comment, - ACTIONS(6684), 3, + ACTIONS(6855), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(836), 3, + STATE(418), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2605), 19, + STATE(2694), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86646,7 +87962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59805] = 35, + [60750] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -86685,19 +88001,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5040), 1, + ACTIONS(6861), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -86711,22 +88027,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5038), 3, + ACTIONS(6859), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1757), 19, + STATE(555), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86746,87 +88062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59940] = 35, + [60885] = 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(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5288), 1, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(5290), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(6696), 1, + ACTIONS(6867), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(5292), 2, + ACTIONS(5195), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(5209), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6694), 3, + ACTIONS(6863), 2, + sym__ws, + sym_comment, + ACTIONS(6865), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(866), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2606), 19, + STATE(1855), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86846,87 +88162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60075] = 35, + [61020] = 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(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, - anon_sym_COLON_COLON, - ACTIONS(4834), 1, - anon_sym_DQUOTE, - ACTIONS(4836), 1, - aux_sym_sym_lit_token1, - ACTIONS(4854), 1, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(5654), 1, - anon_sym_LPAREN, - ACTIONS(5656), 1, - anon_sym_POUND_QMARK, - ACTIONS(5658), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(5193), 1, + aux_sym_num_lit_token1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(6352), 1, + ACTIONS(6873), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4862), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(5195), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(5209), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6350), 3, + ACTIONS(6869), 2, + sym__ws, + sym_comment, + ACTIONS(6871), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(868), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2878), 19, + STATE(1819), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86946,87 +88262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60210] = 35, + [61155] = 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(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(5288), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6768), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6877), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(285), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5292), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5304), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6766), 3, + ACTIONS(6875), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2608), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(659), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87046,87 +88362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60345] = 35, + [61290] = 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(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(5288), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6838), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6883), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(285), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5292), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6834), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6879), 2, sym__ws, sym_comment, - ACTIONS(6836), 3, + ACTIONS(6881), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(839), 3, + STATE(665), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2609), 19, + STATE(1838), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87146,7 +88462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60480] = 35, + [61425] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -87155,78 +88471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, - anon_sym_POUND, - ACTIONS(4704), 1, - aux_sym_num_lit_token1, - ACTIONS(4706), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(6778), 1, + ACTIONS(6159), 1, sym_self_referential_reader_macro, - STATE(1927), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2795), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, + STATE(2864), 1, sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2356), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5093), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(5111), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(6776), 3, + ACTIONS(6157), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1908), 19, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2802), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87246,87 +88562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60615] = 35, + [61560] = 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(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(5288), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6844), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6889), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(285), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5292), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6840), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6885), 2, sym__ws, sym_comment, - ACTIONS(6842), 3, + ACTIONS(6887), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(842), 3, + STATE(886), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2610), 19, + STATE(544), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87346,87 +88662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60750] = 35, + [61695] = 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(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5288), 1, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(5290), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(6848), 1, + ACTIONS(6893), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5292), 2, + ACTIONS(5195), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(5209), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6846), 3, + ACTIONS(6891), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2611), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1827), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87446,87 +88762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60885] = 35, + [61830] = 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(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, - anon_sym_COLON_COLON, - ACTIONS(4834), 1, - anon_sym_DQUOTE, - ACTIONS(4836), 1, - aux_sym_sym_lit_token1, - ACTIONS(4854), 1, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(5654), 1, - anon_sym_LPAREN, - ACTIONS(5656), 1, - anon_sym_POUND_QMARK, - ACTIONS(5658), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(5193), 1, + aux_sym_num_lit_token1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(6326), 1, + ACTIONS(6897), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4862), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5195), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(5209), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6324), 3, + ACTIONS(6895), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2885), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1828), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87546,87 +88862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61020] = 35, + [61965] = 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(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5288), 1, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(5290), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(6852), 1, + ACTIONS(6901), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5292), 2, + ACTIONS(5195), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(5209), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6850), 3, + ACTIONS(6899), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2612), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1830), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87646,7 +88962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61155] = 35, + [62100] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -87685,19 +89001,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6856), 1, + ACTIONS(6907), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -87711,22 +89027,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6903), 2, sym__ws, sym_comment, - ACTIONS(6854), 3, + ACTIONS(6905), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(888), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(840), 19, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(540), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87746,13 +89062,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61290] = 35, + [62235] = 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, @@ -87771,62 +89083,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5189), 1, + anon_sym_POUND, + ACTIONS(5193), 1, + aux_sym_num_lit_token1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6862), 1, + ACTIONS(6911), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(6858), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6860), 3, + ACTIONS(5195), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5209), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6909), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(834), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(845), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1833), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87846,7 +89162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61425] = 35, + [62370] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -87885,19 +89201,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5248), 1, + ACTIONS(6915), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -87911,22 +89227,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6864), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5246), 3, + ACTIONS(6913), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(816), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1813), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1835), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87946,87 +89262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61560] = 35, + [62505] = 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(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5288), 1, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(5290), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(6868), 1, + ACTIONS(6915), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5292), 2, + ACTIONS(5195), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(5209), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6866), 3, + ACTIONS(6913), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2613), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1835), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88046,13 +89362,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61695] = 35, + [62640] = 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, @@ -88071,62 +89383,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5189), 1, + anon_sym_POUND, + ACTIONS(5193), 1, + aux_sym_num_lit_token1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(5230), 1, + ACTIONS(6883), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(6870), 2, + ACTIONS(5195), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5209), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6917), 2, sym__ws, sym_comment, - ACTIONS(5228), 3, + ACTIONS(6881), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(810), 3, + STATE(878), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1812), 19, + STATE(1838), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88146,87 +89462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61830] = 35, + [62775] = 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(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(5288), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6876), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5207), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(285), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5292), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6872), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6919), 2, sym__ws, sym_comment, - ACTIONS(6874), 3, + ACTIONS(5191), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(844), 3, + STATE(941), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2615), 19, + STATE(1788), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88246,87 +89562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61965] = 35, + [62910] = 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(4830), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6266), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6911), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6264), 3, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(6909), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2887), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1833), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88346,87 +89662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62100] = 35, + [63045] = 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(4700), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(4710), 1, - anon_sym_DQUOTE, - ACTIONS(4712), 1, - aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, - anon_sym_POUND_QMARK, - ACTIONS(4720), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(4732), 1, - anon_sym_cl, - ACTIONS(6782), 1, + ACTIONS(6805), 1, sym_self_referential_reader_macro, - STATE(1927), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, sym__bare_set_lit, - STATE(2795), 1, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2356), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(5195), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(5209), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4738), 2, + ACTIONS(6921), 2, sym__ws, sym_comment, - ACTIONS(6780), 3, + ACTIONS(6803), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(880), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1922), 19, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1843), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88446,7 +89762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62235] = 35, + [63180] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -88455,78 +89771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(233), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(5288), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(6880), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, + anon_sym_cl, + ACTIONS(6927), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(98), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(285), 2, + ACTIONS(127), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6923), 2, sym__ws, sym_comment, - ACTIONS(5292), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5304), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6878), 3, + ACTIONS(6925), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(416), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2616), 19, + STATE(2698), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88546,87 +89862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62370] = 35, + [63315] = 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(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5288), 1, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(5290), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(6740), 1, + ACTIONS(6799), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5292), 2, + ACTIONS(5195), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(5209), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6882), 2, + ACTIONS(6929), 2, sym__ws, sym_comment, - ACTIONS(6738), 3, + ACTIONS(6797), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(848), 3, + STATE(884), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2620), 19, + STATE(1847), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88646,87 +89962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62505] = 35, + [63450] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(223), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 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(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6838), 1, + ACTIONS(6901), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6884), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6836), 3, + ACTIONS(6899), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(775), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2609), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1830), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88746,87 +90062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62640] = 35, + [63585] = 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(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5288), 1, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(5290), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(6890), 1, + ACTIONS(6787), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5292), 2, + ACTIONS(5195), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(5209), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6886), 2, + ACTIONS(6931), 2, sym__ws, sym_comment, - ACTIONS(6888), 3, + ACTIONS(6785), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(850), 3, + STATE(887), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2621), 19, + STATE(1857), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88846,7 +90162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62775] = 35, + [63720] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -88855,78 +90171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(233), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(5288), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(6896), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, + anon_sym_cl, + ACTIONS(6937), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(285), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5292), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6892), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6933), 2, sym__ws, sym_comment, - ACTIONS(6894), 3, + ACTIONS(6935), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(854), 3, + STATE(792), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2623), 19, + STATE(2741), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88946,87 +90262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62910] = 35, + [63855] = 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(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, - anon_sym_COLON_COLON, - ACTIONS(4834), 1, - anon_sym_DQUOTE, - ACTIONS(4836), 1, - aux_sym_sym_lit_token1, - ACTIONS(4854), 1, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(5654), 1, - anon_sym_LPAREN, - ACTIONS(5656), 1, - anon_sym_POUND_QMARK, - ACTIONS(5658), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(5193), 1, + aux_sym_num_lit_token1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(6198), 1, + ACTIONS(6195), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4856), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4862), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5195), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(5209), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6898), 2, - sym__ws, - sym_comment, - ACTIONS(6196), 3, + ACTIONS(6193), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(937), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2890), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1811), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -89046,87 +90362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63045] = 35, + [63990] = 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(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5288), 1, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(5290), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(6904), 1, + ACTIONS(6183), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5292), 2, + ACTIONS(5195), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(5209), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6900), 2, + ACTIONS(6939), 2, sym__ws, sym_comment, - ACTIONS(6902), 3, + ACTIONS(6181), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(859), 3, + STATE(893), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2627), 19, + STATE(1816), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -89146,87 +90462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63180] = 35, + [64125] = 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(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5288), 1, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(5290), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(6908), 1, + ACTIONS(6139), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5292), 2, + ACTIONS(5195), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(5209), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6906), 3, + ACTIONS(6137), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2629), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1812), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -89246,7 +90562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63315] = 35, + [64260] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -89255,78 +90571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(233), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(5288), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(6912), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, + anon_sym_cl, + ACTIONS(6945), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(98), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(285), 2, + ACTIONS(127), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6941), 2, sym__ws, sym_comment, - ACTIONS(5292), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5304), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6910), 3, + ACTIONS(6943), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(414), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2630), 19, + STATE(2700), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -89346,87 +90662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63450] = 35, + [64395] = 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(4830), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6126), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6897), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6914), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6124), 3, + ACTIONS(6895), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(728), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2895), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1828), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -89446,7 +90762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63585] = 35, + [64530] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -89455,78 +90771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(233), 1, + ACTIONS(217), 1, + anon_sym_POUND, + ACTIONS(221), 1, + aux_sym_num_lit_token1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(5288), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(6744), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_cl, + ACTIONS(6951), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(1072), 1, + sym_sym_lit, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(243), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(285), 2, + ACTIONS(270), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(6947), 2, sym__ws, sym_comment, - ACTIONS(5292), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5304), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6742), 3, + ACTIONS(6949), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(411), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2631), 19, + STATE(11), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -89546,87 +90862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63720] = 35, + [64665] = 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(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, - anon_sym_COLON_COLON, - ACTIONS(4834), 1, - anon_sym_DQUOTE, - ACTIONS(4836), 1, - aux_sym_sym_lit_token1, - ACTIONS(4854), 1, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(5654), 1, - anon_sym_LPAREN, - ACTIONS(5656), 1, - anon_sym_POUND_QMARK, - ACTIONS(5658), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(5193), 1, + aux_sym_num_lit_token1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(6068), 1, + ACTIONS(6133), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4856), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4862), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5195), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(5209), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6916), 2, - sym__ws, - sym_comment, - ACTIONS(6066), 3, + ACTIONS(6131), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(699), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2896), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1852), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -89646,87 +90962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63855] = 35, + [64800] = 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(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(5288), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6732), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6893), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(285), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5292), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5304), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6730), 3, + ACTIONS(6891), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2633), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1827), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -89746,87 +91062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63990] = 35, + [64935] = 35, ACTIONS(9), 1, anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + 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(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(5288), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(6722), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6955), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(31), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(285), 2, + ACTIONS(55), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5292), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5304), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(6720), 3, + ACTIONS(6953), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2634), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(529), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -89846,87 +91162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64125] = 35, + [65070] = 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(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, - anon_sym_COLON_COLON, - ACTIONS(4834), 1, - anon_sym_DQUOTE, - ACTIONS(4836), 1, - aux_sym_sym_lit_token1, - ACTIONS(4854), 1, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(5654), 1, - anon_sym_LPAREN, - ACTIONS(5656), 1, - anon_sym_POUND_QMARK, - ACTIONS(5658), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(5193), 1, + aux_sym_num_lit_token1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(6062), 1, + ACTIONS(6125), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4856), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4862), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(5195), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(5209), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6918), 2, - sym__ws, - sym_comment, - ACTIONS(6060), 3, + ACTIONS(6123), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(682), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2898), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1809), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -89946,87 +91262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64260] = 35, + [65205] = 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(825), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 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(843), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6922), 1, + ACTIONS(6959), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1150), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6920), 3, + ACTIONS(6957), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1135), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1152), 19, + STATE(526), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -90046,87 +91362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64395] = 35, + [65340] = 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(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5288), 1, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(5290), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(6056), 1, + ACTIONS(6121), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5292), 2, + ACTIONS(5195), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(5209), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6924), 2, + ACTIONS(6961), 2, sym__ws, sym_comment, - ACTIONS(6054), 3, + ACTIONS(6119), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(866), 3, + STATE(896), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2596), 19, + STATE(1806), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -90146,7 +91462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64530] = 35, + [65475] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -90155,78 +91471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(6786), 1, + ACTIONS(6967), 1, sym_self_referential_reader_macro, - STATE(1927), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(2795), 1, + STATE(1486), 1, + sym_sym_lit, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2839), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2350), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2356), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(2722), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4738), 2, + ACTIONS(2728), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6963), 2, sym__ws, sym_comment, - ACTIONS(6784), 3, + ACTIONS(6965), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(408), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1928), 19, + STATE(1485), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(262), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -90246,87 +91562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64665] = 35, + [65610] = 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(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5288), 1, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(5290), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(6042), 1, + ACTIONS(6111), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5292), 2, + ACTIONS(5195), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(5209), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6926), 2, + ACTIONS(6969), 2, sym__ws, sym_comment, - ACTIONS(6040), 3, + ACTIONS(6109), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(867), 3, + STATE(901), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2595), 19, + STATE(1803), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -90346,7 +91662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64800] = 35, + [65745] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -90355,78 +91671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, + ACTIONS(4963), 1, + anon_sym_POUND, + ACTIONS(4967), 1, + aux_sym_num_lit_token1, + ACTIONS(4969), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(6930), 1, + ACTIONS(4995), 1, + anon_sym_cl, + ACTIONS(6973), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(1490), 1, + sym_sym_lit, + STATE(1497), 1, + sym__bare_set_lit, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(4997), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6928), 3, + ACTIONS(5003), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6971), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2732), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1575), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -90446,87 +91762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64935] = 35, + [65880] = 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(223), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(4869), 1, + sym_self_referential_reader_macro, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, - anon_sym_POUND_QMARK, - ACTIONS(258), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(6844), 1, - sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6932), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6842), 3, + ACTIONS(5195), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5209), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4867), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(780), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2610), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1850), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -90546,7 +91862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65070] = 35, + [66015] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -90555,78 +91871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(233), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(5288), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(6032), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, + anon_sym_cl, + ACTIONS(6977), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(285), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5292), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6934), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6030), 3, + ACTIONS(6975), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(869), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2590), 19, + STATE(2702), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -90646,7 +91962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65205] = 35, + [66150] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -90655,78 +91971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(233), 1, + ACTIONS(4963), 1, + anon_sym_POUND, + ACTIONS(4967), 1, + aux_sym_num_lit_token1, + ACTIONS(4969), 1, + anon_sym_COLON, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4977), 1, + anon_sym_LPAREN, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(4696), 1, - sym_self_referential_reader_macro, - ACTIONS(5288), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - STATE(2159), 1, + ACTIONS(4995), 1, + anon_sym_cl, + ACTIONS(6981), 1, + sym_self_referential_reader_macro, + STATE(1490), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1497), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(285), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5292), 2, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(4997), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6936), 2, - sym__ws, - sym_comment, - ACTIONS(4688), 3, + ACTIONS(5003), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6979), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(871), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2574), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1577), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -90746,13 +92062,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65340] = 35, + [66285] = 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, @@ -90771,62 +92083,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(5092), 1, + ACTIONS(5185), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + ACTIONS(5189), 1, + anon_sym_POUND, + ACTIONS(5193), 1, + aux_sym_num_lit_token1, + ACTIONS(5197), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5199), 1, + anon_sym_SQUOTE, + ACTIONS(5201), 1, + anon_sym_BQUOTE, + ACTIONS(5203), 1, + anon_sym_COMMA_AT, + ACTIONS(5205), 1, + anon_sym_COMMA, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(6938), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5090), 3, + ACTIONS(5195), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5209), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5183), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(806), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1811), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1840), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -90846,7 +92162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65475] = 35, + [66420] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -90855,78 +92171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(233), 1, + ACTIONS(2675), 1, + anon_sym_POUND, + ACTIONS(2679), 1, + aux_sym_num_lit_token1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(5288), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(5298), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(5300), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(5302), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(6020), 1, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, + anon_sym_cl, + ACTIONS(6987), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(2812), 1, + STATE(1486), 1, + sym_sym_lit, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(279), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(285), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5292), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(2722), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(6940), 2, + ACTIONS(2728), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6983), 2, sym__ws, sym_comment, - ACTIONS(6018), 3, + ACTIONS(6985), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(872), 3, + STATE(511), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2570), 19, + STATE(1483), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -90946,7 +92262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65610] = 35, + [66555] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -90955,78 +92271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(4842), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5214), 1, + ACTIONS(6991), 1, sym_self_referential_reader_macro, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, + sym__bare_set_lit, STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4838), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5194), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(6989), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2897), 19, + STATE(2710), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -91046,13 +92362,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65745] = 35, + [66690] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, - aux_sym_num_lit_token1, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -91071,62 +92383,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5189), 1, + anon_sym_POUND, + ACTIONS(5193), 1, + aux_sym_num_lit_token1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(6946), 1, + ACTIONS(6147), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 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(6942), 2, + ACTIONS(5195), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5209), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6993), 2, sym__ws, sym_comment, - ACTIONS(6944), 3, + ACTIONS(6145), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(756), 3, + STATE(907), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(803), 19, + STATE(1839), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -91146,7 +92462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65880] = 35, + [66825] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -91155,78 +92471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(4842), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(5238), 1, + ACTIONS(5849), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, + STATE(2947), 1, sym__bare_set_lit, - STATE(3066), 1, + STATE(3017), 1, sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4838), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5236), 3, + ACTIONS(6995), 2, + sym__ws, + sym_comment, + ACTIONS(5847), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(648), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2894), 19, + STATE(2815), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -91246,87 +92562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66015] = 35, + [66960] = 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(223), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, - anon_sym_POUND_QMARK, - ACTIONS(258), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(6848), 1, + ACTIONS(6745), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6846), 3, + ACTIONS(5195), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5209), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6743), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2611), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1767), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -91346,7 +92662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66150] = 35, + [67095] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -91355,178 +92671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, - anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5799), 1, + anon_sym_POUND, + ACTIONS(5803), 1, + anon_sym_LPAREN, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(4842), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5320), 1, + ACTIONS(7001), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, + STATE(2947), 1, sym__bare_set_lit, - STATE(3066), 1, + STATE(3088), 1, sym_sym_lit, - ACTIONS(4838), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6948), 2, - sym__ws, - sym_comment, - ACTIONS(5318), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(884), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2874), 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, - [66285] = 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(6954), 1, - sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, - sym_sym_lit, - STATE(2810), 1, - aux_sym_list_lit_repeat1, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2867), 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, + ACTIONS(5821), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6950), 2, + ACTIONS(6997), 2, sym__ws, sym_comment, - ACTIONS(6952), 3, + ACTIONS(6999), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(751), 3, + STATE(691), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(657), 19, + STATE(2759), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -91546,7 +92762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66420] = 35, + [67230] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -91555,78 +92771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6960), 1, + ACTIONS(7005), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(2492), 1, sym_sym_lit, - STATE(2537), 1, + STATE(2647), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6956), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6958), 3, + ACTIONS(7003), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(676), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2021), 19, + STATE(2712), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -91646,87 +92862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66555] = 35, + [67365] = 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(223), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, - anon_sym_POUND_QMARK, - ACTIONS(258), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(6966), 1, + ACTIONS(7011), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6962), 2, + ACTIONS(5195), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5209), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(7007), 2, sym__ws, sym_comment, - ACTIONS(6964), 3, + ACTIONS(7009), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(679), 3, + STATE(912), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2723), 19, + STATE(1836), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -91746,87 +92962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66690] = 35, + [67500] = 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 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(4842), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5324), 1, + ACTIONS(7017), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4838), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5322), 3, + ACTIONS(7013), 2, + sym__ws, + sym_comment, + ACTIONS(7015), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(909), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2873), 19, + STATE(505), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -91846,7 +93062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66825] = 35, + [67635] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -91855,78 +93071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(4842), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5348), 1, + ACTIONS(7021), 1, sym_self_referential_reader_macro, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, + sym__bare_set_lit, STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4838), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6968), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5346), 3, + ACTIONS(7019), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(886), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2912), 19, + STATE(2714), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -91946,87 +93162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66960] = 35, + [67770] = 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, - anon_sym_COLON_COLON, - ACTIONS(4834), 1, - anon_sym_DQUOTE, - ACTIONS(4836), 1, - aux_sym_sym_lit_token1, - ACTIONS(4840), 1, - anon_sym_POUND_QMARK, - ACTIONS(4842), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5352), 1, + ACTIONS(5951), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4838), 2, + ACTIONS(5195), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(5209), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5350), 3, + ACTIONS(5949), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2920), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1786), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -92046,87 +93262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67095] = 35, + [67905] = 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 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(4842), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5580), 1, + ACTIONS(7027), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4838), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5578), 3, + ACTIONS(7023), 2, + sym__ws, + sym_comment, + ACTIONS(7025), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(652), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2943), 19, + STATE(802), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -92146,87 +93362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67230] = 35, + [68040] = 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 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(4842), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5756), 1, + ACTIONS(7031), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4838), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6970), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5754), 3, + ACTIONS(7029), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(892), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2964), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(500), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -92246,87 +93462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67365] = 35, + [68175] = 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 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(4842), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5844), 1, + ACTIONS(7037), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4838), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6972), 2, + ACTIONS(7033), 2, sym__ws, sym_comment, - ACTIONS(5842), 3, + ACTIONS(7035), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(894), 3, + STATE(916), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2965), 19, + STATE(496), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -92346,7 +93562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67500] = 35, + [68310] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -92385,19 +93601,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6976), 1, + ACTIONS(7043), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -92411,22 +93627,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(7039), 2, sym__ws, sym_comment, - ACTIONS(6974), 3, + ACTIONS(7041), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(919), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(935), 19, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(495), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -92446,87 +93662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67635] = 35, + [68445] = 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5189), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, - anon_sym_COLON_COLON, - ACTIONS(4834), 1, - anon_sym_DQUOTE, - ACTIONS(4836), 1, - aux_sym_sym_lit_token1, - ACTIONS(4840), 1, - anon_sym_POUND_QMARK, - ACTIONS(4842), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5848), 1, + ACTIONS(5887), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(4838), 2, + ACTIONS(5195), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(5209), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5846), 3, + ACTIONS(5885), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2947), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1794), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -92546,7 +93762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67770] = 35, + [68580] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -92555,78 +93771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(4842), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(5880), 1, + ACTIONS(7047), 1, sym_self_referential_reader_macro, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, + sym__bare_set_lit, STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4838), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5878), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(7045), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2966), 19, + STATE(2715), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -92646,7 +93862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67905] = 35, + [68715] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -92655,78 +93871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4877), 1, anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(6982), 1, + ACTIONS(7051), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(1072), 1, + sym_sym_lit, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6978), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6980), 3, + ACTIONS(7049), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(681), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2725), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(10), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -92746,7 +93962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68040] = 35, + [68850] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -92755,78 +93971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, + ACTIONS(2675), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(2679), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4859), 1, anon_sym_COLON, - ACTIONS(4692), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(6988), 1, + ACTIONS(7055), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1484), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(1486), 1, + sym_sym_lit, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2722), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2728), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6984), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6986), 3, + ACTIONS(7053), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(688), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2721), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(267), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -92846,87 +94062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68175] = 35, + [68985] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 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(4842), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(5888), 1, + ACTIONS(7059), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4838), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5886), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(7057), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2875), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(492), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -92946,7 +94162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68310] = 35, + [69120] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -92955,78 +94171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, - anon_sym_POUND, - ACTIONS(4828), 1, - aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(4842), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(5908), 1, + ACTIONS(5665), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(1966), 1, + sym__bare_set_lit, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, + STATE(2864), 1, sym_sym_lit, - ACTIONS(4838), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4856), 2, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6990), 2, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(7061), 2, sym__ws, sym_comment, - ACTIONS(5906), 3, + ACTIONS(5663), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(895), 3, + STATE(945), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2931), 19, + STATE(1958), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -93046,7 +94262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68445] = 35, + [69255] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -93055,78 +94271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, - anon_sym_POUND, - ACTIONS(4828), 1, - aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(4842), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(5912), 1, + ACTIONS(5693), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(1966), 1, + sym__bare_set_lit, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, + STATE(2864), 1, sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4838), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4856), 2, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5910), 3, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(7063), 2, + sym__ws, + sym_comment, + ACTIONS(5691), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(948), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2911), 19, + STATE(1956), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -93146,87 +94362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68580] = 35, + [69390] = 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 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(4842), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6062), 1, + ACTIONS(7067), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4838), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6992), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6060), 3, + ACTIONS(7065), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(899), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2898), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(490), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -93246,7 +94462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68715] = 35, + [69525] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -93255,78 +94471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, - anon_sym_POUND, - ACTIONS(4828), 1, - aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(4842), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(6068), 1, + ACTIONS(5699), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(1966), 1, + sym__bare_set_lit, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, + STATE(2864), 1, sym_sym_lit, - ACTIONS(4838), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4856), 2, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6994), 2, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(7069), 2, sym__ws, sym_comment, - ACTIONS(6066), 3, + ACTIONS(5697), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(900), 3, + STATE(959), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2896), 19, + STATE(1954), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -93346,7 +94562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68850] = 35, + [69660] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -93355,78 +94571,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, - anon_sym_POUND, - ACTIONS(227), 1, - aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(7000), 1, + ACTIONS(5705), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6996), 2, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(7071), 2, sym__ws, sym_comment, - ACTIONS(6998), 3, + ACTIONS(5703), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(690), 3, + STATE(965), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2720), 19, + STATE(1952), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -93446,87 +94662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68985] = 35, + [69795] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 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(4842), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6126), 1, + ACTIONS(7077), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4838), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7002), 2, + ACTIONS(7073), 2, sym__ws, sym_comment, - ACTIONS(6124), 3, + ACTIONS(7075), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(903), 3, + STATE(924), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2895), 19, + STATE(658), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -93546,7 +94762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69120] = 35, + [69930] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -93555,78 +94771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, - anon_sym_POUND, - ACTIONS(4828), 1, - aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(4842), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(6198), 1, + ACTIONS(5747), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(1966), 1, + sym__bare_set_lit, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, + STATE(2864), 1, sym_sym_lit, - ACTIONS(4838), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4856), 2, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7004), 2, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(7079), 2, sym__ws, sym_comment, - ACTIONS(6196), 3, + ACTIONS(5745), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(905), 3, + STATE(968), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2890), 19, + STATE(1950), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -93646,87 +94862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69255] = 35, + [70065] = 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(65), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(69), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 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(95), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, - anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7010), 1, + ACTIONS(7083), 1, sym_self_referential_reader_macro, - STATE(1027), 1, - sym__bare_set_lit, - STATE(1062), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2775), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7006), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(7008), 3, + ACTIONS(7081), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(696), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(32), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(664), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -93746,87 +94962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69390] = 35, + [70200] = 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(2650), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(2654), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 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(2680), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7016), 1, + ACTIONS(7089), 1, sym_self_referential_reader_macro, - STATE(1319), 1, - sym__bare_set_lit, - STATE(1321), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2808), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(2676), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7012), 2, + ACTIONS(7085), 2, sym__ws, sym_comment, - ACTIONS(7014), 3, + ACTIONS(7087), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(697), 3, + STATE(927), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1320), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(224), 19, + STATE(675), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -93846,87 +95062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69525] = 35, + [70335] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 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(4842), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6266), 1, + ACTIONS(7095), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4838), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6264), 3, + ACTIONS(7091), 2, + sym__ws, + sym_comment, + ACTIONS(7093), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(935), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2887), 19, + STATE(676), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -93946,87 +95162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69660] = 35, + [70470] = 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 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(4842), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6326), 1, + ACTIONS(7099), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4838), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6324), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(7097), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2885), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(681), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -94046,87 +95262,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69795] = 35, + [70605] = 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(217), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(230), 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(245), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4877), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(7022), 1, + ACTIONS(7105), 1, sym_self_referential_reader_macro, - STATE(1792), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1795), 1, + STATE(1072), 1, sym_sym_lit, - STATE(2810), 1, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7018), 2, + ACTIONS(7101), 2, sym__ws, sym_comment, - ACTIONS(7020), 3, + ACTIONS(7103), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(851), 3, + STATE(482), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(847), 19, + STATE(1066), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -94146,7 +95362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69930] = 35, + [70740] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -94155,78 +95371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(4842), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6352), 1, + ACTIONS(7109), 1, sym_self_referential_reader_macro, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, + sym__bare_set_lit, STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4838), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6350), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(7107), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2878), 19, + STATE(2689), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -94246,7 +95462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70065] = 35, + [70875] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -94255,78 +95471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(4842), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6404), 1, + ACTIONS(6065), 1, sym_self_referential_reader_macro, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, + sym__bare_set_lit, STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4838), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(6402), 3, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(6063), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2877), 19, + STATE(2516), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -94346,7 +95562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70200] = 35, + [71010] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -94385,19 +95601,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7026), 1, + ACTIONS(7115), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -94411,22 +95627,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(7111), 2, sym__ws, sym_comment, - ACTIONS(7024), 3, + ACTIONS(7113), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(932), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(932), 19, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(476), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -94446,187 +95662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70335] = 35, + [71145] = 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 1, - anon_sym_POUND_QMARK, - ACTIONS(4842), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, - anon_sym_SQUOTE, - ACTIONS(4848), 1, - anon_sym_BQUOTE, - ACTIONS(4850), 1, - anon_sym_COMMA_AT, - ACTIONS(4852), 1, - anon_sym_COMMA, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(6666), 1, - sym_self_referential_reader_macro, - STATE(2804), 1, - aux_sym_list_lit_repeat1, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4838), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4860), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(6664), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2940), 19, - sym__form, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_lit, - sym_list_lit, - sym_vec_lit, - sym_set_lit, - sym_read_cond_lit, - sym_splicing_read_cond_lit, - sym_var_quoting_lit, - sym_quoting_lit, - sym_syn_quoting_lit, - sym_unquote_splicing_lit, - sym_unquoting_lit, - sym_path_lit, - sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [70470] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(65), 1, - anon_sym_POUND, - ACTIONS(69), 1, - aux_sym_num_lit_token1, - ACTIONS(74), 1, - anon_sym_COLON_COLON, - ACTIONS(76), 1, - anon_sym_DQUOTE, - ACTIONS(78), 1, - aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, - anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7030), 1, + ACTIONS(7119), 1, sym_self_referential_reader_macro, - STATE(1027), 1, - sym__bare_set_lit, - STATE(1062), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2775), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(7028), 3, + ACTIONS(7117), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1080), 19, + STATE(471), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -94646,7 +95762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70605] = 35, + [71280] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -94655,78 +95771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, - anon_sym_POUND, - ACTIONS(4828), 1, - aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(4842), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(6238), 1, + ACTIONS(6281), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(1966), 1, + sym__bare_set_lit, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, + STATE(2864), 1, sym_sym_lit, - ACTIONS(4838), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4856), 2, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7032), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6236), 3, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6279), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(913), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2932), 19, + STATE(1905), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -94746,87 +95862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70740] = 35, + [71415] = 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 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(4842), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6224), 1, + ACTIONS(7125), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4838), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7034), 2, + ACTIONS(7121), 2, sym__ws, sym_comment, - ACTIONS(6222), 3, + ACTIONS(7123), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(914), 3, + STATE(937), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2922), 19, + STATE(467), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -94846,87 +95962,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70875] = 35, + [71550] = 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(223), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 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(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6852), 1, + ACTIONS(7129), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6850), 3, + ACTIONS(7127), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2612), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(686), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -94946,87 +96062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71010] = 35, + [71685] = 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 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(4842), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6218), 1, + ACTIONS(7135), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4838), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7036), 2, + ACTIONS(7131), 2, sym__ws, sym_comment, - ACTIONS(6216), 3, + ACTIONS(7133), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(916), 3, + STATE(939), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2879), 19, + STATE(466), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -95046,87 +96162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71145] = 35, + [71820] = 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 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(4842), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6212), 1, + ACTIONS(7139), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4838), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7038), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6210), 3, + ACTIONS(7137), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(917), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2880), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(461), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -95146,7 +96262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71280] = 35, + [71955] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -95155,78 +96271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, - anon_sym_POUND, - ACTIONS(227), 1, - aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(6868), 1, + ACTIONS(5777), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6866), 3, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5775), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2613), 19, + STATE(1906), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -95246,7 +96362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71415] = 35, + [72090] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -95285,19 +96401,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7042), 1, + ACTIONS(7143), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -95311,22 +96427,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(7040), 3, + ACTIONS(7141), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(856), 19, + STATE(458), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -95346,7 +96462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71550] = 35, + [72225] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -95355,78 +96471,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(173), 1, anon_sym_POUND, - ACTIONS(4828), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(185), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 1, + ACTIONS(189), 1, anon_sym_POUND_QMARK, - ACTIONS(4842), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(4446), 1, + anon_sym_COLON, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(6192), 1, + ACTIONS(7149), 1, sym_self_referential_reader_macro, - STATE(2804), 1, + STATE(1158), 1, + sym_sym_lit, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4838), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7044), 2, + ACTIONS(7145), 2, sym__ws, sym_comment, - ACTIONS(6190), 3, + ACTIONS(7147), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(919), 3, + STATE(438), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2882), 19, + STATE(1200), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -95446,87 +96562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71685] = 35, + [72360] = 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(825), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 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(843), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7048), 1, + ACTIONS(6671), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1150), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(7046), 3, + ACTIONS(6669), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1135), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1153), 19, + STATE(1808), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -95546,87 +96662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71820] = 35, + [72495] = 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(4830), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(5908), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(7153), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7050), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(5906), 3, + ACTIONS(7151), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(621), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2931), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(762), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -95646,87 +96762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71955] = 35, + [72630] = 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(825), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 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(843), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7054), 1, + ACTIONS(7159), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1150), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(7155), 2, sym__ws, sym_comment, - ACTIONS(7052), 3, + ACTIONS(7157), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1135), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(946), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1154), 19, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(424), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -95746,87 +96862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72090] = 35, + [72765] = 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(825), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 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(843), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7060), 1, + ACTIONS(7011), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1150), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7056), 2, + ACTIONS(7161), 2, sym__ws, sym_comment, - ACTIONS(7058), 3, + ACTIONS(7009), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(929), 3, + STATE(586), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1135), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1166), 19, + STATE(1836), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -95846,7 +96962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72225] = 35, + [72900] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -95855,78 +96971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, - anon_sym_POUND, - ACTIONS(227), 1, - aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(6876), 1, + ACTIONS(5781), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7062), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6874), 3, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5779), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(813), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2615), 19, + STATE(1938), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -95946,87 +97062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72360] = 35, + [73035] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(825), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 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(843), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7066), 1, + ACTIONS(7165), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1150), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(7064), 3, + ACTIONS(7163), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1135), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1167), 19, + STATE(417), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -96046,87 +97162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72495] = 35, + [73170] = 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(825), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 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(843), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7072), 1, + ACTIONS(7171), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1150), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7068), 2, + ACTIONS(7167), 2, sym__ws, sym_comment, - ACTIONS(7070), 3, + ACTIONS(7169), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(931), 3, + STATE(950), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1135), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1170), 19, + STATE(700), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -96146,7 +97262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72630] = 35, + [73305] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -96155,78 +97271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, - anon_sym_POUND, - ACTIONS(227), 1, - aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(6880), 1, + ACTIONS(5793), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6878), 3, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5791), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2616), 19, + STATE(1891), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -96246,87 +97362,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72765] = 35, + [73440] = 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(4830), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5652), 1, - anon_sym_POUND, - ACTIONS(5654), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(5912), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(7177), 1, sym_self_referential_reader_macro, - STATE(2798), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3066), 1, - sym_sym_lit, - ACTIONS(4738), 2, - sym__ws, - sym_comment, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5910), 3, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7173), 2, + sym__ws, + sym_comment, + ACTIONS(7175), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(951), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2911), 19, + STATE(434), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -96346,87 +97462,187 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72900] = 35, + [73575] = 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(825), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(7181), 1, + sym_self_referential_reader_macro, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, + aux_sym_list_lit_repeat1, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2892), 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(4829), 2, + sym__ws, + sym_comment, + ACTIONS(7179), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(451), 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, + [73710] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 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(843), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7076), 1, + ACTIONS(7185), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1150), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(7074), 3, + ACTIONS(7183), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1135), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1179), 19, + STATE(521), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -96446,7 +97662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73035] = 35, + [73845] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -96455,78 +97671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, - anon_sym_POUND, - ACTIONS(227), 1, - aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(6912), 1, + ACTIONS(6267), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(7187), 2, sym__ws, sym_comment, - ACTIONS(6910), 3, + ACTIONS(6265), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(933), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2630), 19, + STATE(1910), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -96546,7 +97762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73170] = 35, + [73980] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -96555,78 +97771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(65), 1, - anon_sym_POUND, - ACTIONS(69), 1, - aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, - anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(7082), 1, + ACTIONS(6261), 1, sym_self_referential_reader_macro, - STATE(1027), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(1062), 1, - sym_sym_lit, - STATE(2775), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(91), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7078), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(7080), 3, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6259), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(920), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1015), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1007), 19, + STATE(1911), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -96646,7 +97862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73305] = 35, + [74115] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -96655,78 +97871,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(825), 1, + ACTIONS(2945), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(2949), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 1, + ACTIONS(2959), 1, + anon_sym_LPAREN, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(843), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(4353), 1, + ACTIONS(5025), 1, anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(7086), 1, + ACTIONS(7193), 1, sym_self_referential_reader_macro, - STATE(1129), 1, - sym_sym_lit, - STATE(1150), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2766), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(7189), 2, sym__ws, sym_comment, - ACTIONS(7084), 3, + ACTIONS(7191), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1135), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(433), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1181), 19, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2781), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -96746,7 +97962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73440] = 35, + [74250] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -96785,19 +98001,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7092), 1, + ACTIONS(7199), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -96811,22 +98027,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7088), 2, + ACTIONS(7195), 2, sym__ws, sym_comment, - ACTIONS(7090), 3, + ACTIONS(7197), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(927), 3, + STATE(942), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(865), 19, + STATE(741), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -96846,7 +98062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73575] = 35, + [74385] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -96855,78 +98071,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(825), 1, - anon_sym_POUND, - ACTIONS(829), 1, - aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(843), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(7098), 1, + ACTIONS(6247), 1, sym_self_referential_reader_macro, - STATE(1129), 1, - sym_sym_lit, - STATE(1150), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7094), 2, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(7201), 2, sym__ws, sym_comment, - ACTIONS(7096), 3, + ACTIONS(6245), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(619), 3, + STATE(938), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1135), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1218), 19, + STATE(1912), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -96946,87 +98162,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73710] = 35, + [74520] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(825), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 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(843), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7104), 1, + ACTIONS(7207), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1150), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7100), 2, + ACTIONS(7203), 2, sym__ws, sym_comment, - ACTIONS(7102), 3, + ACTIONS(7205), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(934), 3, + STATE(960), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1135), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1203), 19, + STATE(600), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -97046,7 +98262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73845] = 35, + [74655] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -97055,78 +98271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(825), 1, - anon_sym_POUND, - ACTIONS(829), 1, - aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(843), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(7110), 1, + ACTIONS(6239), 1, sym_self_referential_reader_macro, - STATE(1129), 1, - sym_sym_lit, - STATE(1150), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7106), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(7108), 3, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6237), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(938), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1135), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1210), 19, + STATE(1913), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -97146,7 +98362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73980] = 35, + [74790] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -97155,78 +98371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(825), 1, - anon_sym_POUND, - ACTIONS(829), 1, - aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(843), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(7114), 1, + ACTIONS(5825), 1, sym_self_referential_reader_macro, - STATE(1129), 1, - sym_sym_lit, - STATE(1150), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(7112), 3, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5823), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1135), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1212), 19, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1936), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -97246,87 +98462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74115] = 35, + [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(223), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 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(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6890), 1, + ACTIONS(7211), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7116), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6888), 3, + ACTIONS(7209), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(923), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2621), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(641), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -97346,87 +98562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74250] = 35, + [75060] = 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(825), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 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(843), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7120), 1, + ACTIONS(7217), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1150), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(7213), 2, sym__ws, sym_comment, - ACTIONS(7118), 3, + ACTIONS(7215), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1135), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(858), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1213), 19, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(859), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -97446,87 +98662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74385] = 35, + [75195] = 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(825), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 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(843), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7124), 1, + ACTIONS(7223), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1150), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(7219), 2, sym__ws, sym_comment, - ACTIONS(7122), 3, + ACTIONS(7221), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1135), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(972), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1215), 19, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(667), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -97546,87 +98762,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74520] = 35, + [75330] = 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(223), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 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(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6908), 1, + ACTIONS(7229), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(7225), 2, sym__ws, sym_comment, - ACTIONS(6906), 3, + ACTIONS(7227), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(974), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2629), 19, + STATE(673), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -97646,87 +98862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74655] = 35, + [75465] = 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(825), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 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(843), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7130), 1, + ACTIONS(6873), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1150), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7126), 2, + ACTIONS(7231), 2, sym__ws, sym_comment, - ACTIONS(7128), 3, + ACTIONS(6871), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(941), 3, + STATE(867), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1135), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1222), 19, + STATE(1819), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -97746,7 +98962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74790] = 35, + [75600] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -97755,78 +98971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, - anon_sym_POUND, - ACTIONS(227), 1, - aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(7134), 1, + ACTIONS(5897), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(7132), 3, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5895), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2680), 19, + STATE(1935), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -97846,87 +99062,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74925] = 35, + [75735] = 35, ACTIONS(9), 1, anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(825), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 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(843), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7138), 1, + ACTIONS(6867), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1150), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(7233), 2, sym__ws, sym_comment, - ACTIONS(7136), 3, + ACTIONS(6865), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1135), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1951), 3, + STATE(871), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1223), 19, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1855), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -97946,7 +99162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75060] = 35, + [75870] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -97985,19 +99201,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7144), 1, + ACTIONS(6817), 1, sym_self_referential_reader_macro, - STATE(1792), 1, - sym__bare_set_lit, - STATE(1795), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2810), 1, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -98011,22 +99227,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7140), 2, + ACTIONS(7235), 2, sym__ws, sym_comment, - ACTIONS(7142), 3, + ACTIONS(6815), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(503), 3, + STATE(875), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(896), 19, + STATE(1792), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -98046,7 +99262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75195] = 35, + [76005] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -98055,78 +99271,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, - anon_sym_POUND, - ACTIONS(227), 1, - aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(7148), 1, + ACTIONS(5901), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(7146), 3, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5899), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2674), 19, + STATE(1934), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -98146,7 +99362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75330] = 35, + [76140] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -98155,78 +99371,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, - anon_sym_POUND, - ACTIONS(227), 1, - aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(5087), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(6904), 1, + ACTIONS(6235), 1, sym_self_referential_reader_macro, - STATE(2159), 1, - sym_sym_lit, - STATE(2537), 1, + STATE(1966), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2864), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7150), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6902), 3, + ACTIONS(5093), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5111), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6233), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(936), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2627), 19, + STATE(1915), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -98246,87 +99462,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75465] = 35, + [76275] = 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(223), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 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(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7154), 1, + ACTIONS(6811), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4738), 2, + ACTIONS(7237), 2, sym__ws, sym_comment, - ACTIONS(7152), 3, + ACTIONS(6809), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1951), 3, + STATE(882), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2671), 19, + STATE(1873), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -98346,87 +99562,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75600] = 35, + [76410] = 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(223), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 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(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7160), 1, + ACTIONS(6793), 1, sym_self_referential_reader_macro, - STATE(2159), 1, + STATE(1777), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2789), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7156), 2, + ACTIONS(7239), 2, sym__ws, sym_comment, - ACTIONS(7158), 3, + ACTIONS(6791), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(623), 3, + STATE(885), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2670), 19, + STATE(1872), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -98446,87 +99662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75735] = 35, + [76545] = 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(825), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(829), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 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(843), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7166), 1, + ACTIONS(7243), 1, sym_self_referential_reader_macro, - STATE(1129), 1, + STATE(1777), 1, sym_sym_lit, - STATE(1150), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(855), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7162), 2, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(7164), 3, + ACTIONS(7241), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(946), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1135), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1235), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(682), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -98546,7 +99762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75870] = 35, + [76680] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -98555,78 +99771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, + ACTIONS(5087), 1, anon_sym_POUND, - ACTIONS(5196), 1, + ACTIONS(5091), 1, aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(5107), 1, anon_sym_cl, - ACTIONS(6238), 1, + ACTIONS(5957), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(1966), 1, + sym__bare_set_lit, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, + STATE(2864), 1, sym_sym_lit, - ACTIONS(4856), 2, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4862), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(5093), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(5111), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7168), 2, + ACTIONS(7245), 2, sym__ws, sym_comment, - ACTIONS(6236), 3, + ACTIONS(5955), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(684), 3, + STATE(445), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2932), 19, + STATE(1932), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -98646,87 +99862,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76005] = 35, + [76815] = 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(4706), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(6224), 1, + ACTIONS(7249), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(1777), 1, + sym_sym_lit, + STATE(1782), 1, + sym__bare_set_lit, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7170), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6222), 3, + ACTIONS(7247), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(698), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2922), 19, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(688), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -98746,7 +99962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76140] = 35, + [76950] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -98755,78 +99971,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(6218), 1, + ACTIONS(7253), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(2492), 1, + sym_sym_lit, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7172), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4829), 2, sym__ws, sym_comment, - ACTIONS(6216), 3, + ACTIONS(7251), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(705), 3, + STATE(1908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2879), 19, + STATE(2716), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -98846,93 +100062,92 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76275] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, + [77085] = 37, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(2679), 1, + aux_sym_num_lit_token1, + ACTIONS(2684), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(2686), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(2688), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(2703), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(2705), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(2707), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(2709), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(2711), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(2713), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(2715), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(4859), 1, + anon_sym_COLON, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, anon_sym_cl, - ACTIONS(6212), 1, + ACTIONS(7255), 1, + anon_sym_POUND, + ACTIONS(7257), 1, + aux_sym__form_token1, + ACTIONS(7261), 1, + aux_sym_char_lit_token1, + ACTIONS(7263), 1, + anon_sym_LBRACE, + ACTIONS(7265), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(1479), 1, + sym_list_lit, + STATE(1480), 1, + sym_sym_lit, + STATE(1484), 1, + sym__bare_set_lit, + STATE(2831), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + STATE(3039), 1, + sym_array_dimension, + ACTIONS(2701), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(2722), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2726), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7174), 2, - sym__ws, - sym_comment, - ACTIONS(6210), 3, + ACTIONS(2728), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7259), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(717), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2880), 19, - sym__form, + STATE(1482), 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, @@ -98946,93 +100161,92 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76410] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, + [77221] = 37, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(2949), 1, + aux_sym_num_lit_token1, + ACTIONS(2953), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(2955), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(2957), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(2963), 1, anon_sym_POUND_QMARK, - ACTIONS(5192), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, + ACTIONS(2965), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, + ACTIONS(2967), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, + ACTIONS(2969), 1, anon_sym_SQUOTE, - ACTIONS(5206), 1, + ACTIONS(2971), 1, anon_sym_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(2973), 1, anon_sym_COMMA_AT, - ACTIONS(5210), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5027), 1, anon_sym_cl, - ACTIONS(6192), 1, + ACTIONS(7267), 1, + anon_sym_POUND, + ACTIONS(7269), 1, + aux_sym__form_token1, + ACTIONS(7273), 1, + aux_sym_char_lit_token1, + ACTIONS(7275), 1, + anon_sym_LBRACE, + ACTIONS(7277), 1, sym_self_referential_reader_macro, - STATE(2785), 1, + STATE(1962), 1, + sym_list_lit, + STATE(1966), 1, + sym__bare_set_lit, + STATE(2769), 1, + sym_sym_lit, + STATE(2803), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3019), 1, - sym_sym_lit, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, + STATE(3014), 1, + sym_array_dimension, + ACTIONS(2961), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5216), 2, + ACTIONS(2983), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2987), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7176), 2, - sym__ws, - sym_comment, - ACTIONS(6190), 3, + ACTIONS(2989), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7271), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(773), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2918), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2882), 19, - sym__form, + STATE(1964), 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, @@ -99046,93 +100260,92 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76545] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, + [77357] = 37, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(825), 1, - anon_sym_POUND, - ACTIONS(829), 1, - aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(843), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4835), 1, + aux_sym_num_lit_token1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4841), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(4843), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(4845), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(4847), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(4849), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(7182), 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(1129), 1, + STATE(2496), 1, sym_sym_lit, - STATE(1150), 1, + STATE(2640), 1, + sym_list_lit, + STATE(2647), 1, sym__bare_set_lit, - STATE(2796), 1, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(839), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(855), 2, + STATE(3025), 1, + sym_array_dimension, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(859), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(861), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7178), 2, - sym__ws, - sym_comment, - ACTIONS(7180), 3, + ACTIONS(4839), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4855), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(7283), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(948), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1135), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1236), 19, - sym__form, + STATE(2551), 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, @@ -99146,93 +100359,92 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76680] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, + [77493] = 37, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(223), 1, - anon_sym_POUND, - ACTIONS(227), 1, + ACTIONS(4795), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, anon_sym_POUND_QMARK, - ACTIONS(258), 1, + ACTIONS(4811), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(4813), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(4815), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(4817), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(4819), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4823), 1, anon_sym_cl, - ACTIONS(6896), 1, + ACTIONS(7291), 1, + anon_sym_POUND, + 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(2159), 1, - sym_sym_lit, - STATE(2537), 1, - sym__bare_set_lit, - STATE(2789), 1, + STATE(2816), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - ACTIONS(254), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(279), 2, + STATE(2899), 1, + sym_list_lit, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3001), 1, + sym_array_dimension, + STATE(3085), 1, + sym_sym_lit, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7184), 2, - sym__ws, - sym_comment, - ACTIONS(6894), 3, + ACTIONS(4807), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4827), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(7295), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(926), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2536), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2623), 19, - sym__form, + STATE(2897), 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, @@ -99246,88 +100458,88 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76815] = 37, + [77629] = 37, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2654), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(2659), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(2661), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(2678), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(2680), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2682), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2684), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(2688), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(2690), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(4784), 1, - anon_sym_COLON, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(7186), 1, - anon_sym_POUND, - ACTIONS(7188), 1, - aux_sym__form_token1, - ACTIONS(7192), 1, + ACTIONS(7297), 1, aux_sym_char_lit_token1, - ACTIONS(7194), 1, + ACTIONS(7299), 1, anon_sym_LBRACE, - ACTIONS(7196), 1, + ACTIONS(7301), 1, sym_self_referential_reader_macro, - STATE(1314), 1, - sym_list_lit, - STATE(1315), 1, - sym_sym_lit, - STATE(1319), 1, - sym__bare_set_lit, - STATE(2808), 1, + ACTIONS(7303), 1, + anon_sym_POUND, + ACTIONS(7305), 1, + aux_sym__form_token1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(3025), 1, + STATE(2899), 1, + sym_list_lit, + STATE(2947), 1, + sym__bare_set_lit, + STATE(3011), 1, + sym_sym_lit, + STATE(3031), 1, sym_array_dimension, - ACTIONS(2676), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2697), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2701), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2703), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7190), 3, + ACTIONS(7295), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1320), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1317), 17, + STATE(2897), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -99345,88 +100557,88 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76951] = 37, + [77765] = 37, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2316), 1, + ACTIONS(177), 1, aux_sym_num_lit_token1, - ACTIONS(2320), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(2322), 1, + ACTIONS(183), 1, anon_sym_DQUOTE, - ACTIONS(2324), 1, + ACTIONS(185), 1, aux_sym_sym_lit_token1, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(189), 1, anon_sym_POUND_QMARK, - ACTIONS(2332), 1, + ACTIONS(191), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(2334), 1, + ACTIONS(193), 1, anon_sym_POUND_SQUOTE, - ACTIONS(2336), 1, + ACTIONS(195), 1, anon_sym_SQUOTE, - ACTIONS(2338), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(2340), 1, + ACTIONS(199), 1, anon_sym_COMMA_AT, - ACTIONS(2342), 1, + ACTIONS(201), 1, anon_sym_COMMA, - ACTIONS(6704), 1, + ACTIONS(4446), 1, anon_sym_COLON, - ACTIONS(6706), 1, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, anon_sym_cl, - ACTIONS(7198), 1, + ACTIONS(7307), 1, anon_sym_POUND, - ACTIONS(7200), 1, + ACTIONS(7309), 1, aux_sym__form_token1, - ACTIONS(7204), 1, + ACTIONS(7313), 1, aux_sym_char_lit_token1, - ACTIONS(7206), 1, + ACTIONS(7315), 1, anon_sym_LBRACE, - ACTIONS(7208), 1, + ACTIONS(7317), 1, sym_self_referential_reader_macro, - STATE(1927), 1, - sym__bare_set_lit, - STATE(1933), 1, - sym_list_lit, - STATE(2743), 1, + STATE(1135), 1, sym_sym_lit, - STATE(2781), 1, + STATE(1136), 1, + sym_list_lit, + STATE(1201), 1, + sym__bare_set_lit, + STATE(2817), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2976), 1, + STATE(3018), 1, sym_array_dimension, - ACTIONS(2328), 2, + ACTIONS(187), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(2350), 2, + ACTIONS(203), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(2354), 2, + ACTIONS(207), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2356), 2, + ACTIONS(209), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7202), 3, + ACTIONS(7311), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1930), 17, + STATE(1207), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -99444,286 +100656,88 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77087] = 37, + [77901] = 37, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(829), 1, + ACTIONS(221), 1, aux_sym_num_lit_token1, - ACTIONS(833), 1, + ACTIONS(226), 1, anon_sym_COLON_COLON, - ACTIONS(835), 1, + ACTIONS(228), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(841), 1, + ACTIONS(245), 1, anon_sym_POUND_QMARK, - ACTIONS(843), 1, + ACTIONS(247), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(845), 1, + ACTIONS(249), 1, anon_sym_POUND_SQUOTE, - ACTIONS(847), 1, + ACTIONS(251), 1, anon_sym_SQUOTE, - ACTIONS(849), 1, + ACTIONS(253), 1, anon_sym_BQUOTE, - ACTIONS(851), 1, + ACTIONS(255), 1, anon_sym_COMMA_AT, - ACTIONS(853), 1, + ACTIONS(257), 1, anon_sym_COMMA, - ACTIONS(4353), 1, - anon_sym_COLON, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, - anon_sym_cl, - ACTIONS(7210), 1, - anon_sym_POUND, - ACTIONS(7212), 1, - aux_sym__form_token1, - ACTIONS(7216), 1, - aux_sym_char_lit_token1, - ACTIONS(7218), 1, - anon_sym_LBRACE, - ACTIONS(7220), 1, - sym_self_referential_reader_macro, - STATE(1150), 1, - sym__bare_set_lit, - STATE(1190), 1, - sym_sym_lit, - STATE(1193), 1, - sym_list_lit, - STATE(2796), 1, - aux_sym_list_lit_repeat1, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2974), 1, - sym_array_dimension, - ACTIONS(839), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(855), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(859), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(861), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(7214), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1135), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1176), 17, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_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, - [77223] = 37, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4706), 1, + ACTIONS(4877), 1, anon_sym_COLON, - ACTIONS(4708), 1, - anon_sym_COLON_COLON, - ACTIONS(4710), 1, - anon_sym_DQUOTE, - ACTIONS(4712), 1, - aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, - anon_sym_POUND_QMARK, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5200), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5202), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(5204), 1, - anon_sym_SQUOTE, - ACTIONS(5206), 1, - anon_sym_BQUOTE, - ACTIONS(5208), 1, - anon_sym_COMMA_AT, - ACTIONS(5210), 1, - anon_sym_COMMA, - ACTIONS(5212), 1, + ACTIONS(4881), 1, anon_sym_cl, - ACTIONS(7222), 1, + ACTIONS(7319), 1, anon_sym_POUND, - ACTIONS(7224), 1, + ACTIONS(7321), 1, aux_sym__form_token1, - ACTIONS(7228), 1, + ACTIONS(7325), 1, aux_sym_char_lit_token1, - ACTIONS(7230), 1, + ACTIONS(7327), 1, anon_sym_LBRACE, - ACTIONS(7232), 1, + ACTIONS(7329), 1, sym_self_referential_reader_macro, - STATE(2785), 1, - aux_sym_list_lit_repeat1, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2893), 1, + STATE(1059), 1, sym_list_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(3007), 1, + STATE(1060), 1, sym_sym_lit, - STATE(3012), 1, - sym_array_dimension, - ACTIONS(4856), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5198), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(5216), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(7226), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(2918), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2902), 17, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_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, - [77359] = 37, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5426), 1, - aux_sym_num_lit_token1, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, - anon_sym_COLON_COLON, - ACTIONS(5432), 1, - anon_sym_DQUOTE, - ACTIONS(5434), 1, - aux_sym_sym_lit_token1, - ACTIONS(5436), 1, - anon_sym_LPAREN, - ACTIONS(5440), 1, - anon_sym_POUND_QMARK, - ACTIONS(5442), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5444), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(5446), 1, - anon_sym_SQUOTE, - ACTIONS(5448), 1, - anon_sym_BQUOTE, - ACTIONS(5450), 1, - anon_sym_COMMA_AT, - ACTIONS(5452), 1, - anon_sym_COMMA, - ACTIONS(5454), 1, - anon_sym_cl, - ACTIONS(7234), 1, - anon_sym_POUND, - ACTIONS(7236), 1, - aux_sym__form_token1, - ACTIONS(7240), 1, - aux_sym_char_lit_token1, - ACTIONS(7242), 1, - anon_sym_LBRACE, - ACTIONS(7244), 1, - sym_self_referential_reader_macro, - STATE(1651), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1656), 1, - sym_sym_lit, - STATE(1657), 1, - sym_list_lit, - STATE(2791), 1, + STATE(2797), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(3006), 1, + STATE(3049), 1, sym_array_dimension, - ACTIONS(5438), 2, + ACTIONS(243), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5456), 2, + ACTIONS(266), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(5460), 2, + ACTIONS(270), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(5462), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7238), 3, + ACTIONS(7323), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1650), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1654), 17, + STATE(1063), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -99741,88 +100755,88 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77495] = 37, + [78037] = 37, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4884), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token1, - ACTIONS(4886), 1, + ACTIONS(4969), 1, anon_sym_COLON, - ACTIONS(4888), 1, + ACTIONS(4971), 1, anon_sym_COLON_COLON, - ACTIONS(4890), 1, + ACTIONS(4973), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(4975), 1, aux_sym_sym_lit_token1, - ACTIONS(4894), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(4981), 1, anon_sym_POUND_QMARK, - ACTIONS(4900), 1, + ACTIONS(4983), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4902), 1, + ACTIONS(4985), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4904), 1, + ACTIONS(4987), 1, anon_sym_SQUOTE, - ACTIONS(4906), 1, + ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(4908), 1, + ACTIONS(4991), 1, anon_sym_COMMA_AT, - ACTIONS(4910), 1, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(4912), 1, + ACTIONS(4995), 1, anon_sym_cl, - ACTIONS(7246), 1, + ACTIONS(7331), 1, anon_sym_POUND, - ACTIONS(7248), 1, + ACTIONS(7333), 1, aux_sym__form_token1, - ACTIONS(7252), 1, + ACTIONS(7337), 1, aux_sym_char_lit_token1, - ACTIONS(7254), 1, + ACTIONS(7339), 1, anon_sym_LBRACE, - ACTIONS(7256), 1, + ACTIONS(7341), 1, sym_self_referential_reader_macro, - STATE(1470), 1, + STATE(1489), 1, sym_sym_lit, - STATE(1490), 1, + STATE(1497), 1, sym__bare_set_lit, - STATE(1493), 1, + STATE(1500), 1, sym_list_lit, - STATE(2792), 1, + STATE(2811), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2990), 1, + STATE(3027), 1, sym_array_dimension, - ACTIONS(4896), 2, + ACTIONS(4979), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4914), 2, + ACTIONS(4997), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4918), 2, + ACTIONS(5001), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4920), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7250), 3, + ACTIONS(7335), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1489), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1491), 17, + STATE(1498), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -99840,88 +100854,88 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77631] = 37, + [78173] = 37, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(69), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(74), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(76), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(78), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(93), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(95), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(97), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(99), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(101), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(105), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(5586), 1, - anon_sym_COLON, - ACTIONS(5588), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4851), 1, anon_sym_cl, - ACTIONS(7258), 1, + ACTIONS(7279), 1, anon_sym_POUND, - ACTIONS(7260), 1, + ACTIONS(7281), 1, aux_sym__form_token1, - ACTIONS(7264), 1, + ACTIONS(7285), 1, aux_sym_char_lit_token1, - ACTIONS(7266), 1, + ACTIONS(7287), 1, anon_sym_LBRACE, - ACTIONS(7268), 1, + ACTIONS(7289), 1, sym_self_referential_reader_macro, - STATE(996), 1, + STATE(2496), 1, sym_sym_lit, - STATE(1027), 1, - sym__bare_set_lit, - STATE(1121), 1, + STATE(2640), 1, sym_list_lit, - STATE(2775), 1, + STATE(2647), 1, + sym__bare_set_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2989), 1, + STATE(3025), 1, sym_array_dimension, - ACTIONS(91), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(114), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(118), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(120), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7262), 3, + ACTIONS(7283), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1015), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1005), 17, + STATE(2551), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -99939,88 +100953,88 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77767] = 37, + [78309] = 37, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(5196), 1, - aux_sym_num_lit_token1, - ACTIONS(5654), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(5658), 1, + ACTIONS(5091), 1, + aux_sym_num_lit_token1, + ACTIONS(5095), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5660), 1, + ACTIONS(5097), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(5099), 1, anon_sym_SQUOTE, - ACTIONS(5664), 1, + ACTIONS(5101), 1, anon_sym_BQUOTE, - ACTIONS(5666), 1, + ACTIONS(5103), 1, anon_sym_COMMA_AT, - ACTIONS(5668), 1, + ACTIONS(5105), 1, anon_sym_COMMA, - ACTIONS(7228), 1, + ACTIONS(5107), 1, + anon_sym_cl, + ACTIONS(7273), 1, aux_sym_char_lit_token1, - ACTIONS(7230), 1, + ACTIONS(7275), 1, anon_sym_LBRACE, - ACTIONS(7232), 1, + ACTIONS(7277), 1, sym_self_referential_reader_macro, - ACTIONS(7270), 1, + ACTIONS(7343), 1, anon_sym_POUND, - ACTIONS(7272), 1, + ACTIONS(7345), 1, aux_sym__form_token1, - STATE(2798), 1, + STATE(1962), 1, + sym_list_lit, + STATE(1966), 1, + sym__bare_set_lit, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2866), 1, + sym_sym_lit, + STATE(2892), 1, sym__metadata_lit, - STATE(2893), 1, - sym_list_lit, - STATE(2914), 1, - sym__bare_set_lit, - STATE(2996), 1, + STATE(3009), 1, sym_array_dimension, - STATE(3064), 1, - sym_sym_lit, - ACTIONS(4856), 2, + ACTIONS(2983), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4862), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(5198), 2, + ACTIONS(5093), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5670), 2, + ACTIONS(5111), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7226), 3, + ACTIONS(7271), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(2918), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2902), 17, + STATE(1964), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -100038,7 +101052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77903] = 37, + [78445] = 37, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -100061,43 +101075,43 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(4760), 1, + ACTIONS(5193), 1, aux_sym_num_lit_token1, - ACTIONS(4764), 1, + ACTIONS(5197), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4766), 1, + ACTIONS(5199), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(5201), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, + ACTIONS(5203), 1, anon_sym_COMMA_AT, - ACTIONS(4772), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(7274), 1, + ACTIONS(7347), 1, anon_sym_POUND, - ACTIONS(7276), 1, + ACTIONS(7349), 1, aux_sym__form_token1, - ACTIONS(7280), 1, + ACTIONS(7353), 1, aux_sym_char_lit_token1, - ACTIONS(7282), 1, + ACTIONS(7355), 1, anon_sym_LBRACE, - ACTIONS(7284), 1, + ACTIONS(7357), 1, sym_self_referential_reader_macro, - STATE(1772), 1, - sym_list_lit, - STATE(1773), 1, + STATE(1775), 1, sym_sym_lit, - STATE(1792), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2806), 1, + STATE(1793), 1, + sym_list_lit, + STATE(2822), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(3011), 1, + STATE(3016), 1, sym_array_dimension, ACTIONS(51), 2, anon_sym_POUNDP, @@ -100105,120 +101119,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4762), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(4776), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(7278), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1787), 17, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_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, - [78039] = 37, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(233), 1, - anon_sym_COLON_COLON, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(256), 1, - anon_sym_POUND_QMARK, - ACTIONS(258), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, - anon_sym_cl, - ACTIONS(5290), 1, - aux_sym_num_lit_token1, - ACTIONS(5294), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(5296), 1, - anon_sym_SQUOTE, - ACTIONS(5298), 1, - anon_sym_BQUOTE, - ACTIONS(5300), 1, - anon_sym_COMMA_AT, - ACTIONS(5302), 1, - anon_sym_COMMA, - ACTIONS(7286), 1, - anon_sym_POUND, - ACTIONS(7288), 1, - aux_sym__form_token1, - ACTIONS(7292), 1, - aux_sym_char_lit_token1, - ACTIONS(7294), 1, - anon_sym_LBRACE, - ACTIONS(7296), 1, - sym_self_referential_reader_macro, - STATE(2153), 1, - sym_sym_lit, - STATE(2537), 1, - sym__bare_set_lit, - STATE(2556), 1, - sym_list_lit, - STATE(2812), 1, - aux_sym_list_lit_repeat1, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(3002), 1, - sym_array_dimension, - ACTIONS(279), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(285), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(5292), 2, + ACTIONS(5195), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(5304), 2, + ACTIONS(5209), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7290), 3, + ACTIONS(7351), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2577), 17, + STATE(1789), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -100236,88 +101151,88 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78175] = 37, + [78581] = 37, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4828), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(4830), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(4834), 1, + ACTIONS(4801), 1, anon_sym_DQUOTE, - ACTIONS(4836), 1, + ACTIONS(4803), 1, aux_sym_sym_lit_token1, - ACTIONS(4840), 1, + ACTIONS(4823), 1, + anon_sym_cl, + ACTIONS(5803), 1, + anon_sym_LPAREN, + ACTIONS(5805), 1, anon_sym_POUND_QMARK, - ACTIONS(4842), 1, + ACTIONS(5807), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4844), 1, + ACTIONS(5809), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4846), 1, + ACTIONS(5811), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(5813), 1, anon_sym_BQUOTE, - ACTIONS(4850), 1, + ACTIONS(5815), 1, anon_sym_COMMA_AT, - ACTIONS(4852), 1, + ACTIONS(5817), 1, anon_sym_COMMA, - ACTIONS(4854), 1, - anon_sym_cl, - ACTIONS(7228), 1, + ACTIONS(7297), 1, aux_sym_char_lit_token1, - ACTIONS(7230), 1, + ACTIONS(7299), 1, anon_sym_LBRACE, - ACTIONS(7232), 1, + ACTIONS(7301), 1, sym_self_referential_reader_macro, - ACTIONS(7298), 1, + ACTIONS(7359), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(7361), 1, aux_sym__form_token1, - STATE(2804), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2893), 1, + STATE(2899), 1, sym_list_lit, - STATE(2914), 1, + STATE(2947), 1, sym__bare_set_lit, - STATE(2997), 1, + STATE(3003), 1, sym_array_dimension, - STATE(3064), 1, + STATE(3085), 1, sym_sym_lit, - ACTIONS(4838), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4856), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(4860), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(4862), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7226), 3, + ACTIONS(5821), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(7295), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(2918), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2902), 17, + STATE(2897), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -100335,88 +101250,88 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78311] = 37, + [78717] = 37, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4704), 1, + ACTIONS(5125), 1, aux_sym_num_lit_token1, - ACTIONS(4706), 1, + ACTIONS(5127), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(5129), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(5131), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(5133), 1, aux_sym_sym_lit_token1, - ACTIONS(4714), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(4718), 1, + ACTIONS(5139), 1, anon_sym_POUND_QMARK, - ACTIONS(4720), 1, + ACTIONS(5141), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(4722), 1, + ACTIONS(5143), 1, anon_sym_POUND_SQUOTE, - ACTIONS(4724), 1, + ACTIONS(5145), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(5147), 1, anon_sym_BQUOTE, - ACTIONS(4728), 1, + ACTIONS(5149), 1, anon_sym_COMMA_AT, - ACTIONS(4730), 1, + ACTIONS(5151), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(5153), 1, anon_sym_cl, - ACTIONS(7204), 1, + ACTIONS(7363), 1, + anon_sym_POUND, + ACTIONS(7365), 1, + aux_sym__form_token1, + ACTIONS(7369), 1, aux_sym_char_lit_token1, - ACTIONS(7206), 1, + ACTIONS(7371), 1, anon_sym_LBRACE, - ACTIONS(7208), 1, + ACTIONS(7373), 1, sym_self_referential_reader_macro, - ACTIONS(7302), 1, - anon_sym_POUND, - ACTIONS(7304), 1, - aux_sym__form_token1, - STATE(1927), 1, + STATE(1674), 1, sym__bare_set_lit, - STATE(1933), 1, + STATE(1679), 1, + sym_sym_lit, + STATE(1680), 1, sym_list_lit, - STATE(2795), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2841), 1, - sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(3022), 1, + STATE(3030), 1, sym_array_dimension, - ACTIONS(2350), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(2356), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4716), 2, + ACTIONS(5137), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(4736), 2, + ACTIONS(5155), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5159), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(7202), 3, + ACTIONS(5161), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7367), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1926), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1930), 17, + STATE(1677), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -100434,88 +101349,88 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78447] = 37, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(227), 1, + [78853] = 37, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(233), 1, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(235), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(256), 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(258), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(260), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(262), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(266), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(268), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_COLON, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(7286), 1, + ACTIONS(7347), 1, anon_sym_POUND, - ACTIONS(7288), 1, + ACTIONS(7349), 1, aux_sym__form_token1, - ACTIONS(7292), 1, + ACTIONS(7353), 1, aux_sym_char_lit_token1, - ACTIONS(7294), 1, + ACTIONS(7355), 1, anon_sym_LBRACE, - ACTIONS(7296), 1, + ACTIONS(7357), 1, sym_self_referential_reader_macro, - STATE(2153), 1, + STATE(1775), 1, sym_sym_lit, - STATE(2537), 1, + STATE(1782), 1, sym__bare_set_lit, - STATE(2556), 1, + STATE(1793), 1, sym_list_lit, - STATE(2789), 1, + STATE(2825), 1, aux_sym_list_lit_repeat1, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(3002), 1, + STATE(3016), 1, sym_array_dimension, - ACTIONS(254), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(279), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(283), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(285), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7290), 3, + ACTIONS(7351), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(2536), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2577), 17, + STATE(1789), 17, sym_num_lit, sym_kwd_lit, sym_str_lit, @@ -100533,118 +101448,19 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78583] = 37, - 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, + [78989] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(7274), 1, - anon_sym_POUND, - ACTIONS(7276), 1, - aux_sym__form_token1, - ACTIONS(7280), 1, - aux_sym_char_lit_token1, - ACTIONS(7282), 1, - anon_sym_LBRACE, - ACTIONS(7284), 1, - sym_self_referential_reader_macro, - STATE(1772), 1, - sym_list_lit, - STATE(1773), 1, - sym_sym_lit, - STATE(1792), 1, - sym__bare_set_lit, - STATE(2810), 1, - aux_sym_list_lit_repeat1, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(3011), 1, - sym_array_dimension, - 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(7278), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1787), 17, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_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, - [78719] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7309), 1, + ACTIONS(7378), 1, anon_sym_POUND_, - ACTIONS(7306), 2, + ACTIONS(7375), 2, sym__ws, sym_comment, - STATE(981), 3, + STATE(990), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(7314), 20, + ACTIONS(7383), 20, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -100665,7 +101481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7312), 30, + ACTIONS(7381), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100696,19 +101512,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78789] = 6, + [79059] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7319), 1, - anon_sym_POUND_, - ACTIONS(7316), 2, - sym__ws, - sym_comment, - STATE(982), 3, + STATE(995), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(7314), 20, + ACTIONS(7385), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -100729,7 +101543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7312), 29, + ACTIONS(7387), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100759,19 +101573,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78858] = 6, + [79124] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7325), 1, + ACTIONS(7392), 1, anon_sym_POUND_, - ACTIONS(7322), 2, + ACTIONS(7389), 2, sym__ws, sym_comment, - STATE(984), 3, + STATE(994), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(7330), 20, + ACTIONS(7397), 20, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -100792,7 +101606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7328), 29, + ACTIONS(7395), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100822,17 +101636,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78927] = 4, + [79193] = 6, ACTIONS(47), 1, sym_block_comment, - STATE(982), 3, + ACTIONS(7402), 1, + anon_sym_POUND_, + ACTIONS(7399), 2, + sym__ws, + sym_comment, + STATE(991), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(7332), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(7407), 20, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -100853,7 +101669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7334), 29, + ACTIONS(7405), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100883,19 +101699,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [78992] = 6, + [79262] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7339), 1, - anon_sym_POUND_, - ACTIONS(7336), 2, - sym__ws, - sym_comment, - STATE(986), 3, + STATE(995), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(7344), 20, + ACTIONS(7409), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -100916,7 +101730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7342), 29, + ACTIONS(7411), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100946,17 +101760,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79061] = 4, + [79327] = 6, ACTIONS(47), 1, sym_block_comment, - STATE(982), 3, + ACTIONS(7416), 1, + anon_sym_POUND_, + ACTIONS(7413), 2, + sym__ws, + sym_comment, + STATE(995), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(7346), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(7383), 20, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -100977,7 +101793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7348), 29, + ACTIONS(7381), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101007,12 +101823,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79126] = 4, + [79396] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7354), 1, + ACTIONS(7423), 1, aux_sym_num_lit_token2, - ACTIONS(7350), 23, + ACTIONS(7419), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101036,7 +101852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7352), 30, + ACTIONS(7421), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101067,10 +101883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79190] = 3, + [79460] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7356), 23, + ACTIONS(7425), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101094,7 +101910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7358), 30, + ACTIONS(7427), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101125,14 +101941,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79251] = 3, + [79521] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7360), 23, + ACTIONS(7433), 1, + anon_sym_COLON, + ACTIONS(7436), 1, + anon_sym_COLON_COLON, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -101152,11 +101971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7362), 30, + ACTIONS(7431), 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, @@ -101183,10 +102001,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79312] = 3, + [79586] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7364), 23, + ACTIONS(7438), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101210,7 +102028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7366), 30, + ACTIONS(7440), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101241,10 +102059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79373] = 3, + [79647] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7368), 23, + ACTIONS(7442), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101268,7 +102086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7370), 30, + ACTIONS(7444), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101299,17 +102117,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79434] = 5, + [79708] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7376), 1, - anon_sym_COLON, - ACTIONS(7379), 1, - anon_sym_COLON_COLON, - ACTIONS(7372), 22, + ACTIONS(7446), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -101329,10 +102144,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7374), 29, + ACTIONS(7448), 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, @@ -101359,10 +102175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79499] = 3, + [79769] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7381), 23, + ACTIONS(7450), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101386,7 +102202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7383), 30, + ACTIONS(7452), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101417,10 +102233,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79560] = 3, + [79830] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7385), 23, + ACTIONS(7454), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101444,7 +102260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7387), 30, + ACTIONS(7456), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101475,10 +102291,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79621] = 3, + [79891] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7389), 23, + ACTIONS(7458), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101502,7 +102318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7391), 30, + ACTIONS(7460), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101533,17 +102349,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79682] = 5, + [79952] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7379), 1, - anon_sym_COLON_COLON, - ACTIONS(7397), 1, - anon_sym_COLON, - ACTIONS(7393), 22, + ACTIONS(7462), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -101563,10 +102376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7395), 29, + ACTIONS(7464), 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, @@ -101593,10 +102407,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79747] = 3, + [80013] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7399), 23, + ACTIONS(7466), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101620,7 +102434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7401), 30, + ACTIONS(7468), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101651,12 +102465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79808] = 4, + [80074] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7403), 1, - aux_sym_num_lit_token2, - ACTIONS(7350), 23, + ACTIONS(7470), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101680,7 +102492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7352), 29, + ACTIONS(7472), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101691,6 +102503,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, @@ -101710,10 +102523,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79871] = 3, + [80135] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7405), 23, + ACTIONS(7474), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101737,7 +102550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7407), 30, + ACTIONS(7476), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101768,10 +102581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79932] = 3, + [80196] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7409), 23, + ACTIONS(7478), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101795,7 +102608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7411), 30, + ACTIONS(7480), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101826,10 +102639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [79993] = 3, + [80257] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7413), 23, + ACTIONS(7482), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101853,7 +102666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7415), 30, + ACTIONS(7484), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101884,10 +102697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80054] = 3, + [80318] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7417), 23, + ACTIONS(7486), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101911,7 +102724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7419), 30, + ACTIONS(7488), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101942,10 +102755,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80115] = 3, + [80379] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7389), 23, + ACTIONS(7490), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101969,7 +102782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7391), 30, + ACTIONS(7492), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102000,17 +102813,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80176] = 5, + [80440] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7379), 1, - anon_sym_COLON_COLON, - ACTIONS(7421), 1, - anon_sym_COLON, - ACTIONS(7372), 22, + ACTIONS(7494), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -102030,10 +102840,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7374), 29, + ACTIONS(7496), 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, @@ -102060,10 +102871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80241] = 3, + [80501] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7393), 23, + ACTIONS(7498), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102087,7 +102898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7395), 30, + ACTIONS(7500), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102118,10 +102929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80302] = 3, + [80562] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7424), 23, + ACTIONS(7502), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102145,7 +102956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7426), 30, + ACTIONS(7504), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102176,10 +102987,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80363] = 3, + [80623] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7428), 23, + ACTIONS(7506), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102203,7 +103014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7430), 30, + ACTIONS(7508), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102234,10 +103045,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80424] = 3, + [80684] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7432), 23, + ACTIONS(7510), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102261,7 +103072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7434), 30, + ACTIONS(7512), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102292,17 +103103,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80485] = 5, + [80745] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7379), 1, - anon_sym_COLON_COLON, - ACTIONS(7436), 1, - anon_sym_COLON, - ACTIONS(7372), 22, + ACTIONS(7514), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -102322,10 +103130,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7374), 29, + ACTIONS(7516), 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, @@ -102352,10 +103161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80550] = 3, + [80806] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7439), 23, + ACTIONS(7518), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102379,7 +103188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7441), 30, + ACTIONS(7520), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102410,10 +103219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80611] = 3, + [80867] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7443), 23, + ACTIONS(7522), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102437,7 +103246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7445), 30, + ACTIONS(7524), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102468,10 +103277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80672] = 3, + [80928] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7447), 23, + ACTIONS(7526), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102495,7 +103304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7449), 30, + ACTIONS(7528), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102526,10 +103335,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80733] = 3, + [80989] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7451), 23, + ACTIONS(7530), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102553,7 +103362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7453), 30, + ACTIONS(7532), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102584,10 +103393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80794] = 3, + [81050] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7455), 23, + ACTIONS(7534), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102611,7 +103420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7457), 30, + ACTIONS(7536), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102642,10 +103451,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80855] = 3, + [81111] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7459), 23, + ACTIONS(7538), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102669,7 +103478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7461), 30, + ACTIONS(7540), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102700,10 +103509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80916] = 3, + [81172] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7463), 23, + ACTIONS(7542), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102727,7 +103536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7465), 30, + ACTIONS(7544), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102758,10 +103567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [80977] = 3, + [81233] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7467), 23, + ACTIONS(7546), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102785,7 +103594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7469), 30, + ACTIONS(7548), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102816,10 +103625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81038] = 3, + [81294] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7471), 23, + ACTIONS(7550), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102843,7 +103652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7473), 30, + ACTIONS(7552), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102874,10 +103683,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81099] = 3, + [81355] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7471), 23, + ACTIONS(7554), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102901,7 +103710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7473), 30, + ACTIONS(7556), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102932,10 +103741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81160] = 3, + [81416] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7475), 23, + ACTIONS(7558), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -102959,7 +103768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7477), 30, + ACTIONS(7560), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -102990,10 +103799,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81221] = 3, + [81477] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7479), 23, + ACTIONS(7562), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103017,7 +103826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7481), 30, + ACTIONS(7564), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103048,10 +103857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81282] = 3, + [81538] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7483), 23, + ACTIONS(7566), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103075,7 +103884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7485), 30, + ACTIONS(7568), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103106,10 +103915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81343] = 3, + [81599] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7487), 23, + ACTIONS(7570), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103133,7 +103942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7489), 30, + ACTIONS(7572), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103164,10 +103973,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81404] = 3, + [81660] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7491), 23, + ACTIONS(7574), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103191,7 +104000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7493), 30, + ACTIONS(7576), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103222,10 +104031,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81465] = 3, + [81721] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7495), 23, + ACTIONS(7578), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103249,7 +104058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7497), 30, + ACTIONS(7580), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103280,10 +104089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81526] = 3, + [81782] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7499), 23, + ACTIONS(7582), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103307,7 +104116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7501), 30, + ACTIONS(7584), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103338,10 +104147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81587] = 3, + [81843] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7503), 23, + ACTIONS(7586), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103365,7 +104174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7505), 30, + ACTIONS(7588), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103396,10 +104205,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81648] = 3, + [81904] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7507), 23, + ACTIONS(7590), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103423,7 +104232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7509), 30, + ACTIONS(7592), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103454,10 +104263,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81709] = 3, + [81965] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7495), 23, + ACTIONS(7594), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103481,7 +104290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7497), 30, + ACTIONS(7596), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103512,10 +104321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81770] = 3, + [82026] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7511), 23, + ACTIONS(7594), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103539,7 +104348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7513), 30, + ACTIONS(7596), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103570,10 +104379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81831] = 3, + [82087] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7507), 23, + ACTIONS(7598), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103597,7 +104406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7509), 30, + ACTIONS(7600), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103628,10 +104437,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81892] = 3, + [82148] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7515), 23, + ACTIONS(7602), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103655,7 +104464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7517), 30, + ACTIONS(7604), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103686,10 +104495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [81953] = 3, + [82209] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7519), 23, + ACTIONS(7606), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103713,7 +104522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7521), 30, + ACTIONS(7608), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103744,17 +104553,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82014] = 5, + [82270] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7379), 1, - anon_sym_COLON_COLON, - ACTIONS(7523), 1, - anon_sym_COLON, - ACTIONS(7372), 22, + ACTIONS(7610), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -103774,10 +104580,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7374), 29, + ACTIONS(7612), 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, @@ -103804,10 +104611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82079] = 3, + [82331] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7526), 23, + ACTIONS(7614), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103831,7 +104638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7528), 30, + ACTIONS(7616), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103862,10 +104669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82140] = 3, + [82392] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7530), 23, + ACTIONS(7614), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103889,7 +104696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7532), 30, + ACTIONS(7616), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103920,10 +104727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82201] = 3, + [82453] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7534), 23, + ACTIONS(7618), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103947,7 +104754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7536), 30, + ACTIONS(7620), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103978,10 +104785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82262] = 3, + [82514] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7538), 23, + ACTIONS(7622), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104005,7 +104812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7540), 30, + ACTIONS(7624), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104036,10 +104843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82323] = 3, + [82575] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7542), 23, + ACTIONS(7626), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104063,7 +104870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7544), 30, + ACTIONS(7628), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104094,10 +104901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82384] = 3, + [82636] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7546), 23, + ACTIONS(7630), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104121,7 +104928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7548), 30, + ACTIONS(7632), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104152,10 +104959,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82445] = 3, + [82697] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7550), 23, + ACTIONS(7538), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104179,7 +104986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7552), 30, + ACTIONS(7540), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104210,10 +105017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82506] = 3, + [82758] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7554), 23, + ACTIONS(7634), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104237,7 +105044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7556), 30, + ACTIONS(7636), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104268,10 +105075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82567] = 3, + [82819] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7558), 23, + ACTIONS(7638), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104295,7 +105102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7560), 30, + ACTIONS(7640), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104326,10 +105133,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82628] = 3, + [82880] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7562), 23, + ACTIONS(7642), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104353,7 +105160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7564), 30, + ACTIONS(7644), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104384,10 +105191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82689] = 3, + [82941] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7562), 23, + ACTIONS(7646), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104411,7 +105218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7564), 30, + ACTIONS(7648), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104442,10 +105249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82750] = 3, + [83002] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7566), 23, + ACTIONS(7650), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104469,7 +105276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7568), 30, + ACTIONS(7652), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104500,10 +105307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82811] = 3, + [83063] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7570), 23, + ACTIONS(7654), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104527,7 +105334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7572), 30, + ACTIONS(7656), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104558,10 +105365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82872] = 3, + [83124] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7566), 23, + ACTIONS(7658), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104585,7 +105392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7568), 30, + ACTIONS(7660), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104616,10 +105423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82933] = 3, + [83185] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7574), 23, + ACTIONS(7662), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104643,7 +105450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7576), 30, + ACTIONS(7664), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104674,10 +105481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [82994] = 3, + [83246] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7578), 23, + ACTIONS(7538), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104701,7 +105508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7580), 30, + ACTIONS(7540), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104732,14 +105539,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83055] = 3, + [83307] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7582), 23, + ACTIONS(7436), 1, + anon_sym_COLON_COLON, + ACTIONS(7670), 1, + anon_sym_COLON, + ACTIONS(7666), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -104759,11 +105569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7584), 30, + ACTIONS(7668), 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, @@ -104790,10 +105599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83116] = 3, + [83372] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7586), 23, + ACTIONS(7658), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104817,7 +105626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7588), 30, + ACTIONS(7660), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104848,10 +105657,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83177] = 3, + [83433] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7590), 23, + ACTIONS(7672), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104875,7 +105684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7592), 30, + ACTIONS(7674), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104906,10 +105715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83238] = 3, + [83494] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7594), 23, + ACTIONS(7666), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104933,7 +105742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7596), 30, + ACTIONS(7668), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104964,10 +105773,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83299] = 3, + [83555] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7598), 23, + ACTIONS(7662), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104991,7 +105800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7600), 30, + ACTIONS(7664), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105022,10 +105831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83360] = 3, + [83616] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7602), 23, + ACTIONS(7676), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105049,7 +105858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7604), 30, + ACTIONS(7678), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105080,10 +105889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83421] = 3, + [83677] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7606), 23, + ACTIONS(7680), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105107,7 +105916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7608), 30, + ACTIONS(7682), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105138,10 +105947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83482] = 3, + [83738] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7610), 23, + ACTIONS(7684), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105165,7 +105974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7612), 30, + ACTIONS(7686), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105196,10 +106005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83543] = 3, + [83799] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7614), 23, + ACTIONS(7688), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105223,7 +106032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7616), 30, + ACTIONS(7690), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105254,10 +106063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83604] = 3, + [83860] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7618), 23, + ACTIONS(7692), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105281,7 +106090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7620), 30, + ACTIONS(7694), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105312,10 +106121,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83665] = 3, + [83921] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7622), 23, + ACTIONS(7696), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105339,7 +106148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7624), 30, + ACTIONS(7698), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105370,17 +106179,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83726] = 5, + [83982] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7379), 1, - anon_sym_COLON_COLON, - ACTIONS(7397), 1, - anon_sym_COLON, - ACTIONS(7626), 22, + ACTIONS(7700), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -105400,10 +106206,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7628), 29, + ACTIONS(7702), 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, @@ -105430,14 +106237,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83791] = 3, + [84043] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7630), 23, + ACTIONS(7436), 1, + anon_sym_COLON_COLON, + ACTIONS(7670), 1, + anon_sym_COLON, + ACTIONS(7704), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -105457,11 +106267,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7632), 30, + ACTIONS(7706), 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, @@ -105488,14 +106297,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83852] = 3, + [84108] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7634), 23, + ACTIONS(7436), 1, + anon_sym_COLON_COLON, + ACTIONS(7670), 1, + anon_sym_COLON, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -105515,11 +106327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7636), 30, + ACTIONS(7431), 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, @@ -105546,10 +106357,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83913] = 3, + [84173] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7638), 23, + ACTIONS(7708), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105573,7 +106384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7640), 30, + ACTIONS(7710), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105604,17 +106415,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [83974] = 5, + [84234] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7379), 1, - anon_sym_COLON_COLON, - ACTIONS(7642), 1, - anon_sym_COLON, - ACTIONS(7372), 22, + ACTIONS(7712), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -105634,10 +106442,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7374), 29, + ACTIONS(7714), 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, @@ -105664,17 +106473,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84039] = 5, + [84295] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7379), 1, - anon_sym_COLON_COLON, - ACTIONS(7645), 1, - anon_sym_COLON, - ACTIONS(7372), 22, + ACTIONS(7712), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -105694,10 +106500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7374), 29, + ACTIONS(7714), 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, @@ -105724,10 +106531,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84104] = 3, + [84356] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7648), 23, + ACTIONS(7716), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105751,7 +106558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7650), 30, + ACTIONS(7718), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105782,17 +106589,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84165] = 5, + [84417] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7379), 1, - anon_sym_COLON_COLON, - ACTIONS(7652), 1, - anon_sym_COLON, - ACTIONS(7372), 22, + ACTIONS(7716), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -105812,10 +106616,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7374), 29, + ACTIONS(7718), 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, @@ -105842,17 +106647,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84230] = 5, + [84478] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7379), 1, - anon_sym_COLON_COLON, - ACTIONS(7397), 1, - anon_sym_COLON, - ACTIONS(7372), 22, + ACTIONS(7720), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -105872,10 +106674,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7374), 29, + ACTIONS(7722), 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, @@ -105902,10 +106705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84295] = 3, + [84539] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7655), 23, + ACTIONS(7724), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105929,7 +106732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7657), 30, + ACTIONS(7726), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105960,10 +106763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84356] = 3, + [84600] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7655), 23, + ACTIONS(7728), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105987,7 +106790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7657), 30, + ACTIONS(7730), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106018,10 +106821,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84417] = 3, + [84661] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7614), 23, + ACTIONS(7732), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106045,7 +106848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7616), 30, + ACTIONS(7734), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106076,10 +106879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84478] = 3, + [84722] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7622), 23, + ACTIONS(7736), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106103,7 +106906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7624), 30, + ACTIONS(7738), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106134,14 +106937,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84539] = 3, + [84783] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7655), 23, + ACTIONS(7436), 1, + anon_sym_COLON_COLON, + ACTIONS(7740), 1, + anon_sym_COLON, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -106161,11 +106967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7657), 30, + ACTIONS(7431), 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, @@ -106192,10 +106997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84600] = 3, + [84848] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7655), 23, + ACTIONS(7743), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106219,7 +107024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7657), 30, + ACTIONS(7745), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106250,10 +107055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84661] = 3, + [84909] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7659), 23, + ACTIONS(7747), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106277,7 +107082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7661), 30, + ACTIONS(7749), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106308,10 +107113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84722] = 3, + [84970] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7663), 23, + ACTIONS(7751), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106335,7 +107140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7665), 30, + ACTIONS(7753), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106366,10 +107171,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84783] = 3, + [85031] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7667), 23, + ACTIONS(7755), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106393,7 +107198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7669), 30, + ACTIONS(7757), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106424,10 +107229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84844] = 3, + [85092] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7671), 23, + ACTIONS(7755), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106451,7 +107256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7673), 30, + ACTIONS(7757), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106482,10 +107287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84905] = 3, + [85153] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7675), 23, + ACTIONS(7747), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106509,7 +107314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7677), 30, + ACTIONS(7749), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106540,10 +107345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [84966] = 3, + [85214] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7679), 23, + ACTIONS(7751), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106567,7 +107372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7681), 30, + ACTIONS(7753), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106598,10 +107403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85027] = 3, + [85275] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7683), 23, + ACTIONS(7755), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106625,7 +107430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7685), 30, + ACTIONS(7757), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106656,10 +107461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85088] = 3, + [85336] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7687), 23, + ACTIONS(7755), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106683,7 +107488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7689), 30, + ACTIONS(7757), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106714,10 +107519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85149] = 3, + [85397] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7691), 23, + ACTIONS(7759), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106741,7 +107546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7693), 30, + ACTIONS(7761), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106772,17 +107577,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85210] = 5, + [85458] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7379), 1, - anon_sym_COLON_COLON, - ACTIONS(7695), 1, - anon_sym_COLON, - ACTIONS(7372), 22, + ACTIONS(7763), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -106802,10 +107604,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7374), 29, + ACTIONS(7765), 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, @@ -106832,10 +107635,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85275] = 3, + [85519] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 23, + ACTIONS(7767), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106859,7 +107662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7700), 30, + ACTIONS(7769), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106890,10 +107693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85336] = 3, + [85580] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7511), 23, + ACTIONS(7771), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106917,7 +107720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7513), 30, + ACTIONS(7773), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106948,10 +107751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85397] = 3, + [85641] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7702), 23, + ACTIONS(7775), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106975,7 +107778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7704), 30, + ACTIONS(7777), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107006,10 +107809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85458] = 3, + [85702] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107033,7 +107836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7708), 30, + ACTIONS(7781), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107064,10 +107867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85519] = 3, + [85763] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7710), 23, + ACTIONS(7775), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107091,7 +107894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7712), 30, + ACTIONS(7777), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107122,10 +107925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85580] = 3, + [85824] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7714), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107149,7 +107952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7716), 30, + ACTIONS(7781), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107180,10 +107983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85641] = 3, + [85885] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7718), 23, + ACTIONS(7783), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107207,7 +108010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7720), 30, + ACTIONS(7785), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107238,10 +108041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85702] = 3, + [85946] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7691), 23, + ACTIONS(7771), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107265,7 +108068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7693), 30, + ACTIONS(7773), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107296,10 +108099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85763] = 3, + [86007] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7722), 23, + ACTIONS(7775), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107323,7 +108126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7724), 30, + ACTIONS(7777), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107354,10 +108157,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85824] = 3, + [86068] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107381,7 +108184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7708), 30, + ACTIONS(7781), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107412,10 +108215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85885] = 3, + [86129] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7726), 23, + ACTIONS(7775), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107439,7 +108242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7728), 30, + ACTIONS(7777), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107470,14 +108273,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [85946] = 3, + [86190] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7687), 23, + ACTIONS(7436), 1, + anon_sym_COLON_COLON, + ACTIONS(7787), 1, + anon_sym_COLON, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -107497,11 +108303,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7689), 30, + ACTIONS(7431), 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, @@ -107528,14 +108333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86007] = 5, + [86255] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7379), 1, + ACTIONS(7436), 1, anon_sym_COLON_COLON, - ACTIONS(7730), 1, + ACTIONS(7790), 1, anon_sym_COLON, - ACTIONS(7372), 22, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -107558,7 +108363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7374), 29, + ACTIONS(7431), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107588,14 +108393,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86072] = 5, + [86320] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7379), 1, + ACTIONS(7436), 1, anon_sym_COLON_COLON, - ACTIONS(7733), 1, + ACTIONS(7793), 1, anon_sym_COLON, - ACTIONS(7372), 22, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -107618,7 +108423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7374), 29, + ACTIONS(7431), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107648,10 +108453,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86137] = 3, + [86385] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7691), 23, + ACTIONS(7796), 1, + aux_sym_num_lit_token2, + ACTIONS(7419), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107675,7 +108482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7693), 30, + ACTIONS(7421), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107686,7 +108493,6 @@ 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, @@ -107706,10 +108512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86198] = 3, + [86448] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7736), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107733,7 +108539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7738), 30, + ACTIONS(7781), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107764,10 +108570,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86259] = 3, + [86509] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 23, + ACTIONS(7783), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107791,7 +108597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7708), 30, + ACTIONS(7785), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107822,10 +108628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86320] = 3, + [86570] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7691), 23, + ACTIONS(7798), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107849,7 +108655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7693), 30, + ACTIONS(7800), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107880,10 +108686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86381] = 3, + [86631] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 23, + ACTIONS(7802), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107907,7 +108713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7708), 30, + ACTIONS(7804), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107938,10 +108744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86442] = 3, + [86692] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7726), 23, + ACTIONS(7802), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107965,7 +108771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7728), 30, + ACTIONS(7804), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107996,10 +108802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86503] = 3, + [86753] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7740), 23, + ACTIONS(7806), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108023,7 +108829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7742), 30, + ACTIONS(7808), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108054,10 +108860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86564] = 3, + [86814] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7740), 23, + ACTIONS(7810), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108081,7 +108887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7742), 30, + ACTIONS(7812), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108112,10 +108918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86625] = 3, + [86875] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7744), 23, + ACTIONS(7802), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108139,7 +108945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7746), 30, + ACTIONS(7804), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108170,10 +108976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86686] = 3, + [86936] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 23, + ACTIONS(7802), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108197,7 +109003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7750), 30, + ACTIONS(7804), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108228,10 +109034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86747] = 3, + [86997] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7752), 23, + ACTIONS(7806), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108255,7 +109061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7754), 30, + ACTIONS(7808), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108286,10 +109092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86808] = 3, + [87058] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7756), 23, + ACTIONS(7810), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108313,7 +109119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7758), 30, + ACTIONS(7812), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108344,10 +109150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86869] = 3, + [87119] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7740), 23, + ACTIONS(7814), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108371,7 +109177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7742), 30, + ACTIONS(7816), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108402,10 +109208,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86930] = 3, + [87180] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7740), 23, + ACTIONS(7814), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108429,7 +109235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7742), 30, + ACTIONS(7816), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108460,14 +109266,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [86991] = 5, + [87241] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7379), 1, + ACTIONS(7436), 1, anon_sym_COLON_COLON, - ACTIONS(7760), 1, + ACTIONS(7818), 1, anon_sym_COLON, - ACTIONS(7372), 22, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -108490,7 +109296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7374), 29, + ACTIONS(7431), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108520,14 +109326,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87056] = 5, + [87306] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7379), 1, + ACTIONS(7436), 1, anon_sym_COLON_COLON, - ACTIONS(7763), 1, + ACTIONS(7821), 1, anon_sym_COLON, - ACTIONS(7372), 22, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -108550,7 +109356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7374), 29, + ACTIONS(7431), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108580,14 +109386,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87121] = 3, + [87371] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7756), 23, + ACTIONS(7436), 1, + anon_sym_COLON_COLON, + ACTIONS(7824), 1, + anon_sym_COLON, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -108607,11 +109416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7758), 30, + ACTIONS(7431), 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, @@ -108638,14 +109446,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87182] = 3, + [87436] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7766), 23, + ACTIONS(7436), 1, + anon_sym_COLON_COLON, + ACTIONS(7827), 1, + anon_sym_COLON, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -108665,11 +109476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7768), 30, + ACTIONS(7431), 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, @@ -108696,14 +109506,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87243] = 3, + [87501] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7770), 23, + ACTIONS(7436), 1, + anon_sym_COLON_COLON, + ACTIONS(7830), 1, + anon_sym_COLON, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -108723,11 +109536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7772), 30, + ACTIONS(7431), 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, @@ -108754,14 +109566,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87304] = 3, + [87566] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 23, + ACTIONS(7436), 1, + anon_sym_COLON_COLON, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -108781,11 +109596,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7750), 30, + ACTIONS(7431), 29, 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, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [87631] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7436), 1, + anon_sym_COLON_COLON, + ACTIONS(7836), 1, anon_sym_COLON, + ACTIONS(7429), 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, + ACTIONS(7431), 29, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -108812,10 +109686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87365] = 3, + [87696] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7511), 23, + ACTIONS(7839), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108839,7 +109713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7513), 30, + ACTIONS(7841), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108870,10 +109744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87426] = 3, + [87757] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7360), 23, + ACTIONS(7634), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108897,7 +109771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7362), 30, + ACTIONS(7636), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108908,7 +109782,6 @@ 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, @@ -108928,10 +109801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87487] = 3, + [87817] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7447), 23, + ACTIONS(7662), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108955,7 +109828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7449), 29, + ACTIONS(7664), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108985,10 +109858,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87547] = 3, + [87877] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7439), 23, + ACTIONS(7672), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109012,7 +109885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7441), 29, + ACTIONS(7674), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109042,14 +109915,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87607] = 5, + [87937] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7774), 1, + ACTIONS(7843), 1, anon_sym_COLON, - ACTIONS(7776), 1, + ACTIONS(7845), 1, anon_sym_COLON_COLON, - ACTIONS(7372), 22, + ACTIONS(7666), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -109072,7 +109945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7374), 28, + ACTIONS(7668), 28, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109101,10 +109974,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87671] = 3, + [88001] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7566), 23, + ACTIONS(7538), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109128,7 +110001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7568), 29, + ACTIONS(7540), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109158,10 +110031,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87731] = 3, + [88061] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7566), 23, + ACTIONS(7654), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109185,7 +110058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7568), 29, + ACTIONS(7656), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109215,10 +110088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87791] = 3, + [88121] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7582), 23, + ACTIONS(7650), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109242,7 +110115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7584), 29, + ACTIONS(7652), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109272,17 +110145,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87851] = 5, + [88181] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7774), 1, - anon_sym_COLON, - ACTIONS(7776), 1, - anon_sym_COLON_COLON, - ACTIONS(7626), 22, + ACTIONS(7642), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -109302,10 +110172,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7628), 28, + ACTIONS(7644), 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, @@ -109331,10 +110202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87915] = 3, + [88241] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7590), 23, + ACTIONS(7736), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109358,7 +110229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7592), 29, + ACTIONS(7738), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109388,14 +110259,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87975] = 3, + [88301] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7606), 23, + ACTIONS(7843), 1, + anon_sym_COLON, + ACTIONS(7845), 1, + anon_sym_COLON_COLON, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -109415,11 +110289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7608), 29, + ACTIONS(7431), 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, @@ -109445,10 +110318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88035] = 3, + [88365] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7610), 23, + ACTIONS(7638), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109472,7 +110345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7612), 29, + ACTIONS(7640), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109502,10 +110375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88095] = 3, + [88425] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7614), 23, + ACTIONS(7538), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109529,7 +110402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7616), 29, + ACTIONS(7540), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109559,10 +110432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88155] = 3, + [88485] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7622), 23, + ACTIONS(7626), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109586,7 +110459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7624), 29, + ACTIONS(7628), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109616,10 +110489,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88215] = 3, + [88545] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7459), 23, + ACTIONS(7622), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109643,7 +110516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7461), 29, + ACTIONS(7624), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109673,10 +110546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88275] = 3, + [88605] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7655), 23, + ACTIONS(7618), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109700,7 +110573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7657), 29, + ACTIONS(7620), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109730,10 +110603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88335] = 3, + [88665] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7655), 23, + ACTIONS(7610), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109757,7 +110630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7657), 29, + ACTIONS(7612), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109787,10 +110660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88395] = 3, + [88725] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7614), 23, + ACTIONS(7598), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109814,7 +110687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7616), 29, + ACTIONS(7600), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109844,10 +110717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88455] = 3, + [88785] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7622), 23, + ACTIONS(7590), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109871,7 +110744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7624), 29, + ACTIONS(7592), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109901,10 +110774,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88515] = 3, + [88845] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7655), 23, + ACTIONS(7850), 1, + anon_sym_POUND_, + ACTIONS(7847), 2, + sym__ws, + sym_comment, + STATE(1150), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7383), 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(7381), 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, + [88911] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7578), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109928,7 +110861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7657), 29, + ACTIONS(7580), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -109958,10 +110891,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88575] = 3, + [88971] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7655), 23, + ACTIONS(7566), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -109985,7 +110918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7657), 29, + ACTIONS(7568), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110015,10 +110948,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88635] = 3, + [89031] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7659), 23, + ACTIONS(7550), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110042,7 +110975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7661), 29, + ACTIONS(7552), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110072,10 +111005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88695] = 3, + [89091] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7675), 23, + ACTIONS(7546), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110099,7 +111032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7677), 29, + ACTIONS(7548), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110129,10 +111062,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88755] = 3, + [89151] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7598), 23, + ACTIONS(7542), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110156,7 +111089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7600), 29, + ACTIONS(7544), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110186,10 +111119,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88815] = 3, + [89211] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7663), 23, + ACTIONS(7538), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110213,7 +111146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7665), 29, + ACTIONS(7540), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110243,10 +111176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88875] = 3, + [89271] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7679), 23, + ACTIONS(7534), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110270,7 +111203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7681), 29, + ACTIONS(7536), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110300,10 +111233,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88935] = 3, + [89331] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7687), 23, + ACTIONS(7843), 1, + anon_sym_COLON, + ACTIONS(7845), 1, + anon_sym_COLON_COLON, + ACTIONS(7704), 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, + ACTIONS(7706), 28, + 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, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [89395] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7526), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110327,7 +111319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7689), 29, + ACTIONS(7528), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110357,10 +111349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88995] = 3, + [89455] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7691), 23, + ACTIONS(7522), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110384,7 +111376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7693), 29, + ACTIONS(7524), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110414,10 +111406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89055] = 3, + [89515] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 23, + ACTIONS(7518), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110441,7 +111433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7708), 29, + ACTIONS(7520), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110471,10 +111463,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89115] = 3, + [89575] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7503), 23, + ACTIONS(7514), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110498,7 +111490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7505), 29, + ACTIONS(7516), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110528,10 +111520,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89175] = 3, + [89635] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7667), 23, + ACTIONS(7510), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110555,7 +111547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7669), 29, + ACTIONS(7512), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110585,10 +111577,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89235] = 3, + [89695] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7671), 23, + ACTIONS(7506), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110612,7 +111604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7673), 29, + ACTIONS(7508), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110642,10 +111634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89295] = 3, + [89755] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7562), 23, + ACTIONS(7502), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110669,7 +111661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7564), 29, + ACTIONS(7504), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110699,10 +111691,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89355] = 3, + [89815] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7562), 23, + ACTIONS(7498), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110726,7 +111718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7564), 29, + ACTIONS(7500), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110756,10 +111748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89415] = 3, + [89875] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7691), 23, + ACTIONS(7494), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110783,7 +111775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7693), 29, + ACTIONS(7496), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110813,10 +111805,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89475] = 3, + [89935] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7558), 23, + ACTIONS(7490), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110840,7 +111832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7560), 29, + ACTIONS(7492), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110870,10 +111862,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89535] = 3, + [89995] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7554), 23, + ACTIONS(7486), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110897,7 +111889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7556), 29, + ACTIONS(7488), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110927,10 +111919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89595] = 3, + [90055] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7550), 23, + ACTIONS(7482), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -110954,7 +111946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7552), 29, + ACTIONS(7484), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -110984,10 +111976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89655] = 3, + [90115] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 23, + ACTIONS(7478), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111011,7 +112003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7708), 29, + ACTIONS(7480), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111041,10 +112033,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89715] = 3, + [90175] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7530), 23, + ACTIONS(7474), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111068,7 +112060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7532), 29, + ACTIONS(7476), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111098,10 +112090,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89775] = 3, + [90235] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7726), 23, + ACTIONS(7470), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111125,7 +112117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7728), 29, + ACTIONS(7472), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111155,10 +112147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89835] = 3, + [90295] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7519), 23, + ACTIONS(7466), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111182,7 +112174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7521), 29, + ACTIONS(7468), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111212,10 +112204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89895] = 3, + [90355] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7687), 23, + ACTIONS(7462), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111239,7 +112231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7689), 29, + ACTIONS(7464), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111269,10 +112261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89955] = 3, + [90415] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7428), 23, + ACTIONS(7458), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111296,7 +112288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7430), 29, + ACTIONS(7460), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111326,10 +112318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90015] = 3, + [90475] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7691), 23, + ACTIONS(7454), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111353,7 +112345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7693), 29, + ACTIONS(7456), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111383,10 +112375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90075] = 3, + [90535] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7507), 23, + ACTIONS(7450), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111410,7 +112402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7509), 29, + ACTIONS(7452), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111440,10 +112432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90135] = 3, + [90595] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7495), 23, + ACTIONS(7446), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111467,7 +112459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7497), 29, + ACTIONS(7448), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111497,10 +112489,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90195] = 3, + [90655] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 23, + ACTIONS(7442), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111524,7 +112516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7708), 29, + ACTIONS(7444), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111554,10 +112546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90255] = 3, + [90715] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7511), 23, + ACTIONS(7438), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111581,7 +112573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7513), 29, + ACTIONS(7440), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111611,10 +112603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90315] = 3, + [90775] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7507), 23, + ACTIONS(7839), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111638,7 +112630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7509), 29, + ACTIONS(7841), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111668,10 +112660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90375] = 3, + [90835] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7691), 23, + ACTIONS(7558), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111695,7 +112687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7693), 29, + ACTIONS(7560), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111725,10 +112717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90435] = 3, + [90895] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 23, + ACTIONS(7562), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111752,7 +112744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7708), 29, + ACTIONS(7564), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111782,10 +112774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90495] = 3, + [90955] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7726), 23, + ACTIONS(7570), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111809,7 +112801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7728), 29, + ACTIONS(7572), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111839,10 +112831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90555] = 3, + [91015] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7356), 23, + ACTIONS(7574), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111866,7 +112858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7358), 29, + ACTIONS(7576), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111896,10 +112888,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90615] = 3, + [91075] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7740), 23, + ACTIONS(7582), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111923,7 +112915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7742), 29, + ACTIONS(7584), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -111953,10 +112945,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90675] = 3, + [91135] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7393), 23, + ACTIONS(7586), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -111980,7 +112972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7395), 29, + ACTIONS(7588), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112010,10 +113002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90735] = 3, + [91195] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7740), 23, + ACTIONS(7554), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112037,7 +113029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7742), 29, + ACTIONS(7556), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112067,10 +113059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90795] = 3, + [91255] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 23, + ACTIONS(7425), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112094,7 +113086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7750), 29, + ACTIONS(7427), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112124,10 +113116,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90855] = 3, + [91315] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7495), 23, + ACTIONS(7594), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112151,7 +113143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7497), 29, + ACTIONS(7596), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112181,10 +113173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90915] = 3, + [91375] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7491), 23, + ACTIONS(7696), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112208,7 +113200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7493), 29, + ACTIONS(7698), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112238,10 +113230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90975] = 3, + [91435] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7487), 23, + ACTIONS(7594), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112265,7 +113257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7489), 29, + ACTIONS(7596), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112295,10 +113287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91035] = 3, + [91495] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7471), 23, + ACTIONS(7602), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112322,7 +113314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7473), 29, + ACTIONS(7604), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112352,10 +113344,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91095] = 3, + [91555] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7471), 23, + ACTIONS(7606), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112379,7 +113371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7473), 29, + ACTIONS(7608), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112409,10 +113401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91155] = 3, + [91615] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7756), 23, + ACTIONS(7614), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112436,7 +113428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7758), 29, + ACTIONS(7616), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112466,10 +113458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91215] = 3, + [91675] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7740), 23, + ACTIONS(7614), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112493,7 +113485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7742), 29, + ACTIONS(7616), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112523,10 +113515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91275] = 3, + [91735] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7467), 23, + ACTIONS(7630), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112550,7 +113542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7469), 29, + ACTIONS(7632), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112580,10 +113572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91335] = 3, + [91795] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7455), 23, + ACTIONS(7646), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112607,7 +113599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7457), 29, + ACTIONS(7648), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112637,10 +113629,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91395] = 3, + [91855] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7740), 23, + ACTIONS(7680), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112664,7 +113656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7742), 29, + ACTIONS(7682), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112694,10 +113686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91455] = 3, + [91915] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7409), 23, + ACTIONS(7692), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112721,7 +113713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7411), 29, + ACTIONS(7694), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112751,17 +113743,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91515] = 5, + [91975] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7774), 1, - anon_sym_COLON, - ACTIONS(7776), 1, - anon_sym_COLON_COLON, - ACTIONS(7393), 22, + ACTIONS(7658), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -112781,10 +113770,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7395), 28, + ACTIONS(7660), 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, @@ -112810,10 +113800,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91579] = 3, + [92035] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7702), 23, + ACTIONS(7662), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112837,7 +113827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7704), 29, + ACTIONS(7664), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112867,10 +113857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91639] = 3, + [92095] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7710), 23, + ACTIONS(7814), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112894,7 +113884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7712), 29, + ACTIONS(7816), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112924,10 +113914,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91699] = 3, + [92155] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7511), 23, + ACTIONS(7530), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -112951,7 +113941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7513), 29, + ACTIONS(7532), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -112981,10 +113971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91759] = 3, + [92215] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7714), 23, + ACTIONS(7658), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113008,7 +113998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7716), 29, + ACTIONS(7660), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113038,10 +114028,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91819] = 3, + [92275] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7718), 23, + ACTIONS(7666), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113065,7 +114055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7720), 29, + ACTIONS(7668), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113095,10 +114085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91879] = 3, + [92335] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 23, + ACTIONS(7676), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113122,7 +114112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7750), 29, + ACTIONS(7678), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113152,10 +114142,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91939] = 3, + [92395] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7475), 23, + ACTIONS(7684), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113179,7 +114169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7477), 29, + ACTIONS(7686), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113209,10 +114199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91999] = 3, + [92455] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7479), 23, + ACTIONS(7688), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113236,7 +114226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7481), 29, + ACTIONS(7690), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113266,10 +114256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92059] = 3, + [92515] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7483), 23, + ACTIONS(7700), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113293,7 +114283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7485), 29, + ACTIONS(7702), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113323,10 +114313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92119] = 3, + [92575] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7722), 23, + ACTIONS(7708), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113350,7 +114340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7724), 29, + ACTIONS(7710), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113380,10 +114370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92179] = 3, + [92635] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7756), 23, + ACTIONS(7712), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113407,7 +114397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7758), 29, + ACTIONS(7714), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113437,10 +114427,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92239] = 3, + [92695] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7360), 23, + ACTIONS(7712), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113464,7 +114454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7362), 29, + ACTIONS(7714), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113494,10 +114484,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92299] = 3, + [92755] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7389), 23, + ACTIONS(7716), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113521,7 +114511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7391), 29, + ACTIONS(7718), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113551,10 +114541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92359] = 3, + [92815] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7499), 23, + ACTIONS(7716), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113578,7 +114568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7501), 29, + ACTIONS(7718), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113608,10 +114598,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92419] = 3, + [92875] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7360), 23, + ACTIONS(7720), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113635,7 +114625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7362), 29, + ACTIONS(7722), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113665,10 +114655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92479] = 3, + [92935] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7736), 23, + ACTIONS(7724), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113692,7 +114682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7738), 29, + ACTIONS(7726), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113722,10 +114712,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92539] = 3, + [92995] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7744), 23, + ACTIONS(7728), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113749,7 +114739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7746), 29, + ACTIONS(7730), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113779,10 +114769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92599] = 3, + [93055] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7752), 23, + ACTIONS(7732), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113806,7 +114796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7754), 29, + ACTIONS(7734), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113836,10 +114826,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92659] = 3, + [93115] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7534), 23, + ACTIONS(7743), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113863,7 +114853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7536), 29, + ACTIONS(7745), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113893,10 +114883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92719] = 3, + [93175] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7389), 23, + ACTIONS(7747), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113920,7 +114910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7391), 29, + ACTIONS(7749), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113950,10 +114940,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92779] = 3, + [93235] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7511), 23, + ACTIONS(7751), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113977,7 +114967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7513), 29, + ACTIONS(7753), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114007,10 +114997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92839] = 3, + [93295] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7385), 23, + ACTIONS(7814), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114034,7 +115024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7387), 29, + ACTIONS(7816), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114064,10 +115054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92899] = 3, + [93355] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7381), 23, + ACTIONS(7755), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114091,7 +115081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7383), 29, + ACTIONS(7757), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114121,10 +115111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92959] = 3, + [93415] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7515), 23, + ACTIONS(7810), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114148,7 +115138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7517), 29, + ACTIONS(7812), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114178,10 +115168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93019] = 3, + [93475] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7368), 23, + ACTIONS(7806), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114205,7 +115195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7370), 29, + ACTIONS(7808), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114235,10 +115225,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93079] = 3, + [93535] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7526), 23, + ACTIONS(7755), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114262,7 +115252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7528), 29, + ACTIONS(7757), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114292,10 +115282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93139] = 3, + [93595] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7364), 23, + ACTIONS(7747), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114319,7 +115309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7366), 29, + ACTIONS(7749), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114349,10 +115339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93199] = 3, + [93655] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7538), 23, + ACTIONS(7751), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114376,7 +115366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7540), 29, + ACTIONS(7753), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114406,10 +115396,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93259] = 3, + [93715] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7542), 23, + ACTIONS(7755), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114433,7 +115423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7544), 29, + ACTIONS(7757), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114463,10 +115453,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93319] = 3, + [93775] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7648), 23, + ACTIONS(7755), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114490,7 +115480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7650), 29, + ACTIONS(7757), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114520,10 +115510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93379] = 3, + [93835] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7574), 23, + ACTIONS(7759), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114547,7 +115537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7576), 29, + ACTIONS(7761), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114577,10 +115567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93439] = 3, + [93895] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7405), 23, + ACTIONS(7763), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114604,7 +115594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7407), 29, + ACTIONS(7765), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114634,10 +115624,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93499] = 3, + [93955] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7413), 23, + ACTIONS(7767), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114661,7 +115651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7415), 29, + ACTIONS(7769), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114691,10 +115681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93559] = 3, + [94015] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7417), 23, + ACTIONS(7771), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114718,7 +115708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7419), 29, + ACTIONS(7773), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114748,10 +115738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93619] = 3, + [94075] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7424), 23, + ACTIONS(7775), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114775,7 +115765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7426), 29, + ACTIONS(7777), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114805,10 +115795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93679] = 3, + [94135] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7766), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114832,7 +115822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7768), 29, + ACTIONS(7781), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114862,10 +115852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93739] = 3, + [94195] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7770), 23, + ACTIONS(7775), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114889,7 +115879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7772), 29, + ACTIONS(7777), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114919,10 +115909,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93799] = 3, + [94255] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7432), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114946,7 +115936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7434), 29, + ACTIONS(7781), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114976,10 +115966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93859] = 3, + [94315] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7578), 23, + ACTIONS(7783), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115003,7 +115993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7580), 29, + ACTIONS(7785), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115033,10 +116023,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93919] = 3, + [94375] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7618), 23, + ACTIONS(7771), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115060,7 +116050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7620), 29, + ACTIONS(7773), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115090,10 +116080,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93979] = 3, + [94435] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7443), 23, + ACTIONS(7775), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115117,7 +116107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7445), 29, + ACTIONS(7777), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115147,10 +116137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94039] = 3, + [94495] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7451), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115174,7 +116164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7453), 29, + ACTIONS(7781), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115204,24 +116194,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94099] = 6, + [94555] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7781), 1, - anon_sym_POUND_, - ACTIONS(7778), 2, + ACTIONS(7775), 23, sym__ws, sym_comment, - STATE(1233), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(7314), 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, @@ -115229,7 +116214,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, @@ -115237,7 +116221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7312), 26, + ACTIONS(7777), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115248,26 +116232,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_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [94165] = 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, + [94615] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7463), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115291,7 +116278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7465), 29, + ACTIONS(7781), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115321,10 +116308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94225] = 3, + [94675] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7546), 23, + ACTIONS(7783), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115348,7 +116335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7548), 29, + ACTIONS(7785), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115378,10 +116365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94285] = 3, + [94735] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7570), 23, + ACTIONS(7798), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115405,7 +116392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7572), 29, + ACTIONS(7800), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115435,10 +116422,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94345] = 3, + [94795] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 23, + ACTIONS(7802), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115462,7 +116449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7700), 29, + ACTIONS(7804), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115492,10 +116479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94405] = 3, + [94855] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7594), 23, + ACTIONS(7802), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115519,7 +116506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7596), 29, + ACTIONS(7804), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115549,10 +116536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94465] = 3, + [94915] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7602), 23, + ACTIONS(7806), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115576,7 +116563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7604), 29, + ACTIONS(7808), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115606,10 +116593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94525] = 3, + [94975] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7399), 23, + ACTIONS(7810), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115633,7 +116620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7401), 29, + ACTIONS(7812), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115663,10 +116650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94585] = 3, + [95035] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7586), 23, + ACTIONS(7802), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115690,7 +116677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7588), 29, + ACTIONS(7804), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115720,10 +116707,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94645] = 3, + [95095] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7630), 23, + ACTIONS(7802), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115747,7 +116734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7632), 29, + ACTIONS(7804), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115777,50 +116764,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94705] = 3, + [95155] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7634), 23, + ACTIONS(7856), 1, + anon_sym_POUND_, + ACTIONS(7859), 1, + anon_sym_COLON, + ACTIONS(7864), 1, + anon_sym_cl, + ACTIONS(7867), 1, + anon_sym_do, + STATE(690), 1, + sym_for_clause_word, + STATE(1277), 1, + aux_sym_for_clause_repeat1, + STATE(1553), 1, + sym__for_part, + ACTIONS(2979), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(7853), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2750), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(2981), 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, + ACTIONS(7862), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_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(7636), 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, @@ -115834,50 +116830,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94765] = 3, + [95234] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7638), 23, + ACTIONS(7856), 1, + anon_sym_POUND_, + ACTIONS(7859), 1, + anon_sym_COLON, + ACTIONS(7864), 1, + anon_sym_cl, + ACTIONS(7867), 1, + anon_sym_do, + STATE(690), 1, + sym_for_clause_word, + STATE(1277), 1, + aux_sym_for_clause_repeat1, + STATE(1553), 1, + sym__for_part, + ACTIONS(2979), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(7853), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2750), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(2981), 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, + ACTIONS(7862), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_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), 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, @@ -115891,50 +116896,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94825] = 3, + [95313] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7683), 23, + ACTIONS(7872), 1, + anon_sym_POUND_, + ACTIONS(7875), 1, + anon_sym_COLON, + ACTIONS(7880), 1, + anon_sym_cl, + ACTIONS(7883), 1, + anon_sym_do, + STATE(690), 1, + sym_for_clause_word, + STATE(1277), 1, + aux_sym_for_clause_repeat1, + STATE(1553), 1, + sym__for_part, + ACTIONS(2979), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(7869), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2750), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(2981), 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, + ACTIONS(7878), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_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(7685), 29, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [95392] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7888), 1, + anon_sym_POUND_, + ACTIONS(7891), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(7896), 1, anon_sym_cl, + ACTIONS(7899), 1, + anon_sym_do, + STATE(690), 1, + sym_for_clause_word, + STATE(1277), 1, + aux_sym_for_clause_repeat1, + STATE(1553), 1, + sym__for_part, + ACTIONS(2979), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(7885), 2, + sym__ws, + sym_comment, + STATE(2750), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(2981), 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, + ACTIONS(7894), 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, @@ -115948,34 +117028,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94885] = 13, + [95471] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7787), 1, + ACTIONS(7872), 1, anon_sym_POUND_, - ACTIONS(7790), 1, + ACTIONS(7875), 1, anon_sym_COLON, - ACTIONS(7795), 1, + ACTIONS(7880), 1, anon_sym_cl, - ACTIONS(7798), 1, + ACTIONS(7883), 1, anon_sym_do, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1258), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(2346), 2, + ACTIONS(2979), 2, anon_sym_in, anon_sym_being, - ACTIONS(7784), 2, + ACTIONS(7869), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 15, + ACTIONS(2981), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -115991,7 +117071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7793), 22, + ACTIONS(7878), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -116014,34 +117094,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94964] = 13, + [95550] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7803), 1, + ACTIONS(7904), 1, anon_sym_POUND_, - ACTIONS(7806), 1, + ACTIONS(7907), 1, anon_sym_COLON, - ACTIONS(7811), 1, + ACTIONS(7912), 1, anon_sym_cl, - ACTIONS(7814), 1, + ACTIONS(7915), 1, anon_sym_do, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1258), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(2346), 2, + ACTIONS(2979), 2, anon_sym_in, anon_sym_being, - ACTIONS(7800), 2, + ACTIONS(7901), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 15, + ACTIONS(2981), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -116057,7 +117137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7809), 22, + ACTIONS(7910), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -116080,34 +117160,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95043] = 13, + [95629] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7819), 1, + ACTIONS(7920), 1, anon_sym_POUND_, - ACTIONS(7822), 1, + ACTIONS(7923), 1, anon_sym_COLON, - ACTIONS(7827), 1, + ACTIONS(7928), 1, anon_sym_cl, - ACTIONS(7830), 1, + ACTIONS(7931), 1, anon_sym_do, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1258), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(2346), 2, + ACTIONS(2979), 2, anon_sym_in, anon_sym_being, - ACTIONS(7816), 2, + ACTIONS(7917), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 15, + ACTIONS(2981), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -116123,7 +117203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7825), 22, + ACTIONS(7926), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -116146,34 +117226,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95122] = 13, + [95708] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7803), 1, + ACTIONS(7936), 1, anon_sym_POUND_, - ACTIONS(7806), 1, + ACTIONS(7939), 1, anon_sym_COLON, - ACTIONS(7811), 1, + ACTIONS(7944), 1, anon_sym_cl, - ACTIONS(7814), 1, + ACTIONS(7947), 1, anon_sym_do, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1258), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(2346), 2, + ACTIONS(2979), 2, anon_sym_in, anon_sym_being, - ACTIONS(7800), 2, + ACTIONS(7933), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 15, + ACTIONS(2981), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -116189,7 +117269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7809), 22, + ACTIONS(7942), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -116212,34 +117292,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95201] = 13, + [95787] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7835), 1, + ACTIONS(7920), 1, anon_sym_POUND_, - ACTIONS(7838), 1, + ACTIONS(7923), 1, anon_sym_COLON, - ACTIONS(7843), 1, + ACTIONS(7928), 1, anon_sym_cl, - ACTIONS(7846), 1, + ACTIONS(7931), 1, anon_sym_do, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1258), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(2346), 2, + ACTIONS(2979), 2, anon_sym_in, anon_sym_being, - ACTIONS(7832), 2, + ACTIONS(7917), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 15, + ACTIONS(2981), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -116255,7 +117335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7841), 22, + ACTIONS(7926), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -116278,34 +117358,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95280] = 13, + [95866] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7835), 1, + ACTIONS(7872), 1, anon_sym_POUND_, - ACTIONS(7838), 1, + ACTIONS(7875), 1, anon_sym_COLON, - ACTIONS(7843), 1, + ACTIONS(7880), 1, anon_sym_cl, - ACTIONS(7846), 1, + ACTIONS(7883), 1, anon_sym_do, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1258), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(2346), 2, + ACTIONS(2979), 2, anon_sym_in, anon_sym_being, - ACTIONS(7832), 2, + ACTIONS(7869), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 15, + ACTIONS(2981), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -116321,7 +117401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7841), 22, + ACTIONS(7878), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -116344,34 +117424,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95359] = 13, + [95945] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7851), 1, + ACTIONS(7952), 1, anon_sym_POUND_, - ACTIONS(7854), 1, + ACTIONS(7955), 1, anon_sym_COLON, - ACTIONS(7859), 1, + ACTIONS(7960), 1, anon_sym_cl, - ACTIONS(7862), 1, + ACTIONS(7963), 1, anon_sym_do, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1258), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(2346), 2, + ACTIONS(2979), 2, anon_sym_in, anon_sym_being, - ACTIONS(7848), 2, + ACTIONS(7949), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 15, + ACTIONS(2981), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -116387,7 +117467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7857), 22, + ACTIONS(7958), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -116410,34 +117490,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95438] = 13, + [96024] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7851), 1, + ACTIONS(7952), 1, anon_sym_POUND_, - ACTIONS(7854), 1, + ACTIONS(7955), 1, anon_sym_COLON, - ACTIONS(7859), 1, + ACTIONS(7960), 1, anon_sym_cl, - ACTIONS(7862), 1, + ACTIONS(7963), 1, anon_sym_do, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1258), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(2346), 2, + ACTIONS(2979), 2, anon_sym_in, anon_sym_being, - ACTIONS(7848), 2, + ACTIONS(7949), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 15, + ACTIONS(2981), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -116453,7 +117533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7857), 22, + ACTIONS(7958), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -116476,34 +117556,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95517] = 13, + [96103] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7867), 1, + ACTIONS(7888), 1, anon_sym_POUND_, - ACTIONS(7870), 1, + ACTIONS(7891), 1, anon_sym_COLON, - ACTIONS(7875), 1, + ACTIONS(7896), 1, anon_sym_cl, - ACTIONS(7878), 1, + ACTIONS(7899), 1, anon_sym_do, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1258), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(2346), 2, + ACTIONS(2979), 2, anon_sym_in, anon_sym_being, - ACTIONS(7864), 2, + ACTIONS(7885), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 15, + ACTIONS(2981), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -116519,7 +117599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7873), 22, + ACTIONS(7894), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -116542,34 +117622,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95596] = 13, + [96182] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7883), 1, + ACTIONS(7936), 1, anon_sym_POUND_, - ACTIONS(7886), 1, + ACTIONS(7939), 1, anon_sym_COLON, - ACTIONS(7891), 1, + ACTIONS(7944), 1, anon_sym_cl, - ACTIONS(7894), 1, + ACTIONS(7947), 1, anon_sym_do, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1258), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(2346), 2, + ACTIONS(2979), 2, anon_sym_in, anon_sym_being, - ACTIONS(7880), 2, + ACTIONS(7933), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 15, + ACTIONS(2981), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -116585,7 +117665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7889), 22, + ACTIONS(7942), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -116608,34 +117688,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95675] = 13, + [96261] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7899), 1, + ACTIONS(7968), 1, anon_sym_POUND_, - ACTIONS(7902), 1, + ACTIONS(7971), 1, anon_sym_COLON, - ACTIONS(7907), 1, + ACTIONS(7976), 1, anon_sym_cl, - ACTIONS(7910), 1, + ACTIONS(7979), 1, anon_sym_do, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1258), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(2346), 2, + ACTIONS(2979), 2, anon_sym_in, anon_sym_being, - ACTIONS(7896), 2, + ACTIONS(7965), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 15, + ACTIONS(2981), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -116651,7 +117731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7905), 22, + ACTIONS(7974), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -116674,34 +117754,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95754] = 13, + [96340] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7915), 1, + ACTIONS(7888), 1, anon_sym_POUND_, - ACTIONS(7918), 1, + ACTIONS(7891), 1, anon_sym_COLON, - ACTIONS(7923), 1, + ACTIONS(7896), 1, anon_sym_cl, - ACTIONS(7926), 1, + ACTIONS(7899), 1, anon_sym_do, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1258), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(2346), 2, + ACTIONS(2979), 2, anon_sym_in, anon_sym_being, - ACTIONS(7912), 2, + ACTIONS(7885), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 15, + ACTIONS(2981), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -116717,7 +117797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7921), 22, + ACTIONS(7894), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -116740,34 +117820,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95833] = 13, + [96419] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7931), 1, + ACTIONS(7952), 1, anon_sym_POUND_, - ACTIONS(7934), 1, + ACTIONS(7955), 1, anon_sym_COLON, + ACTIONS(7960), 1, + anon_sym_cl, + ACTIONS(7963), 1, + anon_sym_do, + STATE(690), 1, + sym_for_clause_word, + STATE(1277), 1, + aux_sym_for_clause_repeat1, + STATE(1553), 1, + sym__for_part, + ACTIONS(2979), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(7949), 2, + sym__ws, + sym_comment, + STATE(2750), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(2981), 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, + ACTIONS(7958), 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, + [96498] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7936), 1, + anon_sym_POUND_, ACTIONS(7939), 1, + anon_sym_COLON, + ACTIONS(7944), 1, anon_sym_cl, - ACTIONS(7948), 1, + ACTIONS(7947), 1, anon_sym_do, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1258), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(7928), 2, + ACTIONS(2979), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(7933), 2, sym__ws, sym_comment, - ACTIONS(7942), 2, + STATE(2750), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(2981), 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, + ACTIONS(7942), 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, + [96577] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7968), 1, + anon_sym_POUND_, + ACTIONS(7971), 1, + anon_sym_COLON, + ACTIONS(7976), 1, + anon_sym_cl, + ACTIONS(7979), 1, + anon_sym_do, + STATE(690), 1, + sym_for_clause_word, + STATE(1277), 1, + aux_sym_for_clause_repeat1, + STATE(1553), 1, + sym__for_part, + ACTIONS(2979), 2, anon_sym_in, anon_sym_being, - STATE(2726), 3, + ACTIONS(7965), 2, + sym__ws, + sym_comment, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(7945), 15, + ACTIONS(2981), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -116783,7 +117995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7937), 22, + ACTIONS(7974), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -116806,34 +118018,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95912] = 13, + [96656] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7899), 1, + ACTIONS(7984), 1, anon_sym_POUND_, - ACTIONS(7902), 1, + ACTIONS(7987), 1, anon_sym_COLON, - ACTIONS(7907), 1, + ACTIONS(7992), 1, anon_sym_cl, - ACTIONS(7910), 1, + ACTIONS(7995), 1, anon_sym_do, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1258), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(2346), 2, + ACTIONS(2979), 2, anon_sym_in, anon_sym_being, - ACTIONS(7896), 2, + ACTIONS(7981), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 15, + ACTIONS(2981), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -116849,7 +118061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7905), 22, + ACTIONS(7990), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -116872,34 +118084,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95991] = 13, + [96735] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7867), 1, + ACTIONS(8000), 1, anon_sym_POUND_, - ACTIONS(7870), 1, + ACTIONS(8003), 1, anon_sym_COLON, - ACTIONS(7875), 1, + ACTIONS(8008), 1, anon_sym_cl, - ACTIONS(7878), 1, + ACTIONS(8011), 1, anon_sym_do, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1258), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(2346), 2, + ACTIONS(2979), 2, anon_sym_in, anon_sym_being, - ACTIONS(7864), 2, + ACTIONS(7997), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 15, + ACTIONS(2981), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -116915,7 +118127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7873), 22, + ACTIONS(8006), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -116938,34 +118150,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96070] = 13, + [96814] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7953), 1, + ACTIONS(8016), 1, anon_sym_POUND_, - ACTIONS(7956), 1, + ACTIONS(8019), 1, anon_sym_COLON, - ACTIONS(7961), 1, + ACTIONS(8024), 1, anon_sym_cl, - ACTIONS(7964), 1, + ACTIONS(8027), 1, anon_sym_do, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1258), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(2346), 2, + ACTIONS(2979), 2, anon_sym_in, anon_sym_being, - ACTIONS(7950), 2, + ACTIONS(8013), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 15, + ACTIONS(2981), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -116981,7 +118193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7959), 22, + ACTIONS(8022), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -117004,34 +118216,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96149] = 13, + [96893] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7969), 1, + ACTIONS(8032), 1, anon_sym_POUND_, - ACTIONS(7972), 1, + ACTIONS(8035), 1, anon_sym_COLON, - ACTIONS(7977), 1, + ACTIONS(8040), 1, anon_sym_cl, - ACTIONS(7980), 1, + ACTIONS(8049), 1, anon_sym_do, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1258), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(2346), 2, + ACTIONS(8029), 2, + sym__ws, + sym_comment, + ACTIONS(8043), 2, anon_sym_in, anon_sym_being, - ACTIONS(7966), 2, + STATE(2750), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8046), 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, + ACTIONS(8038), 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, + [96972] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8000), 1, + anon_sym_POUND_, + ACTIONS(8003), 1, + anon_sym_COLON, + ACTIONS(8008), 1, + anon_sym_cl, + ACTIONS(8011), 1, + anon_sym_do, + STATE(690), 1, + sym_for_clause_word, + STATE(1277), 1, + aux_sym_for_clause_repeat1, + STATE(1553), 1, + sym__for_part, + ACTIONS(2979), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(7997), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 15, + ACTIONS(2981), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -117047,7 +118325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7975), 22, + ACTIONS(8006), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -117070,34 +118348,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96228] = 13, + [97051] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7985), 1, + ACTIONS(7856), 1, anon_sym_POUND_, - ACTIONS(7988), 1, + ACTIONS(7859), 1, anon_sym_COLON, - ACTIONS(7993), 1, + ACTIONS(7864), 1, anon_sym_cl, - ACTIONS(7996), 1, + ACTIONS(7867), 1, anon_sym_do, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1258), 1, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(2346), 2, + ACTIONS(2979), 2, anon_sym_in, anon_sym_being, - ACTIONS(7982), 2, + ACTIONS(7853), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 15, + ACTIONS(2981), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -117113,7 +118391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7991), 22, + ACTIONS(7862), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -117136,34 +118414,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96307] = 13, + [97130] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7969), 1, + ACTIONS(8016), 1, anon_sym_POUND_, - ACTIONS(7972), 1, + ACTIONS(8019), 1, anon_sym_COLON, - ACTIONS(7977), 1, + ACTIONS(8024), 1, anon_sym_cl, - ACTIONS(7980), 1, + ACTIONS(8027), 1, anon_sym_do, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1258), 1, + STATE(1277), 1, + aux_sym_for_clause_repeat1, + STATE(1553), 1, + sym__for_part, + ACTIONS(2979), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(8013), 2, + sym__ws, + sym_comment, + STATE(2750), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(2981), 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, + ACTIONS(8022), 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, + [97209] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8016), 1, + anon_sym_POUND_, + ACTIONS(8019), 1, + anon_sym_COLON, + ACTIONS(8024), 1, + anon_sym_cl, + ACTIONS(8027), 1, + anon_sym_do, + STATE(690), 1, + sym_for_clause_word, + STATE(1277), 1, + aux_sym_for_clause_repeat1, + STATE(1553), 1, + sym__for_part, + ACTIONS(2979), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(8013), 2, + sym__ws, + sym_comment, + STATE(2750), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(2981), 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, + ACTIONS(8022), 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, + [97288] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8054), 1, + anon_sym_POUND_, + ACTIONS(8057), 1, + anon_sym_COLON, + ACTIONS(8062), 1, + anon_sym_cl, + ACTIONS(8065), 1, + anon_sym_do, + STATE(690), 1, + sym_for_clause_word, + STATE(1277), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(2346), 2, + ACTIONS(2979), 2, anon_sym_in, anon_sym_being, - ACTIONS(7966), 2, + ACTIONS(8051), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 15, + ACTIONS(2981), 15, anon_sym_across, anon_sym_using, aux_sym_for_clause_word_token1, @@ -117179,7 +118589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - ACTIONS(7975), 22, + ACTIONS(8060), 22, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -117202,12 +118612,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96386] = 4, + [97367] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7998), 1, + ACTIONS(8067), 1, aux_sym_num_lit_token2, - ACTIONS(7350), 23, + ACTIONS(7419), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117231,7 +118641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7352), 26, + ACTIONS(7421), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117258,88 +118668,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96446] = 27, + [97427] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, - anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(8010), 1, - anon_sym_RPAREN, - ACTIONS(8012), 1, - anon_sym_cl, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [96551] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7691), 23, + ACTIONS(7658), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117363,7 +118695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7693), 26, + ACTIONS(7660), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117390,10 +118722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96608] = 3, + [97484] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7417), 23, + ACTIONS(7775), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117417,7 +118749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7419), 26, + ACTIONS(7777), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117444,3364 +118776,6328 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [96665] = 3, + [97541] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7424), 23, - sym__ws, - sym_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7426), 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, + ACTIONS(8079), 1, + anon_sym_RPAREN, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [96722] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7432), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [97646] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7434), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [96779] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7439), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8105), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8103), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1286), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [97751] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7441), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [96836] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7443), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8105), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [97856] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7445), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [96893] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7451), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8107), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [97961] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7453), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [96950] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7546), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8107), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8109), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1288), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [98066] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7548), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [97007] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7570), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8113), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8111), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1289), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [98171] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7572), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [97064] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7594), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8113), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [98276] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7596), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [97121] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7602), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8117), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8115), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1319), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [98381] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7604), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [97178] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7399), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8121), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8119), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1292), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [98486] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7401), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [97235] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7630), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8123), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [98591] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7632), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [97292] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7634), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8127), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8125), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1295), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [98696] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7636), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [97349] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7638), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8127), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [98801] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [97406] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7683), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8129), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [98906] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7685), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [97463] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7698), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8129), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8131), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1297), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [99011] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7700), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [97520] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7618), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8135), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8133), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1298), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [99116] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7620), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [97577] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7770), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8135), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [99221] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [97634] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7766), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8139), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8137), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1301), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 9, + sym_list_lit, + sym_for_clause, + sym_with_clause, + sym_do_clause, + sym_while_clause, + sym_repeat_clause, + sym_condition_clause, + sym_accumulation_clause, + sym_termination_clause, + [99326] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [97691] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7752), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8141), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [99431] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [97748] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7744), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8145), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8143), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1303), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [97805] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7736), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8145), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [99641] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [97862] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7722), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8147), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [99746] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7724), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [97919] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7718), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8147), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8149), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1305), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [99851] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7720), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [97976] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7714), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8153), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8151), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1306), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [99956] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7716), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [98033] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7710), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8153), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [100061] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7712), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [98090] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7702), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8157), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8155), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1309), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [100166] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7704), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [98147] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7511), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8159), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [100271] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7513), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [98204] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7671), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8163), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8161), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1311), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [100376] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7673), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [98261] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7667), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8163), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [100481] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7669), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [98318] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7663), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8165), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [100586] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7665), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [98375] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7598), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8165), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8167), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1313), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [100691] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7600), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [98432] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7405), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8171), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8169), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1314), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [100796] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7407), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [98489] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7586), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8171), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [100901] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7588), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(8081), 1, + anon_sym_cl, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8175), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8173), 2, + sym__ws, + sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1317), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [101006] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, + anon_sym_POUND_, + ACTIONS(8073), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [98546] = 3, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8177), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, + sym__ws, + sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [101111] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7574), 23, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, + anon_sym_POUND_, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(8081), 1, + anon_sym_cl, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8179), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [101216] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 1, anon_sym_POUND_CARET, + ACTIONS(8081), 1, + anon_sym_cl, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8177), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8181), 2, + sym__ws, + sym_comment, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [101321] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 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(7576), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(8071), 1, + anon_sym_POUND_, + ACTIONS(8073), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [98603] = 3, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8185), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8183), 2, + sym__ws, + sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1320), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [101426] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7542), 23, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, + anon_sym_POUND_, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(8081), 1, + anon_sym_cl, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8185), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [101531] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 1, anon_sym_POUND_CARET, + ACTIONS(8081), 1, + anon_sym_cl, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8187), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, + sym__ws, + sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [101636] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 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(7544), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(8071), 1, + anon_sym_POUND_, + ACTIONS(8073), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [98660] = 3, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8187), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8189), 2, + sym__ws, + sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1323), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [101741] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7538), 23, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, + anon_sym_POUND_, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(8081), 1, + anon_sym_cl, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8193), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8191), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1324), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [101846] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 1, anon_sym_POUND_CARET, + ACTIONS(8081), 1, + anon_sym_cl, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8193), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, + sym__ws, + sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [101951] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 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(7540), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(8071), 1, + anon_sym_POUND_, + ACTIONS(8073), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [98717] = 3, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8197), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8195), 2, + sym__ws, + sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1327), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [102056] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7526), 23, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, + anon_sym_POUND_, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(8081), 1, + anon_sym_cl, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8199), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [102161] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 1, anon_sym_POUND_CARET, + ACTIONS(8081), 1, + anon_sym_cl, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8203), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8201), 2, + sym__ws, + sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1329), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [102266] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 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(7528), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(8071), 1, + anon_sym_POUND_, + ACTIONS(8073), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [98774] = 3, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8203), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, + sym__ws, + sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [102371] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7463), 23, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, + anon_sym_POUND_, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(8081), 1, + anon_sym_cl, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8205), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [102476] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 1, anon_sym_POUND_CARET, + ACTIONS(8081), 1, + anon_sym_cl, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8205), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8207), 2, + sym__ws, + sym_comment, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [102581] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 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(7465), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(8071), 1, + anon_sym_POUND_, + ACTIONS(8073), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [98831] = 3, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8211), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8209), 2, + sym__ws, + sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1332), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [102686] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7515), 23, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, + anon_sym_POUND_, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(8081), 1, + anon_sym_cl, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8211), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [102791] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 1, anon_sym_POUND_CARET, + ACTIONS(8081), 1, + anon_sym_cl, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8215), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8213), 2, + sym__ws, + sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1335), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [102896] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 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(7517), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(8071), 1, + anon_sym_POUND_, + ACTIONS(8073), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [98888] = 3, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8217), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, + sym__ws, + sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [103001] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, + anon_sym_POUND_, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(8081), 1, + anon_sym_cl, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8221), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8219), 2, + sym__ws, + sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1337), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [103106] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7511), 23, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, + anon_sym_POUND_, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(8081), 1, + anon_sym_cl, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8221), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [103211] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 1, anon_sym_POUND_CARET, + ACTIONS(8081), 1, + anon_sym_cl, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8223), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, + sym__ws, + sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [103316] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 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(7513), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(8071), 1, + anon_sym_POUND_, + ACTIONS(8073), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [98945] = 3, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8223), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8225), 2, + sym__ws, + sym_comment, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [103421] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7534), 23, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, + anon_sym_POUND_, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(8081), 1, + anon_sym_cl, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8229), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8227), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1364), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [103526] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 1, anon_sym_POUND_CARET, + ACTIONS(8081), 1, + anon_sym_cl, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8233), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8231), 2, + sym__ws, + sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1340), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [103631] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 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(7536), 26, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(8071), 1, + anon_sym_POUND_, + ACTIONS(8073), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [99002] = 3, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8233), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, + sym__ws, + sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [103736] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7499), 23, - sym__ws, - sym_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7501), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [99059] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7483), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8237), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8235), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1344), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [103841] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8242), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8245), 1, + anon_sym_COLON, + ACTIONS(8248), 1, anon_sym_CARET, + ACTIONS(8251), 1, anon_sym_POUND_CARET, + ACTIONS(8254), 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(7485), 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, + ACTIONS(8257), 1, + anon_sym_RPAREN, + ACTIONS(8259), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [99116] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7479), 23, + ACTIONS(8262), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8268), 1, + anon_sym_and, + ACTIONS(8271), 1, + anon_sym_with, + ACTIONS(8274), 1, + anon_sym_do, + ACTIONS(8280), 1, + anon_sym_repeat, + ACTIONS(8286), 1, + anon_sym_else, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8239), 2, sym__ws, sym_comment, + ACTIONS(8265), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8277), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8289), 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(8283), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [103946] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7481), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [99173] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7475), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8292), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [104051] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7477), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [99230] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7511), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8296), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8294), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1347), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [104156] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7513), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [99287] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8034), 1, - anon_sym_COLON, - ACTIONS(8036), 1, - anon_sym_COLON_COLON, - ACTIONS(7393), 22, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8296), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [104261] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7395), 25, - 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [99348] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7409), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8229), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [104366] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7411), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [99405] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7393), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8298), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [104471] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7395), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [99462] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7428), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8298), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8300), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1349), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [104576] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7430), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [99519] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7503), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8304), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8302), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1351), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [104681] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7505), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [99576] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7459), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8304), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [104786] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7461), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [99633] = 5, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8308), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8306), 2, + sym__ws, + sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1354), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [104891] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8034), 1, - anon_sym_COLON, - ACTIONS(8036), 1, - anon_sym_COLON_COLON, - ACTIONS(7626), 22, - sym__ws, - sym_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7628), 25, - 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [99694] = 5, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8310), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, + sym__ws, + sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [104996] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8034), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, + anon_sym_POUND_, + ACTIONS(8073), 1, anon_sym_COLON, - ACTIONS(8036), 1, - anon_sym_COLON_COLON, - ACTIONS(7372), 22, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(8081), 1, + anon_sym_cl, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8314), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8312), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1356), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [105101] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7374), 25, - 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [99755] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7447), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8314), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [105206] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7449), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [99812] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7648), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8316), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [105311] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7650), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [99869] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7364), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8316), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8318), 2, sym__ws, sym_comment, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [105416] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7366), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [99926] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7368), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8322), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8320), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1359), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [105521] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7370), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [99983] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7381), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8322), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [105626] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7383), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [100040] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7385), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8326), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8324), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1362), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [105731] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7387), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [100097] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7389), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8328), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, sym__ws, sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [105836] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7391), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [100154] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7389), 23, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8328), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8330), 2, sym__ws, sym_comment, + ACTIONS(8101), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1366), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [105941] = 27, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8071), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 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(7391), 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, + ACTIONS(8081), 1, anon_sym_cl, - anon_sym_in, - anon_sym_across, - anon_sym_being, - anon_sym_using, - anon_sym_below, - anon_sym_above, - anon_sym_from, - anon_sym_to, - anon_sym_upto, - anon_sym_upfrom, - anon_sym_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [100211] = 3, + ACTIONS(8083), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(8087), 1, + anon_sym_and, + ACTIONS(8089), 1, + anon_sym_with, + ACTIONS(8091), 1, + anon_sym_do, + ACTIONS(8095), 1, + anon_sym_repeat, + ACTIONS(8099), 1, + anon_sym_else, + ACTIONS(8332), 1, + anon_sym_RPAREN, + STATE(704), 1, + sym_accumulation_verb, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8069), 2, + sym__ws, + sym_comment, + ACTIONS(8085), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8093), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(8101), 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(8097), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2726), 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, + [106046] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7455), 23, + ACTIONS(7814), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120825,7 +125121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7457), 26, + ACTIONS(7816), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120852,10 +125148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100268] = 3, + [106103] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7467), 23, + ACTIONS(7814), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120879,7 +125175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7469), 26, + ACTIONS(7816), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120906,10 +125202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100325] = 3, + [106160] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7471), 23, + ACTIONS(7810), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120933,7 +125229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7473), 26, + ACTIONS(7812), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120960,10 +125256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100382] = 3, + [106217] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7471), 23, + ACTIONS(7806), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120987,7 +125283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7473), 26, + ACTIONS(7808), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121014,14 +125310,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100439] = 3, + [106274] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7487), 23, + ACTIONS(8334), 1, + anon_sym_COLON, + ACTIONS(8336), 1, + anon_sym_COLON_COLON, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -121041,11 +125340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7489), 26, + ACTIONS(7431), 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, @@ -121068,10 +125366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100496] = 3, + [106335] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7491), 23, + ACTIONS(7802), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121095,7 +125393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7493), 26, + ACTIONS(7804), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121122,10 +125420,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100553] = 3, + [106392] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7495), 23, + ACTIONS(7802), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121149,7 +125447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7497), 26, + ACTIONS(7804), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121176,10 +125474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100610] = 3, + [106449] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7507), 23, + ACTIONS(7810), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121203,7 +125501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7509), 26, + ACTIONS(7812), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121230,10 +125528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100667] = 3, + [106506] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7495), 23, + ACTIONS(7806), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121257,7 +125555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7497), 26, + ACTIONS(7808), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121284,10 +125582,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100724] = 3, + [106563] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7507), 23, + ACTIONS(7802), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121311,7 +125609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7509), 26, + ACTIONS(7804), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121338,10 +125636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100781] = 3, + [106620] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7519), 23, + ACTIONS(7802), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121365,7 +125663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7521), 26, + ACTIONS(7804), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121392,10 +125690,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100838] = 3, + [106677] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7530), 23, + ACTIONS(7798), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121419,7 +125717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7532), 26, + ACTIONS(7800), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121446,10 +125744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100895] = 3, + [106734] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7550), 23, + ACTIONS(7783), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121473,7 +125771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7552), 26, + ACTIONS(7785), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121500,10 +125798,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [100952] = 3, + [106791] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7554), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121527,7 +125825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7556), 26, + ACTIONS(7781), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121554,10 +125852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101009] = 3, + [106848] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7558), 23, + ACTIONS(7775), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121581,7 +125879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7560), 26, + ACTIONS(7777), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121608,10 +125906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101066] = 3, + [106905] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7562), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121635,7 +125933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7564), 26, + ACTIONS(7781), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121662,10 +125960,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101123] = 3, + [106962] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7562), 23, + ACTIONS(7775), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121689,7 +125987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7564), 26, + ACTIONS(7777), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121716,10 +126014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101180] = 3, + [107019] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7566), 23, + ACTIONS(7771), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121743,7 +126041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7568), 26, + ACTIONS(7773), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121770,10 +126068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101237] = 3, + [107076] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7566), 23, + ACTIONS(7783), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121797,7 +126095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7568), 26, + ACTIONS(7785), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121824,10 +126122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101294] = 3, + [107133] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7578), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121851,7 +126149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7580), 26, + ACTIONS(7781), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121878,10 +126176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101351] = 3, + [107190] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7582), 23, + ACTIONS(7736), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121905,7 +126203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7584), 26, + ACTIONS(7738), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121932,10 +126230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101408] = 3, + [107247] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7590), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121959,7 +126257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7592), 26, + ACTIONS(7781), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121986,10 +126284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101465] = 3, + [107304] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7606), 23, + ACTIONS(7775), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122013,7 +126311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7608), 26, + ACTIONS(7777), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122040,10 +126338,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101522] = 3, + [107361] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7610), 23, + ACTIONS(7771), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122067,7 +126365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7612), 26, + ACTIONS(7773), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122094,10 +126392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101579] = 3, + [107418] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7614), 23, + ACTIONS(7767), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122121,7 +126419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7616), 26, + ACTIONS(7769), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122148,10 +126446,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101636] = 3, + [107475] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7622), 23, + ACTIONS(7763), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122175,7 +126473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7624), 26, + ACTIONS(7765), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122202,10 +126500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101693] = 3, + [107532] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7655), 23, + ACTIONS(7759), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122229,7 +126527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7657), 26, + ACTIONS(7761), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122256,10 +126554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101750] = 3, + [107589] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7655), 23, + ACTIONS(7755), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122283,7 +126581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7657), 26, + ACTIONS(7757), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122310,10 +126608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101807] = 3, + [107646] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7614), 23, + ACTIONS(7755), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122337,7 +126635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7616), 26, + ACTIONS(7757), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122364,10 +126662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101864] = 3, + [107703] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7622), 23, + ACTIONS(7751), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122391,7 +126689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7624), 26, + ACTIONS(7753), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122418,10 +126716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101921] = 3, + [107760] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7655), 23, + ACTIONS(7747), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122445,7 +126743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7657), 26, + ACTIONS(7749), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122472,10 +126770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [101978] = 3, + [107817] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7655), 23, + ACTIONS(7755), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122499,7 +126797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7657), 26, + ACTIONS(7757), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122526,10 +126824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102035] = 3, + [107874] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7659), 23, + ACTIONS(7755), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122553,7 +126851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7661), 26, + ACTIONS(7757), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122580,10 +126878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102092] = 3, + [107931] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7675), 23, + ACTIONS(7751), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122607,7 +126905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7677), 26, + ACTIONS(7753), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122634,10 +126932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102149] = 3, + [107988] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7679), 23, + ACTIONS(7747), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122661,7 +126959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7681), 26, + ACTIONS(7749), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122688,10 +126986,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102206] = 3, + [108045] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7687), 23, + ACTIONS(7743), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122715,7 +127013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7689), 26, + ACTIONS(7745), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122742,10 +127040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102263] = 3, + [108102] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7691), 23, + ACTIONS(7732), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122769,7 +127067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7693), 26, + ACTIONS(7734), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122796,10 +127094,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102320] = 3, + [108159] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 23, + ACTIONS(7728), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122823,7 +127121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7708), 26, + ACTIONS(7730), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122850,88 +127148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102377] = 27, + [108216] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, - anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(8012), 1, - anon_sym_cl, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8038), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [102482] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7706), 23, + ACTIONS(7724), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122955,7 +127175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7708), 26, + ACTIONS(7726), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122982,10 +127202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102539] = 3, + [108273] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7726), 23, + ACTIONS(7720), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123009,7 +127229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7728), 26, + ACTIONS(7722), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123036,10 +127256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102596] = 3, + [108330] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7687), 23, + ACTIONS(7716), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123063,7 +127283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7689), 26, + ACTIONS(7718), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123090,10 +127310,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102653] = 3, + [108387] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7691), 23, + ACTIONS(7716), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123117,7 +127337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7693), 26, + ACTIONS(7718), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123144,10 +127364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102710] = 3, + [108444] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 23, + ACTIONS(7712), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123171,7 +127391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7708), 26, + ACTIONS(7714), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123198,10 +127418,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102767] = 3, + [108501] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7691), 23, + ACTIONS(7712), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123225,7 +127445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7693), 26, + ACTIONS(7714), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123252,10 +127472,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102824] = 3, + [108558] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 23, + ACTIONS(7708), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123279,7 +127499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7708), 26, + ACTIONS(7710), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123306,10 +127526,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102881] = 3, + [108615] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7726), 23, + ACTIONS(7700), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123333,7 +127553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7728), 26, + ACTIONS(7702), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123360,10 +127580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102938] = 3, + [108672] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7356), 23, + ACTIONS(7688), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123387,7 +127607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7358), 26, + ACTIONS(7690), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123414,10 +127634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [102995] = 3, + [108729] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7740), 23, + ACTIONS(7684), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123441,7 +127661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7742), 26, + ACTIONS(7686), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123468,10 +127688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103052] = 3, + [108786] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7740), 23, + ACTIONS(7676), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123495,7 +127715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7742), 26, + ACTIONS(7678), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123522,10 +127742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103109] = 3, + [108843] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 23, + ACTIONS(7662), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123549,7 +127769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7750), 26, + ACTIONS(7664), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123576,10 +127796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103166] = 3, + [108900] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7756), 23, + ACTIONS(7662), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123603,7 +127823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7758), 26, + ACTIONS(7664), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123630,10 +127850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103223] = 3, + [108957] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7740), 23, + ACTIONS(7658), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123657,7 +127877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7742), 26, + ACTIONS(7660), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123684,88 +127904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103280] = 27, + [109014] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, - anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(8012), 1, - anon_sym_cl, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8042), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8040), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1394), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [103385] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7740), 23, + ACTIONS(7646), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123789,7 +127931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7742), 26, + ACTIONS(7648), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123816,10 +127958,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103442] = 3, + [109071] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 23, + ACTIONS(7630), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123843,7 +127985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7750), 26, + ACTIONS(7632), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123870,10 +128012,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103499] = 3, + [109128] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7756), 23, + ACTIONS(7614), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123897,7 +128039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7758), 26, + ACTIONS(7616), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123924,10 +128066,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103556] = 3, + [109185] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7360), 23, + ACTIONS(7614), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -123951,7 +128093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7362), 26, + ACTIONS(7616), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123978,10 +128120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [103613] = 3, + [109242] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7360), 23, + ACTIONS(7606), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -124005,7 +128147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7362), 26, + ACTIONS(7608), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124017,4159 +128159,2455 @@ static const uint16_t ts_small_parse_table[] = { 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, - [103670] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, - anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(8012), 1, - anon_sym_cl, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8044), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [103775] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, - anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(8012), 1, - anon_sym_cl, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8048), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8046), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1390), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [103880] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, - anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(8012), 1, - anon_sym_cl, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8048), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [103985] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, - anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(8012), 1, - anon_sym_cl, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8052), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8050), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1392), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [104090] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, - anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(8012), 1, - anon_sym_cl, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8054), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [104195] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, - anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(8012), 1, - anon_sym_cl, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8054), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8056), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1408), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [104300] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, - anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(8012), 1, - anon_sym_cl, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8060), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8058), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1409), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [104405] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, - anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(8012), 1, - anon_sym_cl, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8060), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [104510] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, - anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(8012), 1, - anon_sym_cl, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8064), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8062), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1397), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [104615] = 27, + 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, + [109299] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7602), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7604), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8066), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [104720] = 27, + 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, + [109356] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7594), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7596), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8070), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8068), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1399), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [104825] = 27, + 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, + [109413] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7594), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7596), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8070), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [104930] = 27, + 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, + [109470] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7425), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7427), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8072), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [105035] = 27, + 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, + [109527] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7554), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7556), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8072), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8074), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1401), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [105140] = 27, + 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, + [109584] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7586), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7588), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8078), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8076), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1414), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [105245] = 27, + 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, + [109641] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7582), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7584), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8082), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8080), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1402), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [105350] = 27, + 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, + [109698] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7574), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7576), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8082), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [105455] = 27, + 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, + [109755] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8087), 1, + ACTIONS(7570), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8090), 1, - anon_sym_COLON, - ACTIONS(8093), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8096), 1, anon_sym_POUND_CARET, - ACTIONS(8099), 1, anon_sym_LPAREN, - ACTIONS(8102), 1, - anon_sym_RPAREN, - ACTIONS(8104), 1, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + aux_sym_for_clause_word_token1, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7572), 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, - ACTIONS(8107), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8113), 1, - anon_sym_and, - ACTIONS(8116), 1, - anon_sym_with, - ACTIONS(8119), 1, - anon_sym_do, - ACTIONS(8125), 1, - anon_sym_repeat, - ACTIONS(8131), 1, - anon_sym_else, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8084), 2, - sym__ws, - sym_comment, - ACTIONS(8110), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8122), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8134), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8128), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [105560] = 27, + 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, + [109812] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7562), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7564), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8078), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [105665] = 27, + 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, + [109869] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7558), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7560), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8052), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [105770] = 27, + 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, + [109926] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7839), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8137), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [105875] = 27, + 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, + [109983] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7438), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7440), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8141), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8139), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1410), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [105980] = 27, + 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, + [110040] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7442), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7444), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8141), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [106085] = 27, + 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, + [110097] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7446), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7448), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8143), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [106190] = 27, + 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, + [110154] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7450), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7452), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8145), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [106295] = 27, + 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, + [110211] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7454), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7456), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8143), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8147), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1412), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [106400] = 27, + 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, + [110268] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7458), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7460), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8151), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8149), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1413), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [106505] = 27, + 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, + [110325] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7462), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7464), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8151), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [106610] = 27, + 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, + [110382] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7466), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7468), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8155), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8153), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1417), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [106715] = 27, + 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, + [110439] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7470), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7472), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8145), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8157), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1435), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [106820] = 27, + 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, + [110496] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7474), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7476), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8161), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8159), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1406), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [106925] = 27, + 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, + [110553] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7478), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7480), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8163), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [107030] = 27, + 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, + [110610] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7482), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7484), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8167), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8165), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1421), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [107135] = 27, + 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, + [110667] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7486), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7488), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8167), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [107240] = 27, + 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, + [110724] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7490), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7492), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8169), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [107345] = 27, + 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, + [110781] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7494), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7496), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8169), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8171), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1423), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [107450] = 27, + 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, + [110838] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7498), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7500), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8175), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8173), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1424), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [107555] = 27, + 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, + [110895] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7502), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7504), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8175), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [107660] = 27, + 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, + [110952] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7506), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7508), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8177), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [107765] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7510), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7512), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8181), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8179), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1428), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [107870] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7514), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7516), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8181), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [107975] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7518), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7520), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8183), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, + anon_sym_in, + anon_sym_across, + anon_sym_being, + anon_sym_using, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + anon_sym_upto, + anon_sym_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(7522), 23, sym__ws, sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [108080] = 27, + 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(7524), 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, + [111237] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7526), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7528), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8183), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8185), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1430), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [108185] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7530), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7532), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8189), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8187), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1431), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [108290] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7534), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7536), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8189), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [108395] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7538), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7540), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8191), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [108500] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7542), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7544), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8195), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8193), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1434), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [108605] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7546), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7548), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8197), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [108710] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7550), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7552), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8201), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8199), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1437), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [108815] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7566), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7568), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8201), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [108920] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7578), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7580), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8203), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [109025] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7590), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7592), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8203), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8205), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1439), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [109130] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7598), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8010), 1, - anon_sym_RPAREN, - ACTIONS(8012), 1, - anon_sym_cl, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8207), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1440), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [109235] = 3, + anon_sym_LPAREN, + anon_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(7600), 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, + [111864] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7413), 23, + ACTIONS(7610), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -128193,7 +130631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(7415), 26, + ACTIONS(7612), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128220,1968 +130658,1096 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [109292] = 27, + [111921] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7618), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7620), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8211), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8209), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1427), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [109397] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7622), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7624), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8213), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [109502] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7626), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8217), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8215), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1445), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [109607] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7538), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7540), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8217), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [109712] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7634), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7636), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8219), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [109817] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7638), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8219), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8221), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1447), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [109922] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7642), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7644), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8225), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8223), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1448), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [110027] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7650), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8225), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [110132] = 27, + 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] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7654), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8229), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8227), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1451), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [110237] = 27, + 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, + [112434] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7538), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7540), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8231), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [110342] = 27, + 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, + [112491] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, - anon_sym_POUND_, - ACTIONS(8004), 1, + ACTIONS(8334), 1, anon_sym_COLON, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(8012), 1, - anon_sym_cl, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8235), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8233), 2, + ACTIONS(8336), 1, + anon_sym_COLON_COLON, + ACTIONS(7666), 22, sym__ws, sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1453), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [110447] = 27, + anon_sym_POUND_, + anon_sym_DQUOTE, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + 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(7668), 25, + 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_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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7672), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7674), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8235), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [110552] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7666), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7668), 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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8237), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [110657] = 27, + 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(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7680), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8237), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8239), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1455), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [110762] = 27, + 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] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7692), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8243), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8241), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1456), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [110867] = 27, + 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, + [112780] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, + ACTIONS(7696), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(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, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8243), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [110972] = 27, + 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, + [112837] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, - anon_sym_POUND_, - ACTIONS(8004), 1, + ACTIONS(8334), 1, anon_sym_COLON, - ACTIONS(8006), 1, + ACTIONS(8336), 1, + anon_sym_COLON_COLON, + ACTIONS(7704), 22, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 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(7706), 25, + 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(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, + 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, + [112898] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8338), 1, + aux_sym_num_lit_token2, + ACTIONS(7421), 3, + anon_sym_in, + anon_sym_being, anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8247), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8245), 2, + ACTIONS(7419), 42, sym__ws, sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1266), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [111077] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, anon_sym_POUND_, - ACTIONS(8004), 1, anon_sym_COLON, - ACTIONS(8006), 1, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(8014), 1, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + 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, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8251), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(8024), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(8249), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1459), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2711), 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, - [111182] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, - anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(8012), 1, - anon_sym_cl, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, anon_sym_else, - ACTIONS(8038), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8253), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1463), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [111287] = 27, + [112954] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, - anon_sym_POUND_, - ACTIONS(8004), 1, + ACTIONS(7738), 4, anon_sym_COLON, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(8012), 1, - anon_sym_cl, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, + anon_sym_in, + anon_sym_being, anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8255), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, + ACTIONS(7736), 42, sym__ws, sym_comment, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [111392] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, + anon_sym_COLON_COLON, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(8014), 1, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + 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, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8257), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(8024), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2711), 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, - [111497] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, - anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(8012), 1, - anon_sym_cl, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, anon_sym_else, - ACTIONS(8257), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8259), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1467), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [111602] = 27, + [113008] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, - anon_sym_POUND_, - ACTIONS(8004), 1, + ACTIONS(8340), 1, anon_sym_COLON, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(8012), 1, - anon_sym_cl, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, + ACTIONS(8342), 1, + anon_sym_COLON_COLON, + ACTIONS(7668), 3, + anon_sym_in, + anon_sym_being, anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8263), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8261), 2, + ACTIONS(7666), 41, sym__ws, sym_comment, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1369), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [111707] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(8012), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(8014), 1, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + 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, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, - anon_sym_else, - ACTIONS(8263), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8000), 2, - sym__ws, - sym_comment, - ACTIONS(8016), 2, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(8024), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(8032), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1407), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2711), 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, - [111812] = 27, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8002), 1, - anon_sym_POUND_, - ACTIONS(8004), 1, - anon_sym_COLON, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(8012), 1, - anon_sym_cl, - ACTIONS(8014), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(8018), 1, - anon_sym_and, - ACTIONS(8020), 1, - anon_sym_with, - ACTIONS(8022), 1, - anon_sym_do, - ACTIONS(8026), 1, - anon_sym_repeat, - ACTIONS(8030), 1, anon_sym_else, - ACTIONS(8267), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym_accumulation_verb, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(8016), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(8024), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(8265), 2, - sym__ws, - sym_comment, - ACTIONS(8032), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1464), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(8028), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(2711), 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, - [111917] = 5, + [113066] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8269), 1, + ACTIONS(8340), 1, anon_sym_COLON, - ACTIONS(8271), 1, + ACTIONS(8342), 1, anon_sym_COLON_COLON, - ACTIONS(7628), 3, + ACTIONS(7706), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7626), 41, + ACTIONS(7704), 41, sym__ws, sym_comment, anon_sym_POUND_, @@ -130223,18 +131789,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [111975] = 5, + [113124] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8269), 1, + ACTIONS(8340), 1, anon_sym_COLON, - ACTIONS(8271), 1, + ACTIONS(8342), 1, anon_sym_COLON_COLON, - ACTIONS(7395), 3, + ACTIONS(7431), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7393), 41, + ACTIONS(7429), 41, sym__ws, sym_comment, anon_sym_POUND_, @@ -130276,16 +131842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112033] = 4, + [113182] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8273), 1, - aux_sym_num_lit_token2, - ACTIONS(7352), 3, + ACTIONS(7773), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7350), 42, + ACTIONS(7771), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -130328,21 +131892,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112089] = 5, + [113235] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8269), 1, - anon_sym_COLON, - ACTIONS(8271), 1, - anon_sym_COLON_COLON, - ACTIONS(7374), 3, + ACTIONS(7604), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7372), 41, + ACTIONS(7602), 42, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -130381,19 +131942,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112147] = 3, + [113288] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7449), 4, - anon_sym_COLON, + ACTIONS(8346), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7447), 42, + ACTIONS(8344), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -130432,14 +131992,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112201] = 3, + [113341] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 3, + ACTIONS(8350), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7706), 42, + ACTIONS(8348), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -130482,14 +132042,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112254] = 3, + [113394] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7600), 3, + ACTIONS(7698), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7598), 42, + ACTIONS(7696), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -130532,14 +132092,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112307] = 3, + [113447] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 3, + ACTIONS(7694), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7748), 42, + ACTIONS(7692), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -130582,14 +132142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112360] = 3, + [113500] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7758), 3, + ACTIONS(7668), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7756), 42, + ACTIONS(7666), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -130632,14 +132192,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112413] = 3, + [113553] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 3, + ACTIONS(7674), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7740), 42, + ACTIONS(7672), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -130682,14 +132242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112466] = 3, + [113606] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 3, + ACTIONS(7540), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7740), 42, + ACTIONS(7538), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -130732,14 +132292,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112519] = 3, + [113659] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 3, + ACTIONS(7656), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7748), 42, + ACTIONS(7654), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -130782,14 +132342,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112572] = 3, + [113712] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7758), 3, + ACTIONS(7636), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7756), 42, + ACTIONS(7634), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -130832,14 +132392,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112625] = 3, + [113765] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7362), 3, + ACTIONS(7540), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7360), 42, + ACTIONS(7538), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -130882,14 +132442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112678] = 3, + [113818] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7362), 3, + ACTIONS(7624), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7360), 42, + ACTIONS(7622), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -130932,14 +132492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112731] = 3, + [113871] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7481), 3, + ACTIONS(7620), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7479), 42, + ACTIONS(7618), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -130982,14 +132542,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112784] = 3, + [113924] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7485), 3, + ACTIONS(7612), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7483), 42, + ACTIONS(7610), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -131032,14 +132592,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112837] = 3, + [113977] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7501), 3, + ACTIONS(7600), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7499), 42, + ACTIONS(7598), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -131082,14 +132642,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112890] = 3, + [114030] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7517), 3, + ACTIONS(7592), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7515), 42, + ACTIONS(7590), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -131132,14 +132692,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112943] = 3, + [114083] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7588), 3, + ACTIONS(7580), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7586), 42, + ACTIONS(7578), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -131182,14 +132742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [112996] = 3, + [114136] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7461), 3, + ACTIONS(7568), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7459), 42, + ACTIONS(7566), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -131232,14 +132792,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113049] = 3, + [114189] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7505), 3, + ACTIONS(8350), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7503), 42, + ACTIONS(8348), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -131282,14 +132842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113102] = 3, + [114242] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7395), 3, + ACTIONS(7552), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7393), 42, + ACTIONS(7550), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -131332,14 +132892,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113155] = 3, + [114295] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7411), 3, + ACTIONS(7548), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7409), 42, + ACTIONS(7546), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -131382,14 +132942,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113208] = 3, + [114348] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7513), 3, + ACTIONS(7540), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7511), 42, + ACTIONS(7538), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -131432,7 +132992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113261] = 3, + [114401] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(7536), 3, @@ -131482,114 +133042,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113314] = 3, + [114454] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7513), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(7511), 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, - [113367] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7465), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(7463), 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, - [113420] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7720), 3, + ACTIONS(7532), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7718), 42, + ACTIONS(7530), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -131632,14 +133092,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113473] = 3, + [114507] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7754), 3, + ACTIONS(7528), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7752), 42, + ACTIONS(7526), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -131682,14 +133142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113526] = 3, + [114560] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7401), 3, + ACTIONS(7520), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7399), 42, + ACTIONS(7518), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -131732,14 +133192,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113579] = 3, + [114613] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7441), 3, + ACTIONS(7516), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7439), 42, + ACTIONS(7514), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -131782,14 +133242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113632] = 3, + [114666] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7528), 3, + ACTIONS(7512), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7526), 42, + ACTIONS(7510), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -131832,14 +133292,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113685] = 3, + [114719] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7540), 3, + ACTIONS(7504), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7538), 42, + ACTIONS(7502), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -131882,14 +133342,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113738] = 3, + [114772] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7544), 3, + ACTIONS(7500), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7542), 42, + ACTIONS(7498), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -131932,14 +133392,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113791] = 3, + [114825] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7576), 3, + ACTIONS(7496), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7574), 42, + ACTIONS(7494), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -131982,14 +133442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113844] = 3, + [114878] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7724), 3, + ACTIONS(8354), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7722), 42, + ACTIONS(8352), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -132032,14 +133492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113897] = 3, + [114931] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 3, + ACTIONS(7492), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7740), 42, + ACTIONS(7490), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -132082,14 +133542,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [113950] = 3, + [114984] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7665), 3, + ACTIONS(7777), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7663), 42, + ACTIONS(7775), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -132132,14 +133592,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114003] = 3, + [115037] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7669), 3, + ACTIONS(7781), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7667), 42, + ACTIONS(7779), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -132182,14 +133642,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114056] = 3, + [115090] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7513), 3, + ACTIONS(7765), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7511), 42, + ACTIONS(7763), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -132232,14 +133692,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114109] = 3, + [115143] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7704), 3, + ACTIONS(7777), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7702), 42, + ACTIONS(7775), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -132282,14 +133742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114162] = 3, + [115196] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7712), 3, + ACTIONS(7781), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7710), 42, + ACTIONS(7779), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -132332,14 +133792,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114215] = 3, + [115249] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7716), 3, + ACTIONS(7785), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7714), 42, + ACTIONS(7783), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -132382,14 +133842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114268] = 3, + [115302] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7693), 3, + ACTIONS(7773), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7691), 42, + ACTIONS(7771), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -132432,14 +133892,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114321] = 3, + [115355] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7738), 3, + ACTIONS(7488), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7736), 42, + ACTIONS(7486), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -132482,14 +133942,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114374] = 3, + [115408] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 3, + ACTIONS(7484), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7744), 42, + ACTIONS(7482), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -132532,14 +133992,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114427] = 3, + [115461] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7768), 3, + ACTIONS(7480), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7766), 42, + ACTIONS(7478), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -132582,14 +134042,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114480] = 3, + [115514] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7772), 3, + ACTIONS(7761), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7770), 42, + ACTIONS(7759), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -132632,14 +134092,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114533] = 3, + [115567] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7620), 3, + ACTIONS(7476), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7618), 42, + ACTIONS(7474), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -132682,14 +134142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114586] = 3, + [115620] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7700), 3, + ACTIONS(7777), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7698), 42, + ACTIONS(7775), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -132732,14 +134192,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114639] = 3, + [115673] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7685), 3, + ACTIONS(7468), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7683), 42, + ACTIONS(7466), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -132782,14 +134242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114692] = 3, + [115726] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7640), 3, + ACTIONS(7464), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7638), 42, + ACTIONS(7462), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -132832,14 +134292,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114745] = 3, + [115779] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8277), 3, + ACTIONS(7460), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(8275), 42, + ACTIONS(7458), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -132882,14 +134342,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114798] = 3, + [115832] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7477), 3, + ACTIONS(7456), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7475), 42, + ACTIONS(7454), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -132932,14 +134392,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114851] = 3, + [115885] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7509), 3, + ACTIONS(7452), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7507), 42, + ACTIONS(7450), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -132982,14 +134442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114904] = 3, + [115938] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7632), 3, + ACTIONS(7448), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7630), 42, + ACTIONS(7446), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -133032,14 +134492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [114957] = 3, + [115991] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 3, + ACTIONS(7440), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7740), 42, + ACTIONS(7438), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -133082,14 +134542,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115010] = 3, + [116044] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7358), 3, + ACTIONS(7841), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7356), 42, + ACTIONS(7839), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -133132,14 +134592,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115063] = 3, + [116097] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7604), 3, + ACTIONS(7560), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7602), 42, + ACTIONS(7558), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -133182,14 +134642,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115116] = 3, + [116150] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7596), 3, + ACTIONS(7564), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7594), 42, + ACTIONS(7562), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -133232,7 +134692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115169] = 3, + [116203] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(7572), 3, @@ -133282,64 +134742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115222] = 3, + [116256] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7548), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(7546), 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, - [115275] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7728), 3, + ACTIONS(7584), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7726), 42, + ACTIONS(7582), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -133382,14 +134792,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115328] = 3, + [116309] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 3, + ACTIONS(7588), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7706), 42, + ACTIONS(7586), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -133432,14 +134842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115381] = 3, + [116362] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7453), 3, + ACTIONS(7556), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7451), 42, + ACTIONS(7554), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -133482,14 +134892,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115434] = 3, + [116415] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7693), 3, + ACTIONS(8358), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7691), 42, + ACTIONS(8356), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -133532,14 +134942,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115487] = 3, + [116468] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7445), 3, + ACTIONS(7427), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7443), 42, + ACTIONS(7425), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -133582,14 +134992,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115540] = 3, + [116521] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7434), 3, + ACTIONS(7596), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7432), 42, + ACTIONS(7594), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -133632,14 +135042,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115593] = 3, + [116574] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7426), 3, + ACTIONS(7596), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7424), 42, + ACTIONS(7594), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -133682,14 +135092,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115646] = 3, + [116627] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7419), 3, + ACTIONS(7769), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7417), 42, + ACTIONS(7767), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -133732,14 +135142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115699] = 3, + [116680] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7693), 3, + ACTIONS(7608), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7691), 42, + ACTIONS(7606), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -133782,14 +135192,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115752] = 3, + [116733] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7415), 3, + ACTIONS(7616), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7413), 42, + ACTIONS(7614), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -133832,14 +135242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115805] = 3, + [116786] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7407), 3, + ACTIONS(7616), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7405), 42, + ACTIONS(7614), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -133882,14 +135292,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115858] = 3, + [116839] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7366), 3, + ACTIONS(7576), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7364), 42, + ACTIONS(7574), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -133932,14 +135342,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115911] = 3, + [116892] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7370), 3, + ACTIONS(7632), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7368), 42, + ACTIONS(7630), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -133982,14 +135392,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [115964] = 3, + [116945] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7383), 3, + ACTIONS(7444), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7381), 42, + ACTIONS(7442), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -134032,14 +135442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116017] = 3, + [116998] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7387), 3, + ACTIONS(7648), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7385), 42, + ACTIONS(7646), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -134082,14 +135492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116070] = 3, + [117051] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7636), 3, + ACTIONS(7660), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7634), 42, + ACTIONS(7658), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -134132,14 +135542,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116123] = 3, + [117104] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7391), 3, + ACTIONS(7664), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7389), 42, + ACTIONS(7662), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -134182,14 +135592,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116176] = 3, + [117157] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7457), 3, + ACTIONS(7660), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7455), 42, + ACTIONS(7658), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -134232,14 +135642,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116229] = 3, + [117210] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7469), 3, + ACTIONS(7664), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7467), 42, + ACTIONS(7662), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -134282,14 +135692,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116282] = 3, + [117263] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7473), 3, + ACTIONS(7678), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7471), 42, + ACTIONS(7676), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -134332,14 +135742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116335] = 3, + [117316] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7473), 3, + ACTIONS(7686), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7471), 42, + ACTIONS(7684), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -134382,14 +135792,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116388] = 3, + [117369] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7489), 3, + ACTIONS(7690), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7487), 42, + ACTIONS(7688), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -134432,14 +135842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116441] = 3, + [117422] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7493), 3, + ACTIONS(7702), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7491), 42, + ACTIONS(7700), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -134482,14 +135892,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116494] = 3, + [117475] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7497), 3, + ACTIONS(7710), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7495), 42, + ACTIONS(7708), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -134532,14 +135942,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116547] = 3, + [117528] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8281), 3, + ACTIONS(7472), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(8279), 42, + ACTIONS(7470), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -134582,14 +135992,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116600] = 3, + [117581] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7391), 3, + ACTIONS(7714), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7389), 42, + ACTIONS(7712), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -134632,14 +136042,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116653] = 3, + [117634] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7497), 3, + ACTIONS(7757), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7495), 42, + ACTIONS(7755), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -134682,14 +136092,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116706] = 3, + [117687] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7689), 3, + ACTIONS(7714), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7687), 42, + ACTIONS(7712), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -134732,14 +136142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116759] = 3, + [117740] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7509), 3, + ACTIONS(7508), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7507), 42, + ACTIONS(7506), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -134782,14 +136192,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116812] = 3, + [117793] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7728), 3, + ACTIONS(7524), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7726), 42, + ACTIONS(7522), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -134832,14 +136242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116865] = 3, + [117846] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 3, + ACTIONS(7718), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7706), 42, + ACTIONS(7716), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -134882,14 +136292,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116918] = 3, + [117899] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7693), 3, + ACTIONS(7718), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7691), 42, + ACTIONS(7716), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -134932,14 +136342,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [116971] = 3, + [117952] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 3, + ACTIONS(7722), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7706), 42, + ACTIONS(7720), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -134982,14 +136392,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117024] = 3, + [118005] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7650), 3, + ACTIONS(7726), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7648), 42, + ACTIONS(7724), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -135032,14 +136442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117077] = 3, + [118058] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7689), 3, + ACTIONS(7730), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7687), 42, + ACTIONS(7728), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -135082,14 +136492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117130] = 3, + [118111] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7681), 3, + ACTIONS(7734), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7679), 42, + ACTIONS(7732), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -135132,14 +136542,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117183] = 3, + [118164] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8285), 3, + ACTIONS(7745), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(8283), 42, + ACTIONS(7743), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -135182,14 +136592,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117236] = 3, + [118217] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8285), 3, + ACTIONS(7628), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(8283), 42, + ACTIONS(7626), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -135232,14 +136642,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117289] = 3, + [118270] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7521), 3, + ACTIONS(7749), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7519), 42, + ACTIONS(7747), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -135282,14 +136692,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117342] = 3, + [118323] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7532), 3, + ACTIONS(7640), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7530), 42, + ACTIONS(7638), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -135332,14 +136742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117395] = 3, + [118376] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7677), 3, + ACTIONS(7753), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7675), 42, + ACTIONS(7751), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -135382,14 +136792,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117448] = 3, + [118429] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7552), 3, + ACTIONS(7644), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7550), 42, + ACTIONS(7642), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -135432,14 +136842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117501] = 3, + [118482] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7661), 3, + ACTIONS(7652), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7659), 42, + ACTIONS(7650), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -135482,14 +136892,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117554] = 3, + [118535] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7657), 3, + ACTIONS(7757), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7655), 42, + ACTIONS(7755), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -135532,14 +136942,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117607] = 3, + [118588] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7657), 3, + ACTIONS(7757), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7655), 42, + ACTIONS(7755), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -135582,14 +136992,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117660] = 3, + [118641] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 3, + ACTIONS(7749), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7622), 42, + ACTIONS(7747), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -135632,14 +137042,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117713] = 3, + [118694] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7556), 3, + ACTIONS(7816), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7554), 42, + ACTIONS(7814), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -135682,14 +137092,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117766] = 3, + [118747] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7616), 3, + ACTIONS(7816), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7614), 42, + ACTIONS(7814), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -135732,14 +137142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117819] = 3, + [118800] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7657), 3, + ACTIONS(7812), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7655), 42, + ACTIONS(7810), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -135782,14 +137192,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117872] = 3, + [118853] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7657), 3, + ACTIONS(7808), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7655), 42, + ACTIONS(7806), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -135832,14 +137242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117925] = 3, + [118906] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7560), 3, + ACTIONS(7804), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7558), 42, + ACTIONS(7802), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -135882,14 +137292,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [117978] = 3, + [118959] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7564), 3, + ACTIONS(7804), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7562), 42, + ACTIONS(7802), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -135932,14 +137342,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [118031] = 3, + [119012] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7564), 3, + ACTIONS(7812), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7562), 42, + ACTIONS(7810), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -135982,14 +137392,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [118084] = 3, + [119065] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7568), 3, + ACTIONS(7808), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7566), 42, + ACTIONS(7806), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136032,14 +137442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [118137] = 3, + [119118] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8289), 3, + ACTIONS(7804), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(8287), 42, + ACTIONS(7802), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136082,14 +137492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [118190] = 3, + [119171] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7568), 3, + ACTIONS(7804), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7566), 42, + ACTIONS(7802), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136132,14 +137542,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [118243] = 3, + [119224] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7580), 3, + ACTIONS(7800), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7578), 42, + ACTIONS(7798), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136182,14 +137592,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [118296] = 3, + [119277] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7584), 3, + ACTIONS(7785), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7582), 42, + ACTIONS(7783), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136232,14 +137642,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [118349] = 3, + [119330] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7592), 3, + ACTIONS(7781), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7590), 42, + ACTIONS(7779), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136282,14 +137692,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [118402] = 3, + [119383] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 3, + ACTIONS(7777), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7622), 42, + ACTIONS(7775), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136332,14 +137742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [118455] = 3, + [119436] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7608), 3, + ACTIONS(7753), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7606), 42, + ACTIONS(7751), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136382,14 +137792,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [118508] = 3, + [119489] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7612), 3, + ACTIONS(7757), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7610), 42, + ACTIONS(7755), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136432,14 +137842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [118561] = 3, + [119542] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7616), 3, + ACTIONS(7781), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(7614), 42, + ACTIONS(7779), 42, sym__ws, sym_comment, anon_sym_POUND_, @@ -136482,25 +137892,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [118614] = 9, + [119595] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 1, + ACTIONS(4201), 1, anon_sym_lambda, - ACTIONS(8295), 1, + ACTIONS(8364), 1, anon_sym_cl, - ACTIONS(8297), 1, + ACTIONS(8366), 1, anon_sym_loop, - STATE(293), 1, + STATE(299), 1, sym_defun_header, - STATE(666), 1, + STATE(902), 1, sym_defun_keyword, - ACTIONS(4140), 4, + ACTIONS(4199), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(8293), 9, + ACTIONS(8362), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136510,7 +137920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(8291), 23, + ACTIONS(8360), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136534,25 +137944,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118675] = 9, + [119656] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 1, + ACTIONS(4201), 1, anon_sym_lambda, - ACTIONS(8299), 1, + ACTIONS(8368), 1, anon_sym_cl, - ACTIONS(8301), 1, + ACTIONS(8370), 1, anon_sym_loop, - STATE(380), 1, + STATE(403), 1, sym_defun_header, - STATE(666), 1, + STATE(902), 1, sym_defun_keyword, - ACTIONS(4140), 4, + ACTIONS(4199), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(8293), 9, + ACTIONS(8362), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136562,7 +137972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(8291), 23, + ACTIONS(8360), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136586,25 +137996,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118736] = 9, + [119717] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 1, + ACTIONS(4201), 1, anon_sym_lambda, - ACTIONS(8303), 1, + ACTIONS(8372), 1, anon_sym_cl, - ACTIONS(8305), 1, + ACTIONS(8374), 1, anon_sym_loop, - STATE(384), 1, + STATE(383), 1, sym_defun_header, - STATE(666), 1, + STATE(902), 1, sym_defun_keyword, - ACTIONS(4140), 4, + ACTIONS(4199), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(8293), 9, + ACTIONS(8362), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136614,7 +138024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(8291), 23, + ACTIONS(8360), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136638,25 +138048,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118797] = 9, + [119778] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 1, + ACTIONS(4201), 1, anon_sym_lambda, - ACTIONS(8307), 1, + ACTIONS(8376), 1, anon_sym_cl, - ACTIONS(8309), 1, + ACTIONS(8378), 1, anon_sym_loop, - STATE(336), 1, + STATE(372), 1, sym_defun_header, - STATE(666), 1, + STATE(902), 1, sym_defun_keyword, - ACTIONS(4140), 4, + ACTIONS(4199), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(8293), 9, + ACTIONS(8362), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136666,7 +138076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(8291), 23, + ACTIONS(8360), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136690,25 +138100,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118858] = 9, + [119839] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 1, + ACTIONS(4201), 1, anon_sym_lambda, - ACTIONS(8311), 1, + ACTIONS(8380), 1, anon_sym_cl, - ACTIONS(8313), 1, + ACTIONS(8382), 1, anon_sym_loop, - STATE(310), 1, + STATE(361), 1, sym_defun_header, - STATE(666), 1, + STATE(902), 1, sym_defun_keyword, - ACTIONS(4140), 4, + ACTIONS(4199), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(8293), 9, + ACTIONS(8362), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136718,7 +138128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(8291), 23, + ACTIONS(8360), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136742,25 +138152,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118919] = 9, + [119900] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 1, + ACTIONS(4201), 1, anon_sym_lambda, - ACTIONS(8315), 1, + ACTIONS(8384), 1, anon_sym_cl, - ACTIONS(8317), 1, + ACTIONS(8386), 1, anon_sym_loop, - STATE(379), 1, + STATE(370), 1, sym_defun_header, - STATE(666), 1, + STATE(902), 1, sym_defun_keyword, - ACTIONS(4140), 4, + ACTIONS(4199), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(8293), 9, + ACTIONS(8362), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136770,7 +138180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(8291), 23, + ACTIONS(8360), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136794,25 +138204,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118980] = 9, + [119961] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 1, + ACTIONS(4201), 1, anon_sym_lambda, - ACTIONS(8319), 1, + ACTIONS(8388), 1, anon_sym_cl, - ACTIONS(8321), 1, + ACTIONS(8390), 1, anon_sym_loop, - STATE(333), 1, + STATE(332), 1, sym_defun_header, - STATE(666), 1, + STATE(902), 1, sym_defun_keyword, - ACTIONS(4140), 4, + ACTIONS(4199), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(8293), 9, + ACTIONS(8362), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136822,7 +138232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(8291), 23, + ACTIONS(8360), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136846,25 +138256,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119041] = 9, + [120022] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 1, + ACTIONS(4201), 1, anon_sym_lambda, - ACTIONS(8323), 1, + ACTIONS(8392), 1, anon_sym_cl, - ACTIONS(8325), 1, + ACTIONS(8394), 1, anon_sym_loop, - STATE(303), 1, + STATE(321), 1, sym_defun_header, - STATE(666), 1, + STATE(902), 1, sym_defun_keyword, - ACTIONS(4140), 4, + ACTIONS(4199), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(8293), 9, + ACTIONS(8362), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136874,7 +138284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(8291), 23, + ACTIONS(8360), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136898,25 +138308,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119102] = 9, + [120083] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 1, + ACTIONS(4201), 1, anon_sym_lambda, - ACTIONS(8327), 1, + ACTIONS(8396), 1, anon_sym_cl, - ACTIONS(8329), 1, + ACTIONS(8398), 1, anon_sym_loop, - STATE(348), 1, + STATE(354), 1, sym_defun_header, - STATE(666), 1, + STATE(902), 1, sym_defun_keyword, - ACTIONS(4140), 4, + ACTIONS(4199), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(8293), 9, + ACTIONS(8362), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136926,7 +138336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(8291), 23, + ACTIONS(8360), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136950,25 +138360,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119163] = 9, + [120144] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 1, + ACTIONS(4201), 1, anon_sym_lambda, - ACTIONS(8331), 1, + ACTIONS(8400), 1, anon_sym_cl, - ACTIONS(8333), 1, + ACTIONS(8402), 1, anon_sym_loop, - STATE(363), 1, + STATE(309), 1, sym_defun_header, - STATE(666), 1, + STATE(902), 1, sym_defun_keyword, - ACTIONS(4140), 4, + ACTIONS(4199), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(8293), 9, + ACTIONS(8362), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136978,7 +138388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(8291), 23, + ACTIONS(8360), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137002,12 +138412,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119224] = 4, + [120205] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8335), 1, + ACTIONS(8404), 1, aux_sym_num_lit_token2, - ACTIONS(7352), 16, + ACTIONS(7421), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137024,7 +138434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7350), 23, + ACTIONS(7419), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137048,10 +138458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119274] = 3, + [120255] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7501), 16, + ACTIONS(7678), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137068,7 +138478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7499), 23, + ACTIONS(7676), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137092,10 +138502,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119321] = 3, + [120302] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 16, + ACTIONS(7592), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137112,7 +138522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7622), 23, + ACTIONS(7590), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137136,10 +138546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119368] = 3, + [120349] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 16, + ACTIONS(7816), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137156,7 +138566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7748), 23, + ACTIONS(7814), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137180,10 +138590,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119415] = 3, + [120396] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 16, + ACTIONS(7816), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137200,7 +138610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7740), 23, + ACTIONS(7814), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137224,10 +138634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119462] = 3, + [120443] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 16, + ACTIONS(7812), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137244,7 +138654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7740), 23, + ACTIONS(7810), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137268,10 +138678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119509] = 3, + [120490] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7758), 16, + ACTIONS(7808), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137288,7 +138698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7756), 23, + ACTIONS(7806), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137312,10 +138722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119556] = 3, + [120537] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7540), 16, + ACTIONS(7690), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137332,7 +138742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7538), 23, + ACTIONS(7688), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137356,10 +138766,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119603] = 3, + [120584] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 16, + ACTIONS(7686), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137376,7 +138786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7740), 23, + ACTIONS(7684), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137400,10 +138810,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119650] = 3, + [120631] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 16, + ACTIONS(7664), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137420,7 +138830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7740), 23, + ACTIONS(7662), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137444,10 +138854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119697] = 3, + [120678] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7358), 16, + ACTIONS(7660), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137464,7 +138874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7356), 23, + ACTIONS(7658), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137488,10 +138898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119744] = 3, + [120725] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7728), 16, + ACTIONS(7664), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137508,7 +138918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7726), 23, + ACTIONS(7662), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137532,10 +138942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119791] = 3, + [120772] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 16, + ACTIONS(7660), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137552,7 +138962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7706), 23, + ACTIONS(7658), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137576,10 +138986,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119838] = 3, + [120819] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7693), 16, + ACTIONS(7648), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137596,7 +139006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7691), 23, + ACTIONS(7646), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137620,10 +139030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119885] = 3, + [120866] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 16, + ACTIONS(7632), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137640,7 +139050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7706), 23, + ACTIONS(7630), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137664,10 +139074,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119932] = 3, + [120913] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7693), 16, + ACTIONS(7616), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137684,7 +139094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7691), 23, + ACTIONS(7614), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137708,10 +139118,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119979] = 3, + [120960] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7689), 16, + ACTIONS(7616), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137728,7 +139138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7687), 23, + ACTIONS(7614), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137752,10 +139162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120026] = 3, + [121007] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7728), 16, + ACTIONS(7608), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137772,7 +139182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7726), 23, + ACTIONS(7606), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137796,10 +139206,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120073] = 3, + [121054] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 16, + ACTIONS(7604), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137816,7 +139226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7706), 23, + ACTIONS(7602), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137840,10 +139250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120120] = 3, + [121101] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7693), 16, + ACTIONS(7596), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137860,7 +139270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7691), 23, + ACTIONS(7594), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137884,10 +139294,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120167] = 3, + [121148] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 16, + ACTIONS(7596), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137904,7 +139314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7706), 23, + ACTIONS(7594), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137928,10 +139338,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120214] = 3, + [121195] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7693), 16, + ACTIONS(7804), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137948,7 +139358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7691), 23, + ACTIONS(7802), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137972,10 +139382,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120261] = 3, + [121242] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7689), 16, + ACTIONS(7427), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137992,7 +139402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7687), 23, + ACTIONS(7425), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -138016,10 +139426,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120308] = 3, + [121289] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7681), 16, + ACTIONS(7556), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138036,7 +139446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7679), 23, + ACTIONS(7554), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -138060,10 +139470,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120355] = 3, + [121336] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7677), 16, + ACTIONS(7804), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138080,7 +139490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7675), 23, + ACTIONS(7802), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -138104,10 +139514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120402] = 3, + [121383] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7661), 16, + ACTIONS(7812), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138124,7 +139534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7659), 23, + ACTIONS(7810), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -138148,10 +139558,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120449] = 3, + [121430] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7657), 16, + ACTIONS(7808), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138168,7 +139578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7655), 23, + ACTIONS(7806), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -138192,10 +139602,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120496] = 3, + [121477] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7657), 16, + ACTIONS(7804), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138212,7 +139622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7655), 23, + ACTIONS(7802), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -138236,10 +139646,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120543] = 3, + [121524] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7564), 16, + ACTIONS(7804), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138256,7 +139666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7562), 23, + ACTIONS(7802), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -138280,10 +139690,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120590] = 3, + [121571] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7616), 16, + ACTIONS(7800), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138300,7 +139710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7614), 23, + ACTIONS(7798), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -138324,10 +139734,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120637] = 3, + [121618] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7657), 16, + ACTIONS(7785), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138344,7 +139754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7655), 23, + ACTIONS(7783), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -138368,10 +139778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120684] = 3, + [121665] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7387), 16, + ACTIONS(7781), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138388,7 +139798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7385), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -138412,10 +139822,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120731] = 3, + [121712] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7657), 16, + ACTIONS(7777), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138432,7 +139842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7655), 23, + ACTIONS(7775), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -138456,10 +139866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120778] = 3, + [121759] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 16, + ACTIONS(7781), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138476,7 +139886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7622), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -138500,10 +139910,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120825] = 3, + [121806] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7616), 16, + ACTIONS(7777), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138520,7 +139930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7614), 23, + ACTIONS(7775), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -138544,10 +139954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120872] = 3, + [121853] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7362), 16, + ACTIONS(7773), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138564,7 +139974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7360), 23, + ACTIONS(7771), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -138588,10 +139998,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120919] = 3, + [121900] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7449), 16, + ACTIONS(7785), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138608,7 +140018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7447), 23, + ACTIONS(7783), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -138632,10 +140042,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [120966] = 3, + [121947] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7612), 16, + ACTIONS(7588), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138652,7 +140062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7610), 23, + ACTIONS(7586), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -138676,10 +140086,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121013] = 3, + [121994] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7608), 16, + ACTIONS(7781), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138696,7 +140106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7606), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -138720,10 +140130,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121060] = 3, + [122041] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7592), 16, + ACTIONS(7777), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138740,7 +140150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7590), 23, + ACTIONS(7775), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -138764,7 +140174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121107] = 3, + [122088] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(7584), 16, @@ -138808,10 +140218,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121154] = 3, + [122135] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7580), 16, + ACTIONS(7738), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138828,7 +140238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7578), 23, + ACTIONS(7736), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -138852,10 +140262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121201] = 3, + [122182] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7568), 16, + ACTIONS(7781), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138872,7 +140282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7566), 23, + ACTIONS(7779), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -138896,17 +140306,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121248] = 5, + [122229] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8337), 1, - anon_sym_COLON, - ACTIONS(8339), 1, - anon_sym_COLON_COLON, - ACTIONS(7374), 15, + ACTIONS(7777), 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, @@ -138919,10 +140326,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7372), 22, + ACTIONS(7775), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -138942,17 +140350,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121299] = 5, + [122276] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8337), 1, - anon_sym_COLON, - ACTIONS(8339), 1, - anon_sym_COLON_COLON, - ACTIONS(7628), 15, + ACTIONS(7773), 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, @@ -138965,10 +140370,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7626), 22, + ACTIONS(7771), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -138988,10 +140394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121350] = 3, + [122323] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7461), 16, + ACTIONS(7769), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -139008,7 +140414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7459), 23, + ACTIONS(7767), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -139032,10 +140438,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121397] = 3, + [122370] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7505), 16, + ACTIONS(7765), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -139052,7 +140458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7503), 23, + ACTIONS(7763), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -139076,10 +140482,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121444] = 3, + [122417] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7430), 16, + ACTIONS(7761), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -139096,7 +140502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7428), 23, + ACTIONS(7759), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -139120,14 +140526,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121491] = 3, + [122464] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7568), 16, + ACTIONS(8406), 1, + anon_sym_COLON, + ACTIONS(8408), 1, + anon_sym_COLON_COLON, + ACTIONS(7431), 15, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -139140,11 +140549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7566), 23, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -139164,14 +140572,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121538] = 3, + [122515] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7395), 16, + ACTIONS(8406), 1, + anon_sym_COLON, + ACTIONS(8408), 1, + anon_sym_COLON_COLON, + ACTIONS(7706), 15, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -139184,11 +140595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7393), 23, + ACTIONS(7704), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -139208,10 +140618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121585] = 3, + [122566] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7528), 16, + ACTIONS(7698), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -139228,7 +140638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7526), 23, + ACTIONS(7696), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -139252,17 +140662,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121632] = 5, + [122613] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8337), 1, - anon_sym_COLON, - ACTIONS(8339), 1, - anon_sym_COLON_COLON, - ACTIONS(7395), 15, + 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, @@ -139275,10 +140682,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7393), 22, + ACTIONS(7692), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -139298,10 +140706,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121683] = 3, + [122660] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7513), 16, + ACTIONS(7682), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -139318,7 +140726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7511), 23, + ACTIONS(7680), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -139342,10 +140750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121730] = 3, + [122707] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7477), 16, + ACTIONS(7757), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -139362,7 +140770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7475), 23, + ACTIONS(7755), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -139386,10 +140794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121777] = 3, + [122754] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7481), 16, + ACTIONS(7668), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -139406,7 +140814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7479), 23, + ACTIONS(7666), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -139430,10 +140838,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121824] = 3, + [122801] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7485), 16, + ACTIONS(7674), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -139450,7 +140858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7483), 23, + ACTIONS(7672), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -139474,14 +140882,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121871] = 3, + [122848] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7362), 16, + ACTIONS(8406), 1, + anon_sym_COLON, + ACTIONS(8408), 1, + anon_sym_COLON_COLON, + ACTIONS(7668), 15, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, @@ -139494,11 +140905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7360), 23, + ACTIONS(7666), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -139518,10 +140928,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121918] = 3, + [122899] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7536), 16, + ACTIONS(7540), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -139538,7 +140948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7534), 23, + ACTIONS(7538), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -139562,10 +140972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [121965] = 3, + [122946] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7513), 16, + ACTIONS(7656), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -139582,7 +140992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7511), 23, + ACTIONS(7654), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -139606,10 +141016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122012] = 3, + [122993] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7517), 16, + ACTIONS(7652), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -139626,7 +141036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7515), 23, + ACTIONS(7650), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -139650,10 +141060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122059] = 3, + [123040] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7465), 16, + ACTIONS(7644), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -139670,7 +141080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7463), 23, + ACTIONS(7642), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -139694,10 +141104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122106] = 3, + [123087] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7411), 16, + ACTIONS(7640), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -139714,7 +141124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7409), 23, + ACTIONS(7638), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -139738,10 +141148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122153] = 3, + [123134] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7758), 16, + ACTIONS(7636), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -139758,7 +141168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7756), 23, + ACTIONS(7634), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -139782,10 +141192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122200] = 3, + [123181] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 16, + ACTIONS(7540), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -139802,7 +141212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7748), 23, + ACTIONS(7538), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -139826,10 +141236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122247] = 3, + [123228] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7564), 16, + ACTIONS(7628), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -139846,7 +141256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7562), 23, + ACTIONS(7626), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -139870,10 +141280,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122294] = 3, + [123275] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7544), 16, + ACTIONS(7624), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -139890,7 +141300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7542), 23, + ACTIONS(7622), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -139914,10 +141324,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122341] = 3, + [123322] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7560), 16, + ACTIONS(7620), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -139934,7 +141344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7558), 23, + ACTIONS(7618), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -139958,10 +141368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122388] = 3, + [123369] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7576), 16, + ACTIONS(7757), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -139978,7 +141388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7574), 23, + ACTIONS(7755), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140002,10 +141412,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122435] = 3, + [123416] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7556), 16, + ACTIONS(7612), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140022,7 +141432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7554), 23, + ACTIONS(7610), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140046,10 +141456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122482] = 3, + [123463] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7588), 16, + ACTIONS(7753), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140066,7 +141476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7586), 23, + ACTIONS(7751), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140090,10 +141500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122529] = 3, + [123510] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7552), 16, + ACTIONS(7600), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140110,7 +141520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7550), 23, + ACTIONS(7598), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140134,10 +141544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122576] = 3, + [123557] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7532), 16, + ACTIONS(7749), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140154,7 +141564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7530), 23, + ACTIONS(7747), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140178,10 +141588,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122623] = 3, + [123604] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7600), 16, + ACTIONS(7702), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140198,7 +141608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7598), 23, + ACTIONS(7700), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140222,10 +141632,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122670] = 3, + [123651] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7521), 16, + ACTIONS(7757), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140242,7 +141652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7519), 23, + ACTIONS(7755), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140266,10 +141676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122717] = 3, + [123698] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7509), 16, + ACTIONS(7580), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140286,7 +141696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7507), 23, + ACTIONS(7578), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140310,10 +141720,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122764] = 3, + [123745] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7497), 16, + ACTIONS(7757), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140330,7 +141740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7495), 23, + ACTIONS(7755), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140354,10 +141764,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122811] = 3, + [123792] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7509), 16, + ACTIONS(7753), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140374,7 +141784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7507), 23, + ACTIONS(7751), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140398,10 +141808,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122858] = 3, + [123839] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7665), 16, + ACTIONS(7568), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140418,7 +141828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7663), 23, + ACTIONS(7566), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140442,10 +141852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122905] = 3, + [123886] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7669), 16, + ACTIONS(7749), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140462,7 +141872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7667), 23, + ACTIONS(7747), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140486,10 +141896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122952] = 3, + [123933] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7673), 16, + ACTIONS(7576), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140506,7 +141916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7671), 23, + ACTIONS(7574), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140530,10 +141940,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122999] = 3, + [123980] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7497), 16, + ACTIONS(7745), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140550,7 +141960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7495), 23, + ACTIONS(7743), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140574,10 +141984,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123046] = 3, + [124027] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7513), 16, + ACTIONS(7734), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140594,7 +142004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7511), 23, + ACTIONS(7732), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140618,10 +142028,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123093] = 3, + [124074] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7704), 16, + ACTIONS(7552), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140638,7 +142048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7702), 23, + ACTIONS(7550), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140662,10 +142072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123140] = 3, + [124121] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7712), 16, + ACTIONS(7548), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140682,7 +142092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7710), 23, + ACTIONS(7546), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140706,10 +142116,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123187] = 3, + [124168] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7716), 16, + ACTIONS(7544), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140726,7 +142136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7714), 23, + ACTIONS(7542), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140750,10 +142160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123234] = 3, + [124215] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7720), 16, + ACTIONS(7730), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140770,7 +142180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7718), 23, + ACTIONS(7728), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140794,10 +142204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123281] = 3, + [124262] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7724), 16, + ACTIONS(7540), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140814,7 +142224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7722), 23, + ACTIONS(7538), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140838,10 +142248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123328] = 3, + [124309] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7738), 16, + ACTIONS(7536), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140858,7 +142268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7736), 23, + ACTIONS(7534), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140882,10 +142292,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123375] = 3, + [124356] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 16, + ACTIONS(7532), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140902,7 +142312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7744), 23, + ACTIONS(7530), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140926,10 +142336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123422] = 3, + [124403] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7754), 16, + ACTIONS(7528), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140946,7 +142356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7752), 23, + ACTIONS(7526), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -140970,10 +142380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123469] = 3, + [124450] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7768), 16, + ACTIONS(7524), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -140990,7 +142400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7766), 23, + ACTIONS(7522), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141014,10 +142424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123516] = 3, + [124497] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7772), 16, + ACTIONS(7520), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141034,7 +142444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7770), 23, + ACTIONS(7518), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141058,10 +142468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123563] = 3, + [124544] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7620), 16, + ACTIONS(7516), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141078,7 +142488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7618), 23, + ACTIONS(7514), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141102,10 +142512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123610] = 3, + [124591] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7700), 16, + ACTIONS(7512), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141122,7 +142532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7698), 23, + ACTIONS(7510), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141146,10 +142556,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123657] = 3, + [124638] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7685), 16, + ACTIONS(7508), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141166,7 +142576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7683), 23, + ACTIONS(7506), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141190,10 +142600,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123704] = 3, + [124685] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7640), 16, + ACTIONS(7504), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141210,7 +142620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7638), 23, + ACTIONS(7502), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141234,10 +142644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123751] = 3, + [124732] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7636), 16, + ACTIONS(7500), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141254,7 +142664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7634), 23, + ACTIONS(7498), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141278,10 +142688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123798] = 3, + [124779] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7632), 16, + ACTIONS(7496), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141298,7 +142708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7630), 23, + ACTIONS(7494), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141322,10 +142732,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123845] = 3, + [124826] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7493), 16, + ACTIONS(7492), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141342,7 +142752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7491), 23, + ACTIONS(7490), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141366,10 +142776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123892] = 3, + [124873] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7489), 16, + ACTIONS(7488), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141386,7 +142796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7487), 23, + ACTIONS(7486), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141410,10 +142820,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123939] = 3, + [124920] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7401), 16, + ACTIONS(7484), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141430,7 +142840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7399), 23, + ACTIONS(7482), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141454,10 +142864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123986] = 3, + [124967] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7604), 16, + ACTIONS(7480), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141474,7 +142884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7602), 23, + ACTIONS(7478), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141498,10 +142908,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124033] = 3, + [125014] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7596), 16, + ACTIONS(7476), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141518,7 +142928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7594), 23, + ACTIONS(7474), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141542,10 +142952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124080] = 3, + [125061] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7473), 16, + ACTIONS(7726), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141562,7 +142972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7471), 23, + ACTIONS(7724), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141586,10 +142996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124127] = 3, + [125108] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7572), 16, + ACTIONS(7722), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141606,7 +143016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7570), 23, + ACTIONS(7720), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141630,10 +143040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124174] = 3, + [125155] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7473), 16, + ACTIONS(7472), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141650,7 +143060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7471), 23, + ACTIONS(7470), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141674,10 +143084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124221] = 3, + [125202] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7548), 16, + ACTIONS(7468), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141694,7 +143104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7546), 23, + ACTIONS(7466), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141718,10 +143128,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124268] = 3, + [125249] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7469), 16, + ACTIONS(7464), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141738,7 +143148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7467), 23, + ACTIONS(7462), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141762,10 +143172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124315] = 3, + [125296] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7457), 16, + ACTIONS(7710), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141782,7 +143192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7455), 23, + ACTIONS(7708), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141806,10 +143216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124362] = 3, + [125343] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7391), 16, + ACTIONS(7460), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141826,7 +143236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7389), 23, + ACTIONS(7458), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141850,10 +143260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124409] = 3, + [125390] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7453), 16, + ACTIONS(7718), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141870,7 +143280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7451), 23, + ACTIONS(7716), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141894,10 +143304,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124456] = 3, + [125437] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7445), 16, + ACTIONS(7456), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141914,7 +143324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7443), 23, + ACTIONS(7454), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141938,10 +143348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124503] = 3, + [125484] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7441), 16, + ACTIONS(7718), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -141958,7 +143368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7439), 23, + ACTIONS(7716), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -141982,10 +143392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124550] = 3, + [125531] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7434), 16, + ACTIONS(7714), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -142002,7 +143412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7432), 23, + ACTIONS(7712), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -142026,10 +143436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124597] = 3, + [125578] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7426), 16, + ACTIONS(7714), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -142046,7 +143456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7424), 23, + ACTIONS(7712), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -142070,10 +143480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124644] = 3, + [125625] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7419), 16, + ACTIONS(7452), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -142090,7 +143500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7417), 23, + ACTIONS(7450), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -142114,10 +143524,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124691] = 3, + [125672] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7415), 16, + ACTIONS(7448), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -142134,7 +143544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7413), 23, + ACTIONS(7446), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -142158,10 +143568,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124738] = 3, + [125719] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7407), 16, + ACTIONS(7444), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -142178,7 +143588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7405), 23, + ACTIONS(7442), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -142202,10 +143612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124785] = 3, + [125766] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7391), 16, + ACTIONS(7440), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -142222,7 +143632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7389), 23, + ACTIONS(7438), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -142246,10 +143656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124832] = 3, + [125813] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7650), 16, + ACTIONS(7841), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -142266,7 +143676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7648), 23, + ACTIONS(7839), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -142290,10 +143700,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124879] = 3, + [125860] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7366), 16, + ACTIONS(7560), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -142310,7 +143720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7364), 23, + ACTIONS(7558), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -142334,10 +143744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124926] = 3, + [125907] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7370), 16, + ACTIONS(7564), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -142354,7 +143764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7368), 23, + ACTIONS(7562), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -142378,10 +143788,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124973] = 3, + [125954] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7383), 16, + ACTIONS(7572), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -142398,7 +143808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(7381), 23, + ACTIONS(7570), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -142422,41 +143832,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [125020] = 16, + [126001] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8347), 1, + ACTIONS(8416), 1, anon_sym_DQUOTE, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -142478,41 +143888,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125092] = 16, + [126073] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - ACTIONS(8361), 1, + ACTIONS(8430), 1, anon_sym_DQUOTE, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -142534,41 +143944,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125164] = 16, + [126145] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - ACTIONS(8363), 1, + ACTIONS(8432), 1, anon_sym_DQUOTE, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -142590,41 +144000,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125236] = 16, + [126217] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - ACTIONS(8365), 1, + ACTIONS(8434), 1, anon_sym_DQUOTE, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -142646,41 +144056,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125308] = 16, + [126289] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - ACTIONS(8367), 1, + ACTIONS(8436), 1, anon_sym_DQUOTE, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -142702,41 +144112,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125380] = 16, + [126361] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - ACTIONS(8369), 1, + ACTIONS(8438), 1, anon_sym_DQUOTE, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -142758,41 +144168,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125452] = 16, + [126433] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - ACTIONS(8371), 1, + ACTIONS(8440), 1, anon_sym_DQUOTE, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -142814,41 +144224,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125524] = 16, + [126505] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - ACTIONS(8373), 1, + ACTIONS(8442), 1, anon_sym_DQUOTE, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -142870,41 +144280,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125596] = 16, + [126577] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - ACTIONS(8375), 1, + ACTIONS(8444), 1, anon_sym_DQUOTE, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -142926,41 +144336,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125668] = 16, + [126649] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - ACTIONS(8377), 1, + ACTIONS(8446), 1, anon_sym_DQUOTE, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -142982,41 +144392,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125740] = 16, + [126721] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - ACTIONS(8379), 1, + ACTIONS(8448), 1, anon_sym_DQUOTE, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -143038,41 +144448,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125812] = 16, + [126793] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - ACTIONS(8381), 1, + ACTIONS(8450), 1, anon_sym_DQUOTE, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -143094,41 +144504,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125884] = 16, + [126865] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - ACTIONS(8383), 1, + ACTIONS(8452), 1, anon_sym_DQUOTE, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -143150,41 +144560,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [125956] = 16, + [126937] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - ACTIONS(8385), 1, + ACTIONS(8454), 1, anon_sym_DQUOTE, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -143206,41 +144616,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [126028] = 16, + [127009] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - ACTIONS(8387), 1, + ACTIONS(8456), 1, anon_sym_DQUOTE, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -143262,41 +144672,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [126100] = 16, + [127081] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - ACTIONS(8389), 1, + ACTIONS(8458), 1, anon_sym_DQUOTE, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -143318,41 +144728,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [126172] = 16, + [127153] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - ACTIONS(8391), 1, + ACTIONS(8460), 1, anon_sym_DQUOTE, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -143374,41 +144784,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [126244] = 16, + [127225] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - ACTIONS(8393), 1, + ACTIONS(8462), 1, anon_sym_DQUOTE, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -143430,41 +144840,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [126316] = 16, + [127297] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - ACTIONS(8395), 1, + ACTIONS(8464), 1, anon_sym_DQUOTE, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -143486,41 +144896,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [126388] = 16, + [127369] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - ACTIONS(8397), 1, + ACTIONS(8466), 1, anon_sym_DQUOTE, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -143542,39 +144952,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [126460] = 15, + [127441] = 15, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8341), 1, + ACTIONS(8410), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8412), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(8420), 1, anon_sym_SQUOTE, - ACTIONS(8353), 1, + ACTIONS(8422), 1, anon_sym_COMMA, - ACTIONS(8359), 1, + ACTIONS(8428), 1, anon_sym_SLASH, - STATE(2017), 1, + STATE(2038), 1, sym_format_prefix_parameters, - STATE(2714), 1, + STATE(2701), 1, sym_format_modifiers, - STATE(2968), 1, + STATE(2911), 1, sym__format_token, - STATE(3059), 1, + STATE(3065), 1, aux_sym_format_modifiers_repeat1, - STATE(3982), 1, + STATE(4003), 1, sym_format_directive_type, - ACTIONS(8345), 2, + ACTIONS(8414), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(8355), 2, + ACTIONS(8424), 2, anon_sym_v, anon_sym_V, - ACTIONS(8357), 2, + ACTIONS(8426), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - ACTIONS(8349), 21, + ACTIONS(8418), 21, anon_sym_TILDE, anon_sym_PERCENT, anon_sym_AMP, @@ -143596,10 +145006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [126529] = 3, + [127510] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7477), 10, + ACTIONS(7660), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143610,7 +145020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7475), 26, + ACTIONS(7658), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -143637,10 +145047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126573] = 3, + [127554] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7657), 10, + ACTIONS(7841), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143651,7 +145061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7655), 26, + ACTIONS(7839), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -143678,10 +145088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126617] = 3, + [127598] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7693), 10, + ACTIONS(7540), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143692,7 +145102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7691), 26, + ACTIONS(7538), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -143719,10 +145129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126661] = 3, + [127642] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7449), 10, + ACTIONS(7516), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143733,7 +145143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7447), 26, + ACTIONS(7514), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -143760,10 +145170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126705] = 3, + [127686] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7728), 10, + ACTIONS(7520), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143774,7 +145184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7726), 26, + ACTIONS(7518), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -143801,10 +145211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126749] = 3, + [127730] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7407), 10, + ACTIONS(7812), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143815,7 +145225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7405), 26, + ACTIONS(7810), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -143842,10 +145252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126793] = 3, + [127774] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7457), 10, + ACTIONS(7808), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143856,7 +145266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7455), 26, + ACTIONS(7806), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -143883,33 +145293,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126837] = 4, + [127818] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8399), 1, - aux_sym_num_lit_token2, - ACTIONS(7352), 10, + ACTIONS(8468), 1, + anon_sym_COLON, + ACTIONS(8470), 1, + anon_sym_COLON_COLON, + ACTIONS(7431), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7350), 25, + ACTIONS(7429), 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, + [127866] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8468), 1, + anon_sym_COLON, + ACTIONS(8470), 1, anon_sym_COLON_COLON, + ACTIONS(7668), 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(7666), 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, @@ -143925,10 +145379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126883] = 3, + [127914] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7415), 10, + ACTIONS(7616), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -143939,7 +145393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7413), 26, + ACTIONS(7614), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -143966,26 +145420,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126927] = 3, + [127958] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7358), 10, + ACTIONS(8468), 1, + anon_sym_COLON, + ACTIONS(8470), 1, + anon_sym_COLON_COLON, + ACTIONS(7706), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7356), 26, + ACTIONS(7704), 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, @@ -144007,10 +145463,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126971] = 3, + [128006] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 10, + ACTIONS(7804), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144021,7 +145477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7740), 26, + ACTIONS(7802), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144048,10 +145504,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127015] = 3, + [128050] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7485), 10, + ACTIONS(7690), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144062,7 +145518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7483), 26, + ACTIONS(7688), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144089,10 +145545,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127059] = 3, + [128094] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 10, + ACTIONS(7698), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144103,7 +145559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7740), 26, + ACTIONS(7696), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144130,10 +145586,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127103] = 3, + [128138] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 10, + ACTIONS(7560), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144144,7 +145600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7748), 26, + ACTIONS(7558), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144171,10 +145627,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127147] = 3, + [128182] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7758), 10, + ACTIONS(7694), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144185,7 +145641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7756), 26, + ACTIONS(7692), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144212,10 +145668,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127191] = 3, + [128226] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7580), 10, + ACTIONS(7702), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144226,7 +145682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7578), 26, + ACTIONS(7700), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144253,10 +145709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127235] = 3, + [128270] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 10, + ACTIONS(7804), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144267,7 +145723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7740), 26, + ACTIONS(7802), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144294,10 +145750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127279] = 3, + [128314] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7469), 10, + ACTIONS(7710), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144308,7 +145764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7467), 26, + ACTIONS(7708), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144335,10 +145791,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127323] = 3, + [128358] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7473), 10, + ACTIONS(7714), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144349,7 +145805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7471), 26, + ACTIONS(7712), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144376,10 +145832,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127367] = 3, + [128402] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 10, + ACTIONS(7524), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144390,7 +145846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7740), 26, + ACTIONS(7522), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144417,10 +145873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127411] = 3, + [128446] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 10, + ACTIONS(7682), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144431,7 +145887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7748), 26, + ACTIONS(7680), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144458,10 +145914,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127455] = 3, + [128490] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7481), 10, + ACTIONS(7668), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144472,7 +145928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7479), 26, + ACTIONS(7666), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144499,10 +145955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127499] = 3, + [128534] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 10, + ACTIONS(7674), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144513,7 +145969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7706), 26, + ACTIONS(7672), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144540,10 +145996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127543] = 3, + [128578] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7513), 10, + ACTIONS(7512), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144554,7 +146010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7511), 26, + ACTIONS(7510), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144581,28 +146037,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127587] = 5, + [128622] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8401), 1, - anon_sym_COLON, - ACTIONS(8403), 1, - anon_sym_COLON_COLON, - ACTIONS(7395), 9, + ACTIONS(7600), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7393), 25, + ACTIONS(7598), 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, @@ -144624,10 +146078,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127635] = 3, + [128666] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7411), 10, + ACTIONS(7540), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144638,7 +146092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7409), 26, + ACTIONS(7538), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144665,10 +146119,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127679] = 3, + [128710] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7473), 10, + ACTIONS(7714), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144679,7 +146133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7471), 26, + ACTIONS(7712), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144706,10 +146160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127723] = 3, + [128754] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7489), 10, + ACTIONS(7656), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144720,7 +146174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7487), 26, + ACTIONS(7654), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144747,10 +146201,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127767] = 3, + [128798] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7493), 10, + ACTIONS(7718), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144761,7 +146215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7491), 26, + ACTIONS(7716), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144788,10 +146242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127811] = 3, + [128842] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7497), 10, + ACTIONS(7604), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144802,7 +146256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7495), 26, + ACTIONS(7602), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144829,10 +146283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127855] = 3, + [128886] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7509), 10, + ACTIONS(7652), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144843,7 +146297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7507), 26, + ACTIONS(7650), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144870,10 +146324,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127899] = 3, + [128930] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7497), 10, + ACTIONS(7644), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144884,7 +146338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7495), 26, + ACTIONS(7642), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144911,10 +146365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127943] = 3, + [128974] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7509), 10, + ACTIONS(7528), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144925,7 +146379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7507), 26, + ACTIONS(7526), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144952,10 +146406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [127987] = 3, + [129018] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7568), 10, + ACTIONS(7532), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -144966,7 +146420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7566), 26, + ACTIONS(7530), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -144993,10 +146447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128031] = 3, + [129062] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7568), 10, + ACTIONS(7640), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145007,7 +146461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7566), 26, + ACTIONS(7638), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145034,10 +146488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128075] = 3, + [129106] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7564), 10, + ACTIONS(7596), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145048,7 +146502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7562), 26, + ACTIONS(7594), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145075,10 +146529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128119] = 3, + [129150] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7564), 10, + ACTIONS(7540), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145089,7 +146543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7562), 26, + ACTIONS(7538), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145116,10 +146570,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128163] = 3, + [129194] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7521), 10, + ACTIONS(7812), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145130,7 +146584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7519), 26, + ACTIONS(7810), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145157,10 +146611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128207] = 3, + [129238] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7395), 10, + ACTIONS(7596), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145171,7 +146625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7393), 26, + ACTIONS(7594), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145198,10 +146652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128251] = 3, + [129282] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7560), 10, + ACTIONS(7718), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145212,7 +146666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7558), 26, + ACTIONS(7716), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145239,10 +146693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128295] = 3, + [129326] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7556), 10, + ACTIONS(7544), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145253,7 +146707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7554), 26, + ACTIONS(7542), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145280,10 +146734,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128339] = 3, + [129370] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7552), 10, + ACTIONS(7427), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145294,7 +146748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7550), 26, + ACTIONS(7425), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145321,10 +146775,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128383] = 3, + [129414] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7430), 10, + ACTIONS(7548), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145335,7 +146789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7428), 26, + ACTIONS(7546), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145362,10 +146816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128427] = 3, + [129458] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7505), 10, + ACTIONS(7564), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145376,7 +146830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7503), 26, + ACTIONS(7562), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145403,10 +146857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128471] = 3, + [129502] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7461), 10, + ACTIONS(7588), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145417,7 +146871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7459), 26, + ACTIONS(7586), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145444,10 +146898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128515] = 3, + [129546] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7532), 10, + ACTIONS(7552), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145458,7 +146912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7530), 26, + ACTIONS(7550), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145485,28 +146939,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128559] = 5, + [129590] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8401), 1, - anon_sym_COLON, - ACTIONS(8403), 1, - anon_sym_COLON_COLON, - ACTIONS(7628), 9, + ACTIONS(7584), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_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), 25, + ACTIONS(7582), 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, @@ -145528,10 +146980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128607] = 3, + [129634] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7426), 10, + ACTIONS(7576), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145542,7 +146994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7424), 26, + ACTIONS(7574), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145569,10 +147021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128651] = 3, + [129678] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7434), 10, + ACTIONS(7572), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145583,7 +147035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7432), 26, + ACTIONS(7570), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145610,10 +147062,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128695] = 3, + [129722] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7584), 10, + ACTIONS(7568), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145624,7 +147076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7582), 26, + ACTIONS(7566), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145651,10 +147103,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128739] = 3, + [129766] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7592), 10, + ACTIONS(7636), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145665,7 +147117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7590), 26, + ACTIONS(7634), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145692,10 +147144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128783] = 3, + [129810] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7608), 10, + ACTIONS(7580), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145706,7 +147158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7606), 26, + ACTIONS(7578), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145733,10 +147185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128827] = 3, + [129854] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7366), 10, + ACTIONS(7808), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145747,7 +147199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7364), 26, + ACTIONS(7806), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145774,10 +147226,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128871] = 3, + [129898] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7441), 10, + ACTIONS(7804), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145788,7 +147240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7439), 26, + ACTIONS(7802), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145815,10 +147267,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128915] = 3, + [129942] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7612), 10, + ACTIONS(7804), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145829,7 +147281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7610), 26, + ACTIONS(7802), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145856,10 +147308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [128959] = 3, + [129986] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7616), 10, + ACTIONS(7800), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145870,7 +147322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7614), 26, + ACTIONS(7798), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145897,10 +147349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129003] = 3, + [130030] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 10, + ACTIONS(7508), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145911,7 +147363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7622), 26, + ACTIONS(7506), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145938,10 +147390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129047] = 3, + [130074] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7657), 10, + ACTIONS(7738), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145952,7 +147404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7655), 26, + ACTIONS(7736), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -145979,10 +147431,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129091] = 3, + [130118] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7445), 10, + ACTIONS(7504), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -145993,7 +147445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7443), 26, + ACTIONS(7502), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146020,10 +147472,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129135] = 3, + [130162] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7453), 10, + ACTIONS(7500), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146034,7 +147486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7451), 26, + ACTIONS(7498), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146061,10 +147513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129179] = 3, + [130206] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7391), 10, + ACTIONS(7496), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146075,7 +147527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7389), 26, + ACTIONS(7494), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146102,10 +147554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129223] = 3, + [130250] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 10, + ACTIONS(7628), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146116,7 +147568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7706), 26, + ACTIONS(7626), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146143,10 +147595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129267] = 3, + [130294] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7548), 10, + ACTIONS(7492), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146157,7 +147609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7546), 26, + ACTIONS(7490), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146184,10 +147636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129311] = 3, + [130338] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7572), 10, + ACTIONS(7536), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146198,7 +147650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7570), 26, + ACTIONS(7534), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146225,10 +147677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129355] = 3, + [130382] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7596), 10, + ACTIONS(7686), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146239,7 +147691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7594), 26, + ACTIONS(7684), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146266,10 +147718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129399] = 3, + [130426] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7604), 10, + ACTIONS(7488), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146280,7 +147732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7602), 26, + ACTIONS(7486), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146307,10 +147759,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129443] = 3, + [130470] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7401), 10, + ACTIONS(7678), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146321,7 +147773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7399), 26, + ACTIONS(7676), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146348,10 +147800,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129487] = 3, + [130514] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7391), 10, + ACTIONS(7484), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146362,7 +147814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7389), 26, + ACTIONS(7482), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146389,10 +147841,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129531] = 3, + [130558] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7632), 10, + ACTIONS(7664), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146403,7 +147855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7630), 26, + ACTIONS(7662), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146430,10 +147882,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129575] = 3, + [130602] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7636), 10, + ACTIONS(7480), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146444,7 +147896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7634), 26, + ACTIONS(7478), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146471,10 +147923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129619] = 3, + [130646] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7640), 10, + ACTIONS(7476), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146485,7 +147937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7638), 26, + ACTIONS(7474), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146512,10 +147964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129663] = 3, + [130690] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7685), 10, + ACTIONS(7664), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146526,7 +147978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7683), 26, + ACTIONS(7662), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146553,10 +148005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129707] = 3, + [130734] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7700), 10, + ACTIONS(7660), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146567,7 +148019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7698), 26, + ACTIONS(7658), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146594,10 +148046,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129751] = 3, + [130778] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7620), 10, + ACTIONS(7472), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146608,7 +148060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7618), 26, + ACTIONS(7470), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146635,10 +148087,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129795] = 3, + [130822] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7772), 10, + ACTIONS(7785), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146649,7 +148101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7770), 26, + ACTIONS(7783), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146676,10 +148128,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129839] = 3, + [130866] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7768), 10, + ACTIONS(7464), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146690,7 +148142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7766), 26, + ACTIONS(7462), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146717,10 +148169,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129883] = 3, + [130910] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7616), 10, + ACTIONS(7781), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146731,7 +148183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7614), 26, + ACTIONS(7779), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146758,10 +148210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129927] = 3, + [130954] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7754), 10, + ACTIONS(7777), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146772,7 +148224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7752), 26, + ACTIONS(7775), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146799,10 +148251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [129971] = 3, + [130998] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 10, + ACTIONS(7816), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146813,7 +148265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7744), 26, + ACTIONS(7814), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146840,10 +148292,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130015] = 3, + [131042] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7738), 10, + ACTIONS(7460), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146854,7 +148306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7736), 26, + ACTIONS(7458), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146881,10 +148333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130059] = 3, + [131086] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 10, + ACTIONS(7816), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146895,7 +148347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7622), 26, + ACTIONS(7814), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146922,10 +148374,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130103] = 3, + [131130] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7657), 10, + ACTIONS(7648), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146936,7 +148388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7655), 26, + ACTIONS(7646), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -146963,10 +148415,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130147] = 3, + [131174] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7657), 10, + ACTIONS(7632), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -146977,7 +148429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7655), 26, + ACTIONS(7630), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147004,10 +148456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130191] = 3, + [131218] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7724), 10, + ACTIONS(7616), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147018,7 +148470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7722), 26, + ACTIONS(7614), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147045,10 +148497,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130235] = 3, + [131262] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7387), 10, + ACTIONS(7556), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147059,7 +148511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7385), 26, + ACTIONS(7554), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147086,10 +148538,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130279] = 3, + [131306] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7501), 10, + ACTIONS(7781), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147100,7 +148552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7499), 26, + ACTIONS(7779), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147127,10 +148579,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130323] = 3, + [131350] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7383), 10, + ACTIONS(7777), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147141,7 +148593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7381), 26, + ACTIONS(7775), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147168,10 +148620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130367] = 3, + [131394] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7419), 10, + ACTIONS(7592), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147182,7 +148634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7417), 26, + ACTIONS(7590), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147209,10 +148661,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130411] = 3, + [131438] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7693), 10, + ACTIONS(7773), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147223,7 +148675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7691), 26, + ACTIONS(7771), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147250,10 +148702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130455] = 3, + [131482] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7370), 10, + ACTIONS(7456), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147264,7 +148716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7368), 26, + ACTIONS(7454), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147291,10 +148743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130499] = 3, + [131526] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7720), 10, + ACTIONS(7785), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147305,7 +148757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7718), 26, + ACTIONS(7783), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147332,10 +148784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130543] = 3, + [131570] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7716), 10, + ACTIONS(7781), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147346,7 +148798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7714), 26, + ACTIONS(7779), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147373,10 +148825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130587] = 3, + [131614] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7712), 10, + ACTIONS(7624), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147387,7 +148839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7710), 26, + ACTIONS(7622), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147414,10 +148866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130631] = 3, + [131658] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7704), 10, + ACTIONS(7777), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147428,7 +148880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7702), 26, + ACTIONS(7775), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147455,10 +148907,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130675] = 3, + [131702] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7513), 10, + ACTIONS(7452), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147469,7 +148921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7511), 26, + ACTIONS(7450), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147496,10 +148948,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130719] = 3, + [131746] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7673), 10, + ACTIONS(7781), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147510,7 +148962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7671), 26, + ACTIONS(7779), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147537,10 +148989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130763] = 3, + [131790] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7669), 10, + ACTIONS(7777), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147551,7 +149003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7667), 26, + ACTIONS(7775), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147578,10 +149030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130807] = 3, + [131834] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7665), 10, + ACTIONS(7773), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147592,7 +149044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7663), 26, + ACTIONS(7771), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147619,10 +149071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130851] = 3, + [131878] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7600), 10, + ACTIONS(7769), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147633,7 +149085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7598), 26, + ACTIONS(7767), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147660,10 +149112,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130895] = 3, + [131922] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7588), 10, + ACTIONS(7765), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147674,7 +149126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7586), 26, + ACTIONS(7763), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147701,10 +149153,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130939] = 3, + [131966] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7576), 10, + ACTIONS(7761), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147715,7 +149167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7574), 26, + ACTIONS(7759), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147742,10 +149194,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [130983] = 3, + [132010] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7544), 10, + ACTIONS(7448), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147756,7 +149208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7542), 26, + ACTIONS(7446), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147783,10 +149235,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131027] = 3, + [132054] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7540), 10, + ACTIONS(7608), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147797,7 +149249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7538), 26, + ACTIONS(7606), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147824,10 +149276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131071] = 3, + [132098] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7528), 10, + ACTIONS(7444), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147838,7 +149290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7526), 26, + ACTIONS(7442), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147865,10 +149317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131115] = 3, + [132142] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7465), 10, + ACTIONS(7620), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147879,7 +149331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7463), 26, + ACTIONS(7618), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147906,10 +149358,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131159] = 3, + [132186] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7517), 10, + ACTIONS(7612), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147920,7 +149372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7515), 26, + ACTIONS(7610), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147947,10 +149399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131203] = 3, + [132230] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7513), 10, + ACTIONS(7468), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -147961,7 +149413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7511), 26, + ACTIONS(7466), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -147988,28 +149440,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131247] = 5, + [132274] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8401), 1, - anon_sym_COLON, - ACTIONS(8403), 1, - anon_sym_COLON_COLON, - ACTIONS(7374), 9, + ACTIONS(7757), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7372), 25, + ACTIONS(7755), 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, @@ -148031,10 +149481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131295] = 3, + [132318] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7362), 10, + ACTIONS(7757), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -148045,7 +149495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7360), 26, + ACTIONS(7755), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -148072,10 +149522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131339] = 3, + [132362] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7362), 10, + ACTIONS(7753), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -148086,7 +149536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7360), 26, + ACTIONS(7751), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -148113,10 +149563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131383] = 3, + [132406] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7661), 10, + ACTIONS(7749), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -148127,7 +149577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7659), 26, + ACTIONS(7747), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -148154,10 +149604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131427] = 3, + [132450] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7677), 10, + ACTIONS(8472), 1, + aux_sym_num_lit_token2, + ACTIONS(7421), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -148168,7 +149620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7675), 26, + ACTIONS(7419), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -148179,7 +149631,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, @@ -148195,10 +149646,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131471] = 3, + [132496] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7681), 10, + ACTIONS(7757), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -148209,7 +149660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7679), 26, + ACTIONS(7755), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -148236,10 +149687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131515] = 3, + [132540] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7689), 10, + ACTIONS(7440), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -148250,7 +149701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7687), 26, + ACTIONS(7438), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -148277,10 +149728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131559] = 3, + [132584] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7693), 10, + ACTIONS(7757), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -148291,7 +149742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7691), 26, + ACTIONS(7755), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -148318,10 +149769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131603] = 3, + [132628] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 10, + ACTIONS(7753), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -148332,7 +149783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7706), 26, + ACTIONS(7751), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -148359,10 +149810,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131647] = 3, + [132672] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7693), 10, + ACTIONS(7749), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -148373,7 +149824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7691), 26, + ACTIONS(7747), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -148400,10 +149851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131691] = 3, + [132716] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7536), 10, + ACTIONS(7745), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -148414,7 +149865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7534), 26, + ACTIONS(7743), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -148441,10 +149892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131735] = 3, + [132760] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 10, + ACTIONS(7734), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -148455,7 +149906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7706), 26, + ACTIONS(7732), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -148482,10 +149933,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131779] = 3, + [132804] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7758), 10, + ACTIONS(7730), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -148496,7 +149947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7756), 26, + ACTIONS(7728), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -148523,10 +149974,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131823] = 3, + [132848] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7650), 10, + ACTIONS(7726), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -148537,7 +149988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7648), 26, + ACTIONS(7724), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -148564,10 +150015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131867] = 3, + [132892] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7728), 10, + ACTIONS(7722), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -148578,7 +150029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7726), 26, + ACTIONS(7720), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -148605,55 +150056,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131911] = 3, + [132936] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7689), 10, + ACTIONS(7702), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_being, + ACTIONS(7700), 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, - ACTIONS(7687), 26, - ts_builtin_sym_end, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + 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, + [132979] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7496), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7494), 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_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_cl, + anon_sym_in, + anon_sym_across, + anon_sym_using, + aux_sym_for_clause_word_token1, + anon_sym_below, + anon_sym_above, + anon_sym_from, + anon_sym_to, + 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, - [131955] = 3, + [133022] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7693), 3, + ACTIONS(7757), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7691), 32, + ACTIONS(7755), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -148686,14 +150176,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [131998] = 3, + [133065] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7677), 3, + ACTIONS(7753), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7675), 32, + ACTIONS(7751), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -148726,14 +150216,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132041] = 3, + [133108] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7489), 3, + ACTIONS(7749), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7487), 32, + ACTIONS(7747), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -148766,14 +150256,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132084] = 3, + [133151] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7497), 3, + ACTIONS(7757), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7495), 32, + ACTIONS(7755), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -148806,14 +150296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132127] = 3, + [133194] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7391), 3, + ACTIONS(7757), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7389), 32, + ACTIONS(7755), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -148846,14 +150336,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132170] = 3, + [133237] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7552), 3, + ACTIONS(7753), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7550), 32, + ACTIONS(7751), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -148886,14 +150376,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132213] = 3, + [133280] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7509), 3, + ACTIONS(7749), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7507), 32, + ACTIONS(7747), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -148926,14 +150416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132256] = 3, + [133323] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7497), 3, + ACTIONS(7745), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7495), 32, + ACTIONS(7743), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -148966,14 +150456,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132299] = 3, + [133366] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7391), 3, + ACTIONS(7734), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7389), 32, + ACTIONS(7732), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149006,14 +150496,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132342] = 3, + [133409] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7387), 3, + ACTIONS(7730), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7385), 32, + ACTIONS(7728), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149046,14 +150536,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132385] = 3, + [133452] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7556), 3, + ACTIONS(7726), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7554), 32, + ACTIONS(7724), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149086,14 +150576,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132428] = 3, + [133495] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7493), 3, + ACTIONS(7718), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7491), 32, + ACTIONS(7716), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149126,14 +150616,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132471] = 3, + [133538] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7383), 3, + ACTIONS(7718), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7381), 32, + ACTIONS(7716), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149166,14 +150656,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132514] = 3, + [133581] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7370), 3, + ACTIONS(7714), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7368), 32, + ACTIONS(7712), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149206,14 +150696,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132557] = 3, + [133624] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7366), 3, + ACTIONS(7714), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7364), 32, + ACTIONS(7712), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149246,14 +150736,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132600] = 3, + [133667] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7407), 3, + ACTIONS(7710), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7405), 32, + ACTIONS(7708), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149286,14 +150776,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132643] = 3, + [133710] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8477), 1, + anon_sym_POUND_, + ACTIONS(8474), 2, + sym__ws, + sym_comment, + STATE(1908), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7381), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(7383), 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, + [133759] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7415), 3, + ACTIONS(7690), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7413), 32, + ACTIONS(7688), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149326,14 +150859,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132686] = 3, + [133802] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7445), 3, + ACTIONS(7664), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7443), 32, + ACTIONS(7662), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149366,14 +150899,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132729] = 3, + [133845] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7453), 3, + ACTIONS(7660), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7451), 32, + ACTIONS(7658), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149406,14 +150939,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132772] = 3, + [133888] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7560), 3, + ACTIONS(7664), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7558), 32, + ACTIONS(7662), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149446,14 +150979,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132815] = 3, + [133931] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7564), 3, + ACTIONS(7660), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7562), 32, + ACTIONS(7658), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149486,14 +151019,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132858] = 3, + [133974] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7564), 3, + ACTIONS(7648), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7562), 32, + ACTIONS(7646), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149526,94 +151059,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [132901] = 3, + [134017] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7548), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(7546), 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, - [132944] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7568), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(7566), 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, - [132987] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7572), 3, + ACTIONS(7632), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7570), 32, + ACTIONS(7630), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149646,14 +151099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133030] = 3, + [134060] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7568), 3, + ACTIONS(7596), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7566), 32, + ACTIONS(7594), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149686,14 +151139,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133073] = 3, + [134103] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7584), 3, + ACTIONS(7596), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7582), 32, + ACTIONS(7594), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149726,14 +151179,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133116] = 3, + [134146] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7596), 3, + ACTIONS(7427), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7594), 32, + ACTIONS(7425), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149766,14 +151219,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133159] = 3, + [134189] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7604), 3, + ACTIONS(7556), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7602), 32, + ACTIONS(7554), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149806,14 +151259,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133202] = 3, + [134232] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7592), 3, + ACTIONS(7588), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7590), 32, + ACTIONS(7586), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149846,14 +151299,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133245] = 3, + [134275] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7608), 3, + ACTIONS(7584), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7606), 32, + ACTIONS(7582), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149886,14 +151339,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133288] = 3, + [134318] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7509), 3, + ACTIONS(7572), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7507), 32, + ACTIONS(7570), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149926,14 +151379,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133331] = 3, + [134361] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7632), 3, + ACTIONS(7564), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7630), 32, + ACTIONS(7562), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -149966,14 +151419,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133374] = 3, + [134404] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7636), 3, + ACTIONS(7448), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7634), 32, + ACTIONS(7446), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150006,14 +151459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133417] = 3, + [134447] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7640), 3, + ACTIONS(7452), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7638), 32, + ACTIONS(7450), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150046,14 +151499,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133460] = 3, + [134490] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7612), 3, + ACTIONS(7456), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7610), 32, + ACTIONS(7454), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150086,14 +151539,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133503] = 3, + [134533] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7685), 3, + ACTIONS(7777), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7683), 32, + ACTIONS(7775), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150126,14 +151579,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133546] = 3, + [134576] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7362), 3, + ACTIONS(7460), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7360), 32, + ACTIONS(7458), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150166,14 +151619,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133589] = 3, + [134619] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7362), 3, + ACTIONS(7464), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7360), 32, + ACTIONS(7462), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150206,14 +151659,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133632] = 3, + [134662] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7758), 3, + ACTIONS(7468), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7756), 32, + ACTIONS(7466), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150246,14 +151699,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133675] = 3, + [134705] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 3, + ACTIONS(7816), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7748), 32, + ACTIONS(7814), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150286,14 +151739,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133718] = 3, + [134748] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 3, + ACTIONS(7476), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7740), 32, + ACTIONS(7474), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150326,14 +151779,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133761] = 3, + [134791] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 3, + ACTIONS(7480), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7740), 32, + ACTIONS(7478), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150366,14 +151819,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133804] = 3, + [134834] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7758), 3, + ACTIONS(7484), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7756), 32, + ACTIONS(7482), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150406,14 +151859,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133847] = 3, + [134877] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 3, + ACTIONS(7488), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7748), 32, + ACTIONS(7486), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150446,14 +151899,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133890] = 3, + [134920] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 3, + ACTIONS(7492), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7740), 32, + ACTIONS(7490), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150486,14 +151939,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133933] = 3, + [134963] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 3, + ACTIONS(7781), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7740), 32, + ACTIONS(7779), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150526,14 +151979,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [133976] = 3, + [135006] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7358), 3, + ACTIONS(7500), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7356), 32, + ACTIONS(7498), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150566,14 +152019,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134019] = 3, + [135049] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7728), 3, + ACTIONS(7504), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7726), 32, + ACTIONS(7502), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150606,14 +152059,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134062] = 3, + [135092] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 3, + ACTIONS(7528), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7706), 32, + ACTIONS(7526), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150646,14 +152099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134105] = 3, + [135135] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7700), 3, + ACTIONS(7532), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7698), 32, + ACTIONS(7530), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150686,14 +152139,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134148] = 3, + [135178] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 3, + ACTIONS(7536), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7706), 32, + ACTIONS(7534), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150726,14 +152179,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134191] = 3, + [135221] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7693), 3, + ACTIONS(7540), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7691), 32, + ACTIONS(7538), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150766,14 +152219,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134234] = 3, + [135264] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7689), 3, + ACTIONS(7548), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7687), 32, + ACTIONS(7546), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150806,14 +152259,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134277] = 3, + [135307] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7461), 3, + ACTIONS(7552), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7459), 32, + ACTIONS(7550), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150846,14 +152299,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134320] = 3, + [135350] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7505), 3, + ACTIONS(7761), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7503), 32, + ACTIONS(7759), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150886,14 +152339,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134363] = 3, + [135393] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7620), 3, + ACTIONS(7816), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7618), 32, + ACTIONS(7814), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150926,14 +152379,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134406] = 3, + [135436] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7728), 3, + ACTIONS(7568), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7726), 32, + ACTIONS(7566), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -150966,14 +152419,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134449] = 3, + [135479] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7395), 3, + ACTIONS(7812), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7393), 32, + ACTIONS(7810), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151006,14 +152459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134492] = 3, + [135522] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7772), 3, + ACTIONS(7580), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7770), 32, + ACTIONS(7578), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151046,14 +152499,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134535] = 3, + [135565] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7411), 3, + ACTIONS(7808), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7409), 32, + ACTIONS(7806), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151086,14 +152539,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134578] = 3, + [135608] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7513), 3, + ACTIONS(7592), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7511), 32, + ACTIONS(7590), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151126,14 +152579,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134621] = 3, + [135651] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7477), 3, + ACTIONS(7804), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7475), 32, + ACTIONS(7802), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151166,14 +152619,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134664] = 3, + [135694] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7513), 3, + ACTIONS(7600), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7511), 32, + ACTIONS(7598), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151206,14 +152659,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134707] = 3, + [135737] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 3, + ACTIONS(7804), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7706), 32, + ACTIONS(7802), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151246,14 +152699,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134750] = 3, + [135780] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7693), 3, + ACTIONS(7612), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7691), 32, + ACTIONS(7610), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151286,14 +152739,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134793] = 3, + [135823] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7465), 3, + ACTIONS(7812), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7463), 32, + ACTIONS(7810), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151326,14 +152779,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134836] = 3, + [135866] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7528), 3, + ACTIONS(7620), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7526), 32, + ACTIONS(7618), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151366,14 +152819,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134879] = 3, + [135909] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7768), 3, + ACTIONS(7624), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7766), 32, + ACTIONS(7622), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151406,14 +152859,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134922] = 3, + [135952] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7716), 3, + ACTIONS(7540), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7714), 32, + ACTIONS(7538), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151446,14 +152899,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [134965] = 3, + [135995] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 3, + ACTIONS(7656), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7706), 32, + ACTIONS(7654), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151486,14 +152939,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135008] = 3, + [136038] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7712), 3, + ACTIONS(7540), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7710), 32, + ACTIONS(7538), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151526,14 +152979,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135051] = 3, + [136081] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7616), 3, + ACTIONS(7674), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7614), 32, + ACTIONS(7672), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151566,14 +153019,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135094] = 3, + [136124] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7693), 3, + ACTIONS(7668), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7691), 32, + ACTIONS(7666), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151606,14 +153059,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135137] = 3, + [136167] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7540), 3, + ACTIONS(7808), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7538), 32, + ACTIONS(7806), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151646,14 +153099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135180] = 3, + [136210] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7689), 3, + ACTIONS(7694), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7687), 32, + ACTIONS(7692), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151686,14 +153139,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135223] = 3, + [136253] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7544), 3, + ACTIONS(7698), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7542), 32, + ACTIONS(7696), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151726,14 +153179,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135266] = 3, + [136296] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7681), 3, + ACTIONS(7804), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7679), 32, + ACTIONS(7802), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151766,14 +153219,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135309] = 3, + [136339] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7576), 3, + ACTIONS(7757), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7574), 32, + ACTIONS(7755), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151806,57 +153259,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135352] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8408), 1, - anon_sym_POUND_, - ACTIONS(8405), 2, - sym__ws, - sym_comment, - STATE(1951), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(7312), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(7314), 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, - [135401] = 3, + [136382] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7704), 3, + ACTIONS(7804), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7702), 32, + ACTIONS(7802), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151889,14 +153299,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135444] = 3, + [136425] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7513), 3, + ACTIONS(7800), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7511), 32, + ACTIONS(7798), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151929,14 +153339,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135487] = 3, + [136468] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 3, + ACTIONS(7785), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7622), 32, + ACTIONS(7783), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -151969,14 +153379,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135530] = 3, + [136511] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7657), 3, + ACTIONS(7765), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7655), 32, + ACTIONS(7763), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -152009,14 +153419,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135573] = 3, + [136554] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7669), 3, + ACTIONS(7769), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7667), 32, + ACTIONS(7767), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -152049,14 +153459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135616] = 3, + [136597] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7665), 3, + ACTIONS(7773), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7663), 32, + ACTIONS(7771), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -152089,14 +153499,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135659] = 3, + [136640] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7661), 3, + ACTIONS(7777), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7659), 32, + ACTIONS(7775), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -152129,14 +153539,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135702] = 3, + [136683] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7588), 3, + ACTIONS(7781), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7586), 32, + ACTIONS(7779), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -152169,14 +153579,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135745] = 3, + [136726] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7657), 3, + ACTIONS(7777), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7655), 32, + ACTIONS(7775), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -152209,14 +153619,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135788] = 3, + [136769] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7600), 3, + ACTIONS(7781), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7598), 32, + ACTIONS(7779), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -152249,14 +153659,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135831] = 3, + [136812] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7657), 3, + ACTIONS(7785), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7655), 32, + ACTIONS(7783), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -152289,14 +153699,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135874] = 3, + [136855] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7657), 3, + ACTIONS(7773), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7655), 32, + ACTIONS(7771), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -152329,14 +153739,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135917] = 3, + [136898] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 3, + ACTIONS(7777), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7622), 32, + ACTIONS(7775), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -152369,14 +153779,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [135960] = 3, + [136941] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7616), 3, + ACTIONS(7781), 3, anon_sym_POUND, anon_sym_POUND_QMARK, anon_sym_being, - ACTIONS(7614), 32, + ACTIONS(7779), 32, sym__ws, sym_comment, anon_sym_POUND_, @@ -152409,10 +153819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136003] = 3, + [136984] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8413), 10, + ACTIONS(8482), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152423,7 +153833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8411), 24, + ACTIONS(8480), 24, sym__ws, sym_comment, anon_sym_POUND_, @@ -152448,10 +153858,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136045] = 3, + [137026] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8417), 10, + ACTIONS(8486), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152462,7 +153872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8415), 23, + ACTIONS(8484), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -152486,25 +153896,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136086] = 3, + [137067] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8421), 10, + ACTIONS(8470), 1, + anon_sym_COLON_COLON, + ACTIONS(8488), 1, + anon_sym_COLON, + ACTIONS(7431), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8419), 23, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -152524,10 +153936,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136127] = 3, + [137112] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8425), 10, + ACTIONS(8492), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152538,7 +153950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8423), 23, + ACTIONS(8490), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -152562,10 +153974,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136168] = 3, + [137153] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8429), 10, + ACTIONS(8486), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152576,7 +153988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8427), 23, + ACTIONS(8484), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -152600,10 +154012,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136209] = 3, + [137194] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8433), 10, + ACTIONS(8486), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152614,7 +154026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8431), 23, + ACTIONS(8484), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -152638,10 +154050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136250] = 3, + [137235] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8433), 10, + ACTIONS(8486), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152652,7 +154064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8431), 23, + ACTIONS(8484), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -152676,10 +154088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136291] = 3, + [137276] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8417), 10, + ACTIONS(8496), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152690,7 +154102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8415), 23, + ACTIONS(8494), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -152714,10 +154126,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136332] = 3, + [137317] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8421), 10, + ACTIONS(8496), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152728,7 +154140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8419), 23, + ACTIONS(8494), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -152752,25 +154164,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136373] = 3, + [137358] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8437), 10, + ACTIONS(8470), 1, + anon_sym_COLON_COLON, + ACTIONS(8498), 1, + anon_sym_COLON, + ACTIONS(7431), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8435), 23, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -152790,10 +154204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136414] = 3, + [137403] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8429), 10, + ACTIONS(8496), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152804,7 +154218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8427), 23, + ACTIONS(8494), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -152828,10 +154242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136455] = 3, + [137444] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8441), 10, + ACTIONS(8502), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152842,7 +154256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8439), 23, + ACTIONS(8500), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -152866,10 +154280,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136496] = 3, + [137485] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8429), 10, + ACTIONS(8502), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152880,7 +154294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8427), 23, + ACTIONS(8500), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -152904,10 +154318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136537] = 3, + [137526] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8441), 10, + ACTIONS(8506), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152918,7 +154332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8439), 23, + ACTIONS(8504), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -152942,10 +154356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136578] = 3, + [137567] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8437), 10, + ACTIONS(8502), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152956,7 +154370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8435), 23, + ACTIONS(8500), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -152980,10 +154394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136619] = 3, + [137608] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8441), 10, + ACTIONS(8502), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -152994,7 +154408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8439), 23, + ACTIONS(8500), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -153018,10 +154432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136660] = 3, + [137649] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8429), 10, + ACTIONS(8496), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153032,7 +154446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8427), 23, + ACTIONS(8494), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -153056,10 +154470,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136701] = 3, + [137690] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8445), 10, + ACTIONS(8510), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153070,8 +154484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8443), 23, - ts_builtin_sym_end, + ACTIONS(8508), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -153080,6 +154493,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, @@ -153094,10 +154508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136742] = 3, + [137731] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8449), 10, + ACTIONS(8510), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153108,7 +154522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8447), 23, + ACTIONS(8508), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -153132,10 +154546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136783] = 3, + [137772] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8441), 10, + ACTIONS(8510), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153146,7 +154560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8439), 23, + ACTIONS(8508), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -153170,10 +154584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136824] = 3, + [137813] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8453), 10, + ACTIONS(8510), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153184,7 +154598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8451), 23, + ACTIONS(8508), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -153208,27 +154622,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136865] = 5, + [137854] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8403), 1, - anon_sym_COLON_COLON, - ACTIONS(8455), 1, - anon_sym_COLON, - ACTIONS(7374), 9, + ACTIONS(8514), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7372), 22, + ACTIONS(8512), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -153248,27 +154660,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136910] = 5, + [137895] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8403), 1, - anon_sym_COLON_COLON, - ACTIONS(8457), 1, - anon_sym_COLON, - ACTIONS(7374), 9, + ACTIONS(8514), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7372), 22, + ACTIONS(8512), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -153288,10 +154698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136955] = 3, + [137936] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8461), 10, + ACTIONS(8518), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153302,7 +154712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8459), 23, + ACTIONS(8516), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -153326,10 +154736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [136996] = 3, + [137977] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8449), 10, + ACTIONS(8518), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153340,7 +154750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8447), 23, + ACTIONS(8516), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -153364,10 +154774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137037] = 3, + [138018] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8453), 10, + ACTIONS(8518), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153378,7 +154788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8451), 23, + ACTIONS(8516), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -153402,25 +154812,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137078] = 3, + [138059] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8453), 10, + ACTIONS(8470), 1, + anon_sym_COLON_COLON, + ACTIONS(8520), 1, + anon_sym_COLON, + ACTIONS(7431), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8451), 23, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -153440,10 +154852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137119] = 3, + [138104] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8437), 10, + ACTIONS(8518), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153454,7 +154866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8435), 23, + ACTIONS(8516), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -153478,10 +154890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137160] = 3, + [138145] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8449), 10, + ACTIONS(8524), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153492,7 +154904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8447), 23, + ACTIONS(8522), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -153516,27 +154928,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137201] = 5, + [138186] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8403), 1, - anon_sym_COLON_COLON, - ACTIONS(8463), 1, - anon_sym_COLON, - ACTIONS(7374), 9, + ACTIONS(8524), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7372), 22, + ACTIONS(8522), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -153556,25 +154966,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137246] = 3, + [138227] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8467), 10, + ACTIONS(8470), 1, + anon_sym_COLON_COLON, + ACTIONS(8526), 1, + anon_sym_COLON, + ACTIONS(7431), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8465), 23, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -153594,10 +155006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137287] = 3, + [138272] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8471), 10, + ACTIONS(8530), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153608,7 +155020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8469), 23, + ACTIONS(8528), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -153632,10 +155044,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137328] = 3, + [138313] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8449), 10, + ACTIONS(8534), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153646,7 +155058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8447), 23, + ACTIONS(8532), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -153670,25 +155082,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137369] = 3, + [138354] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8425), 10, + ACTIONS(8470), 1, + anon_sym_COLON_COLON, + ACTIONS(8536), 1, + anon_sym_COLON, + ACTIONS(7431), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8423), 23, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -153708,25 +155122,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137410] = 3, + [138399] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8453), 10, + ACTIONS(8470), 1, + anon_sym_COLON_COLON, + ACTIONS(8538), 1, + anon_sym_COLON, + ACTIONS(7431), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8451), 23, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -153746,25 +155162,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137451] = 3, + [138444] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8417), 10, + ACTIONS(8470), 1, + anon_sym_COLON_COLON, + ACTIONS(8540), 1, + anon_sym_COLON, + ACTIONS(7431), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8415), 23, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -153784,25 +155202,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137492] = 3, + [138489] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8461), 10, + ACTIONS(8470), 1, + anon_sym_COLON_COLON, + ACTIONS(8542), 1, + anon_sym_COLON, + ACTIONS(7431), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8459), 23, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -153822,10 +155242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137533] = 3, + [138534] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8471), 10, + ACTIONS(8546), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -153836,7 +155256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8469), 23, + ACTIONS(8544), 23, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -153845,7 +155266,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, @@ -153860,25 +155280,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137574] = 3, + [138575] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8417), 10, + ACTIONS(8470), 1, + anon_sym_COLON_COLON, + ACTIONS(8548), 1, + anon_sym_COLON, + ACTIONS(7431), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8415), 23, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -153898,25 +155320,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137615] = 3, + [138620] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8471), 10, + ACTIONS(8470), 1, + anon_sym_COLON_COLON, + ACTIONS(8550), 1, + anon_sym_COLON, + ACTIONS(7431), 9, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, - anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8469), 23, + ACTIONS(7429), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -153936,27 +155360,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137656] = 5, + [138665] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8403), 1, - anon_sym_COLON_COLON, - ACTIONS(8473), 1, - anon_sym_COLON, - ACTIONS(7374), 9, + ACTIONS(8554), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7372), 22, + ACTIONS(8552), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -153976,27 +155398,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137701] = 5, + [138706] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8403), 1, - anon_sym_COLON_COLON, - ACTIONS(8475), 1, - anon_sym_COLON, - ACTIONS(7374), 9, + ACTIONS(8506), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7372), 22, + ACTIONS(8504), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -154016,10 +155436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137746] = 3, + [138747] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8461), 10, + ACTIONS(8506), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -154030,7 +155450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8459), 23, + ACTIONS(8504), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -154054,10 +155474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137787] = 3, + [138788] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8437), 10, + ACTIONS(8530), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -154068,7 +155488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8435), 23, + ACTIONS(8528), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -154092,10 +155512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137828] = 3, + [138829] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8467), 10, + ACTIONS(8492), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -154106,7 +155526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8465), 23, + ACTIONS(8490), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -154130,10 +155550,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137869] = 3, + [138870] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8461), 10, + ACTIONS(8558), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -154144,7 +155564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8459), 23, + ACTIONS(8556), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -154168,10 +155588,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137910] = 3, + [138911] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8479), 10, + ACTIONS(8558), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -154182,7 +155602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8477), 23, + ACTIONS(8556), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -154206,27 +155626,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137951] = 5, + [138952] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8403), 1, - anon_sym_COLON_COLON, - ACTIONS(8481), 1, - anon_sym_COLON, - ACTIONS(7374), 9, + ACTIONS(8558), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7372), 22, + ACTIONS(8556), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -154246,27 +155664,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [137996] = 5, + [138993] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8403), 1, - anon_sym_COLON_COLON, - ACTIONS(8483), 1, - anon_sym_COLON, - ACTIONS(7374), 9, + ACTIONS(8558), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7372), 22, + ACTIONS(8556), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -154286,10 +155702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138041] = 3, + [139034] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8471), 10, + ACTIONS(8562), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -154300,7 +155716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8469), 23, + ACTIONS(8560), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -154324,10 +155740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138082] = 3, + [139075] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8487), 10, + ACTIONS(8506), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -154338,7 +155754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8485), 23, + ACTIONS(8504), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -154362,74 +155778,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138123] = 12, + [139116] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8343), 1, - aux_sym_num_lit_token1, - ACTIONS(8351), 1, - anon_sym_SQUOTE, - ACTIONS(8353), 1, - anon_sym_COMMA, - ACTIONS(8359), 1, - anon_sym_SLASH, - STATE(2708), 1, - sym_format_modifiers, - STATE(2968), 1, - sym__format_token, - STATE(3059), 1, - aux_sym_format_modifiers_repeat1, - STATE(3983), 1, - sym_format_directive_type, - ACTIONS(8345), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(8357), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(8349), 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, - [138182] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8403), 1, - anon_sym_COLON_COLON, - ACTIONS(8489), 1, - anon_sym_COLON, - ACTIONS(7374), 9, + ACTIONS(8562), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7372), 22, + ACTIONS(8560), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -154449,27 +155816,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138227] = 5, + [139157] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8403), 1, - anon_sym_COLON_COLON, - ACTIONS(8491), 1, - anon_sym_COLON, - ACTIONS(7374), 9, + ACTIONS(8562), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7372), 22, + ACTIONS(8560), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -154489,27 +155854,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138272] = 5, + [139198] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8403), 1, - anon_sym_COLON_COLON, - ACTIONS(8493), 1, - anon_sym_COLON, - ACTIONS(7374), 9, + ACTIONS(8562), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, + anon_sym_COLON, sym_nil_lit, aux_sym_sym_lit_token1, anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(7372), 22, + ACTIONS(8560), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -154529,52 +155892,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138317] = 8, + [139239] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8498), 1, - anon_sym_POUND_, - ACTIONS(8501), 1, + ACTIONS(8412), 1, + aux_sym_num_lit_token1, + ACTIONS(8420), 1, + anon_sym_SQUOTE, + ACTIONS(8422), 1, + anon_sym_COMMA, + ACTIONS(8428), 1, + anon_sym_SLASH, + STATE(2722), 1, + sym_format_modifiers, + STATE(2911), 1, + sym__format_token, + STATE(3065), 1, + aux_sym_format_modifiers_repeat1, + STATE(4011), 1, + sym_format_directive_type, + ACTIONS(8414), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8426), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8418), 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, + [139298] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8566), 10, + anon_sym_POUND, + anon_sym_DOT, + aux_sym_num_lit_token1, anon_sym_COLON, - ACTIONS(8506), 1, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(8509), 1, - anon_sym_into, - ACTIONS(8495), 2, + ACTIONS(8564), 22, sym__ws, sym_comment, - STATE(3071), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(8504), 23, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, 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, - [138367] = 3, + anon_sym_POUND0A, + anon_sym_POUND0a, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA_AT, + anon_sym_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [139338] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8513), 10, + ACTIONS(8570), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -154585,7 +155990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8511), 22, + ACTIONS(8568), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -154608,10 +156013,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138407] = 3, + [139378] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8517), 10, + ACTIONS(8574), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -154622,7 +156027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8515), 22, + ACTIONS(8572), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -154645,10 +156050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138447] = 3, + [139418] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8521), 10, + ACTIONS(8578), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -154659,7 +156064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8519), 22, + ACTIONS(8576), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -154682,10 +156087,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138487] = 3, + [139458] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8525), 10, + ACTIONS(8582), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -154696,7 +156101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8523), 22, + ACTIONS(8580), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -154719,10 +156124,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138527] = 3, + [139498] = 8, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8587), 1, + anon_sym_POUND_, + ACTIONS(8590), 1, + anon_sym_COLON, + ACTIONS(8595), 1, + anon_sym_cl, + ACTIONS(8598), 1, + anon_sym_into, + ACTIONS(8584), 2, + sym__ws, + sym_comment, + STATE(3098), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8593), 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, + [139548] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8529), 10, + ACTIONS(8602), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -154733,7 +156180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8527), 22, + ACTIONS(8600), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -154756,10 +156203,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138567] = 3, + [139588] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8533), 10, + ACTIONS(8606), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -154770,7 +156217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8531), 22, + ACTIONS(8604), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -154793,25 +156240,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138607] = 8, + [139628] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8538), 1, + ACTIONS(8611), 1, anon_sym_POUND_, - ACTIONS(8541), 1, + ACTIONS(8614), 1, anon_sym_COLON, - ACTIONS(8546), 1, + ACTIONS(8619), 1, anon_sym_cl, - ACTIONS(8549), 1, + ACTIONS(8622), 1, anon_sym_into, - ACTIONS(8535), 2, + ACTIONS(8608), 2, sym__ws, sym_comment, - STATE(3074), 3, + STATE(3095), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8544), 23, + ACTIONS(8617), 23, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -154835,47 +156282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138657] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8553), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(8551), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - sym_self_referential_reader_macro, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [138697] = 3, + [139678] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8557), 10, + ACTIONS(8626), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -154886,7 +156296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(8555), 22, + ACTIONS(8624), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -154909,19 +156319,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [138737] = 5, + [139718] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8562), 1, + ACTIONS(8631), 1, anon_sym_POUND_, - ACTIONS(8559), 2, + ACTIONS(8628), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2487), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8565), 25, + ACTIONS(8634), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -154947,19 +156357,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138780] = 5, + [139761] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8570), 1, + ACTIONS(8639), 1, anon_sym_POUND_, - ACTIONS(8567), 2, + ACTIONS(8636), 2, sym__ws, sym_comment, - STATE(2281), 3, + STATE(2189), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8573), 25, + ACTIONS(8642), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -154985,19 +156395,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138823] = 5, + [139804] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8578), 1, + ACTIONS(8647), 1, anon_sym_POUND_, - ACTIONS(8575), 2, + ACTIONS(8644), 2, sym__ws, sym_comment, - STATE(2047), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8581), 25, + ACTIONS(8650), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155023,19 +156433,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138866] = 5, + [139847] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8586), 1, + ACTIONS(8655), 1, anon_sym_POUND_, - ACTIONS(8583), 2, + ACTIONS(8652), 2, sym__ws, sym_comment, - STATE(2041), 3, + STATE(2352), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8589), 25, + ACTIONS(8658), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155061,19 +156471,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138909] = 5, + [139890] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8594), 1, + ACTIONS(8663), 1, anon_sym_POUND_, - ACTIONS(8591), 2, + ACTIONS(8660), 2, sym__ws, sym_comment, - STATE(2061), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8597), 25, + ACTIONS(8666), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155099,19 +156509,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138952] = 5, + [139933] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8602), 1, + ACTIONS(8655), 1, anon_sym_POUND_, - ACTIONS(8599), 2, + ACTIONS(8668), 2, sym__ws, sym_comment, - STATE(2051), 3, + STATE(2344), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8605), 25, + ACTIONS(8658), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155137,19 +156547,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [138995] = 5, + [139976] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8610), 1, + ACTIONS(8663), 1, anon_sym_POUND_, - ACTIONS(8607), 2, + ACTIONS(8660), 2, sym__ws, sym_comment, - STATE(2059), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8613), 25, + ACTIONS(8666), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155175,19 +156585,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139038] = 5, + [140019] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8618), 1, + ACTIONS(8663), 1, anon_sym_POUND_, - ACTIONS(8615), 2, + ACTIONS(8660), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(7314), 25, + ACTIONS(8666), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155213,19 +156623,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139081] = 5, + [140062] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8610), 1, + ACTIONS(8674), 1, anon_sym_POUND_, - ACTIONS(8621), 2, + ACTIONS(8671), 2, sym__ws, sym_comment, - STATE(2062), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8613), 25, + ACTIONS(8677), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155251,19 +156661,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139124] = 5, + [140105] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8627), 1, + ACTIONS(8682), 1, anon_sym_POUND_, - ACTIONS(8624), 2, + ACTIONS(8679), 2, sym__ws, sym_comment, - STATE(2064), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8630), 25, + ACTIONS(8685), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155289,19 +156699,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139167] = 5, + [140148] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8635), 1, + ACTIONS(8690), 1, anon_sym_POUND_, - ACTIONS(8632), 2, + ACTIONS(8687), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8638), 25, + ACTIONS(8693), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155327,19 +156737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139210] = 5, + [140191] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8627), 1, + ACTIONS(8698), 1, anon_sym_POUND_, - ACTIONS(8640), 2, + ACTIONS(8695), 2, sym__ws, sym_comment, - STATE(2067), 3, + STATE(2059), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8630), 25, + ACTIONS(8701), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155365,19 +156775,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139253] = 5, + [140234] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8610), 1, + ACTIONS(8706), 1, anon_sym_POUND_, - ACTIONS(8643), 2, + ACTIONS(8703), 2, sym__ws, sym_comment, - STATE(2069), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8613), 25, + ACTIONS(8709), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155403,19 +156813,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139296] = 5, + [140277] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8649), 1, + ACTIONS(8714), 1, anon_sym_POUND_, - ACTIONS(8646), 2, + ACTIONS(8711), 2, sym__ws, sym_comment, - STATE(2072), 3, + STATE(2332), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8652), 25, + ACTIONS(8717), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155441,19 +156851,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139339] = 5, + [140320] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8594), 1, + ACTIONS(8682), 1, anon_sym_POUND_, - ACTIONS(8654), 2, + ACTIONS(8679), 2, sym__ws, sym_comment, - STATE(2076), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8597), 25, + ACTIONS(8685), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155479,19 +156889,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139382] = 5, + [140363] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8602), 1, + ACTIONS(8714), 1, anon_sym_POUND_, - ACTIONS(8657), 2, + ACTIONS(8719), 2, sym__ws, sym_comment, - STATE(2079), 3, + STATE(2330), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8605), 25, + ACTIONS(8717), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155517,19 +156927,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139425] = 5, + [140406] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8663), 1, + ACTIONS(8682), 1, anon_sym_POUND_, - ACTIONS(8660), 2, + ACTIONS(8679), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8666), 25, + ACTIONS(8685), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155555,19 +156965,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139468] = 5, + [140449] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8671), 1, + ACTIONS(8682), 1, anon_sym_POUND_, - ACTIONS(8668), 2, + ACTIONS(8679), 2, sym__ws, sym_comment, - STATE(2086), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8674), 25, + ACTIONS(8685), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155593,19 +157003,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139511] = 5, + [140492] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8671), 1, + ACTIONS(8725), 1, anon_sym_POUND_, - ACTIONS(8676), 2, + ACTIONS(8722), 2, sym__ws, sym_comment, - STATE(2089), 3, + STATE(2253), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8674), 25, + ACTIONS(8728), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155631,19 +157041,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139554] = 5, + [140535] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8682), 1, + ACTIONS(8733), 1, anon_sym_POUND_, - ACTIONS(8679), 2, + ACTIONS(8730), 2, sym__ws, sym_comment, - STATE(2095), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8685), 25, + ACTIONS(8736), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155669,19 +157079,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139597] = 5, + [140578] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8690), 1, + ACTIONS(8741), 1, anon_sym_POUND_, - ACTIONS(8687), 2, + ACTIONS(8738), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2056), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8693), 25, + ACTIONS(8744), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155707,19 +157117,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139640] = 5, + [140621] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8682), 1, + ACTIONS(8749), 1, anon_sym_POUND_, - ACTIONS(8695), 2, + ACTIONS(8746), 2, sym__ws, sym_comment, - STATE(2098), 3, + STATE(2328), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8685), 25, + ACTIONS(8752), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155745,19 +157155,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139683] = 5, + [140664] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8671), 1, + ACTIONS(8706), 1, anon_sym_POUND_, - ACTIONS(8698), 2, + ACTIONS(8703), 2, sym__ws, sym_comment, - STATE(2100), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8674), 25, + ACTIONS(8709), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155783,19 +157193,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139726] = 5, + [140707] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8704), 1, + ACTIONS(8706), 1, anon_sym_POUND_, - ACTIONS(8701), 2, + ACTIONS(8703), 2, sym__ws, sym_comment, - STATE(2105), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8707), 25, + ACTIONS(8709), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155821,19 +157231,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139769] = 5, + [140750] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8712), 1, + ACTIONS(8706), 1, anon_sym_POUND_, - ACTIONS(8709), 2, + ACTIONS(8703), 2, sym__ws, sym_comment, - STATE(2109), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8715), 25, + ACTIONS(8709), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155859,19 +157269,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139812] = 5, + [140793] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8720), 1, + ACTIONS(8682), 1, anon_sym_POUND_, - ACTIONS(8717), 2, + ACTIONS(8679), 2, sym__ws, sym_comment, - STATE(2112), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8723), 25, + ACTIONS(8685), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155897,19 +157307,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139855] = 5, + [140836] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8712), 1, + ACTIONS(8757), 1, anon_sym_POUND_, - ACTIONS(8725), 2, + ACTIONS(8754), 2, sym__ws, sym_comment, - STATE(2117), 3, + STATE(2122), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8715), 25, + ACTIONS(8760), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155935,19 +157345,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139898] = 5, + [140879] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8720), 1, + ACTIONS(8714), 1, anon_sym_POUND_, - ACTIONS(8728), 2, + ACTIONS(8762), 2, sym__ws, sym_comment, - STATE(2120), 3, + STATE(2322), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8723), 25, + ACTIONS(8717), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -155973,19 +157383,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139941] = 5, + [140922] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8734), 1, + ACTIONS(8714), 1, anon_sym_POUND_, - ACTIONS(8731), 2, + ACTIONS(8765), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2320), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8737), 25, + ACTIONS(8717), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156011,19 +157421,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [139984] = 5, + [140965] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8742), 1, + ACTIONS(8771), 1, anon_sym_POUND_, - ACTIONS(8739), 2, + ACTIONS(8768), 2, sym__ws, sym_comment, - STATE(2129), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8745), 25, + ACTIONS(8774), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156049,19 +157459,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140027] = 5, + [141008] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8750), 1, + ACTIONS(8725), 1, anon_sym_POUND_, - ACTIONS(8747), 2, + ACTIONS(8776), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2131), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8753), 25, + ACTIONS(8728), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156087,19 +157497,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140070] = 5, + [141051] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8734), 1, + ACTIONS(8682), 1, anon_sym_POUND_, - ACTIONS(8731), 2, + ACTIONS(8679), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8737), 25, + ACTIONS(8685), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156125,19 +157535,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140113] = 5, + [141094] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8758), 1, + ACTIONS(8647), 1, anon_sym_POUND_, - ACTIONS(8755), 2, + ACTIONS(8644), 2, sym__ws, sym_comment, - STATE(2132), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8761), 25, + ACTIONS(8650), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156163,19 +157573,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140156] = 5, + [141137] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8766), 1, + ACTIONS(8714), 1, anon_sym_POUND_, - ACTIONS(8763), 2, + ACTIONS(8779), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2313), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8769), 25, + ACTIONS(8717), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156201,19 +157611,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140199] = 5, + [141180] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8758), 1, + ACTIONS(8682), 1, anon_sym_POUND_, - ACTIONS(8771), 2, + ACTIONS(8679), 2, sym__ws, sym_comment, - STATE(2136), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8761), 25, + ACTIONS(8685), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156239,19 +157649,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140242] = 5, + [141223] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8758), 1, + ACTIONS(8682), 1, anon_sym_POUND_, - ACTIONS(8774), 2, + ACTIONS(8679), 2, sym__ws, sym_comment, - STATE(2201), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8761), 25, + ACTIONS(8685), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156277,19 +157687,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140285] = 5, + [141266] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8766), 1, + ACTIONS(8733), 1, anon_sym_POUND_, - ACTIONS(8763), 2, + ACTIONS(8730), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8769), 25, + ACTIONS(8736), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156315,19 +157725,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140328] = 5, + [141309] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8742), 1, + ACTIONS(8749), 1, anon_sym_POUND_, - ACTIONS(8777), 2, + ACTIONS(8782), 2, sym__ws, sym_comment, - STATE(2139), 3, + STATE(2312), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8745), 25, + ACTIONS(8752), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156353,19 +157763,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140371] = 5, + [141352] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8734), 1, + ACTIONS(8706), 1, anon_sym_POUND_, - ACTIONS(8731), 2, + ACTIONS(8703), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8737), 25, + ACTIONS(8709), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156391,19 +157801,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140414] = 5, + [141395] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8742), 1, + ACTIONS(8788), 1, anon_sym_POUND_, - ACTIONS(8780), 2, + ACTIONS(8785), 2, sym__ws, sym_comment, - STATE(2142), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8745), 25, + ACTIONS(8791), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156429,19 +157839,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140457] = 5, + [141438] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8786), 1, + ACTIONS(8706), 1, anon_sym_POUND_, - ACTIONS(8783), 2, + ACTIONS(8703), 2, sym__ws, sym_comment, - STATE(2144), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8789), 25, + ACTIONS(8709), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156467,19 +157877,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140500] = 5, + [141481] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8794), 1, + ACTIONS(8796), 1, anon_sym_POUND_, - ACTIONS(8791), 2, + ACTIONS(8793), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2311), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8797), 25, + ACTIONS(8799), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156505,19 +157915,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140543] = 5, + [141524] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8786), 1, + ACTIONS(8804), 1, anon_sym_POUND_, - ACTIONS(8799), 2, + ACTIONS(8801), 2, sym__ws, sym_comment, - STATE(2148), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8789), 25, + ACTIONS(8807), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156543,20 +157953,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140586] = 2, + [141567] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7578), 31, + ACTIONS(8804), 1, + anon_sym_POUND_, + ACTIONS(8801), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2212), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8807), 25, 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, @@ -156574,23 +157988,22 @@ 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, - [140623] = 5, + [141610] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8671), 1, + ACTIONS(8804), 1, anon_sym_POUND_, - ACTIONS(8802), 2, + ACTIONS(8801), 2, sym__ws, sym_comment, - STATE(2149), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8674), 25, + ACTIONS(8807), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156616,19 +158029,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140666] = 5, + [141653] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8750), 1, + ACTIONS(8812), 1, anon_sym_POUND_, - ACTIONS(8747), 2, + ACTIONS(8809), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8753), 25, + ACTIONS(8815), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156654,19 +158067,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140709] = 5, + [141696] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8671), 1, + ACTIONS(8820), 1, anon_sym_POUND_, - ACTIONS(8805), 2, + ACTIONS(8817), 2, sym__ws, sym_comment, - STATE(2152), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8674), 25, + ACTIONS(8823), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156692,19 +158105,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140752] = 5, + [141739] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8682), 1, + ACTIONS(8828), 1, anon_sym_POUND_, - ACTIONS(8808), 2, + ACTIONS(8825), 2, sym__ws, sym_comment, - STATE(2155), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8685), 25, + ACTIONS(8831), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156730,19 +158143,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140795] = 5, + [141782] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8690), 1, + ACTIONS(8836), 1, anon_sym_POUND_, - ACTIONS(8687), 2, + ACTIONS(8833), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2308), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8693), 25, + ACTIONS(8839), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156768,19 +158181,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140838] = 5, + [141825] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8682), 1, + ACTIONS(8836), 1, anon_sym_POUND_, - ACTIONS(8811), 2, + ACTIONS(8841), 2, sym__ws, sym_comment, - STATE(2161), 3, + STATE(2307), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8685), 25, + ACTIONS(8839), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156806,19 +158219,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140881] = 5, + [141868] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8671), 1, + ACTIONS(8820), 1, anon_sym_POUND_, - ACTIONS(8814), 2, + ACTIONS(8817), 2, sym__ws, sym_comment, - STATE(2163), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8674), 25, + ACTIONS(8823), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156844,20 +158257,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [140924] = 2, + [141911] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7530), 31, + ACTIONS(8836), 1, + anon_sym_POUND_, + ACTIONS(8844), 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(8839), 25, 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, @@ -156875,24 +158292,27 @@ 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, - [140961] = 2, + [141954] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7519), 31, + ACTIONS(8820), 1, + anon_sym_POUND_, + ACTIONS(8817), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2212), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8823), 25, 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, @@ -156910,23 +158330,22 @@ 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, - [140998] = 5, + [141997] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8704), 1, + ACTIONS(8820), 1, anon_sym_POUND_, ACTIONS(8817), 2, sym__ws, sym_comment, - STATE(2166), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8707), 25, + ACTIONS(8823), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156952,19 +158371,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141041] = 5, + [142040] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8742), 1, + ACTIONS(8850), 1, anon_sym_POUND_, - ACTIONS(8820), 2, + ACTIONS(8847), 2, sym__ws, sym_comment, - STATE(2130), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8745), 25, + ACTIONS(8853), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -156990,19 +158409,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141084] = 5, + [142083] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8826), 1, + ACTIONS(8858), 1, anon_sym_POUND_, - ACTIONS(8823), 2, + ACTIONS(8855), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2281), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8829), 25, + ACTIONS(8861), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -157028,19 +158447,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141127] = 5, + [142126] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8834), 1, + ACTIONS(8866), 1, anon_sym_POUND_, - ACTIONS(8831), 2, + ACTIONS(8863), 2, sym__ws, sym_comment, - STATE(2168), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8837), 25, + ACTIONS(8869), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -157066,19 +158485,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141170] = 5, + [142169] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8834), 1, + ACTIONS(8866), 1, anon_sym_POUND_, - ACTIONS(8839), 2, + ACTIONS(8863), 2, sym__ws, sym_comment, - STATE(2169), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8837), 25, + ACTIONS(8869), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -157104,19 +158523,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141213] = 5, + [142212] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8826), 1, + ACTIONS(8866), 1, anon_sym_POUND_, - ACTIONS(8823), 2, + ACTIONS(8863), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8829), 25, + ACTIONS(8869), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -157142,20 +158561,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141256] = 2, + [142255] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7471), 31, + ACTIONS(8874), 1, + anon_sym_POUND_, + ACTIONS(8871), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2275), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8877), 25, 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, @@ -157173,24 +158596,27 @@ 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, - [141293] = 2, + [142298] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7471), 31, + ACTIONS(8882), 1, + anon_sym_POUND_, + ACTIONS(8879), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2212), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8885), 25, 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, @@ -157208,24 +158634,27 @@ 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, - [141330] = 2, + [142341] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7467), 31, + ACTIONS(8882), 1, + anon_sym_POUND_, + ACTIONS(8879), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2212), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8885), 25, 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, @@ -157243,24 +158672,27 @@ 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, - [141367] = 2, + [142384] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7455), 31, + ACTIONS(8882), 1, + anon_sym_POUND_, + ACTIONS(8879), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2212), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8885), 25, 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, @@ -157278,23 +158710,22 @@ 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, - [141404] = 5, + [142427] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8845), 1, + ACTIONS(8890), 1, anon_sym_POUND_, - ACTIONS(8842), 2, + ACTIONS(8887), 2, sym__ws, sym_comment, - STATE(2171), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8848), 25, + ACTIONS(8893), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -157320,19 +158751,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141447] = 5, + [142470] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8853), 1, + ACTIONS(8898), 1, anon_sym_POUND_, - ACTIONS(8850), 2, + ACTIONS(8895), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8856), 25, + ACTIONS(8901), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -157358,19 +158789,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141490] = 5, + [142513] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8845), 1, + ACTIONS(8906), 1, anon_sym_POUND_, - ACTIONS(8858), 2, + ACTIONS(8903), 2, sym__ws, sym_comment, - STATE(2174), 3, + STATE(2118), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8848), 25, + ACTIONS(8909), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -157396,19 +158827,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141533] = 5, + [142556] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8845), 1, + ACTIONS(8914), 1, anon_sym_POUND_, - ACTIONS(8861), 2, + ACTIONS(8911), 2, sym__ws, sym_comment, - STATE(2176), 3, + STATE(2266), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8848), 25, + ACTIONS(8917), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -157434,19 +158865,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141576] = 5, + [142599] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8853), 1, + ACTIONS(8922), 1, anon_sym_POUND_, - ACTIONS(8850), 2, + ACTIONS(8919), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8856), 25, + ACTIONS(8925), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -157472,19 +158903,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141619] = 5, + [142642] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8834), 1, + ACTIONS(8914), 1, anon_sym_POUND_, - ACTIONS(8864), 2, + ACTIONS(8927), 2, sym__ws, sym_comment, - STATE(2178), 3, + STATE(2258), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8837), 25, + ACTIONS(8917), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -157510,19 +158941,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141662] = 5, + [142685] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8826), 1, + ACTIONS(8898), 1, anon_sym_POUND_, - ACTIONS(8823), 2, + ACTIONS(8895), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8829), 25, + ACTIONS(8901), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -157548,19 +158979,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141705] = 5, + [142728] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8834), 1, + ACTIONS(8647), 1, anon_sym_POUND_, - ACTIONS(8867), 2, + ACTIONS(8644), 2, sym__ws, sym_comment, - STATE(2181), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8837), 25, + ACTIONS(8650), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -157586,19 +159017,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141748] = 5, + [142771] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8873), 1, + ACTIONS(8933), 1, anon_sym_POUND_, - ACTIONS(8870), 2, + ACTIONS(8930), 2, sym__ws, sym_comment, - STATE(2183), 3, + STATE(2129), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8876), 25, + ACTIONS(8936), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -157624,20 +159055,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141791] = 2, + [142814] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7417), 31, + ACTIONS(8914), 1, + anon_sym_POUND_, + ACTIONS(8938), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2222), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8917), 25, 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, @@ -157655,24 +159090,27 @@ 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, - [141828] = 2, + [142857] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7424), 31, + ACTIONS(8944), 1, + anon_sym_POUND_, + ACTIONS(8941), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2212), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8947), 25, 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, @@ -157690,23 +159128,22 @@ 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, - [141865] = 5, + [142900] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8881), 1, + ACTIONS(8906), 1, anon_sym_POUND_, - ACTIONS(8878), 2, + ACTIONS(8949), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2113), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8884), 25, + ACTIONS(8909), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -157732,20 +159169,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141908] = 2, + [142943] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7432), 31, + ACTIONS(8955), 1, + anon_sym_POUND_, + ACTIONS(8952), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2200), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8958), 25, 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, @@ -157763,23 +159204,22 @@ 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, - [141945] = 5, + [142986] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8873), 1, + ACTIONS(8955), 1, anon_sym_POUND_, - ACTIONS(8886), 2, + ACTIONS(8960), 2, sym__ws, sym_comment, - STATE(2186), 3, + STATE(2199), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8876), 25, + ACTIONS(8958), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -157805,19 +159245,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [141988] = 5, + [143029] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8892), 1, + ACTIONS(8944), 1, anon_sym_POUND_, - ACTIONS(8889), 2, + ACTIONS(8941), 2, sym__ws, sym_comment, - STATE(2187), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8895), 25, + ACTIONS(8947), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -157843,19 +159283,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142031] = 5, + [143072] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8900), 1, + ACTIONS(8741), 1, anon_sym_POUND_, - ACTIONS(8897), 2, + ACTIONS(8963), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2198), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8903), 25, + ACTIONS(8744), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -157881,19 +159321,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142074] = 5, + [143115] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8892), 1, + ACTIONS(8969), 1, anon_sym_POUND_, - ACTIONS(8905), 2, + ACTIONS(8966), 2, sym__ws, sym_comment, - STATE(2190), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8895), 25, + ACTIONS(8972), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -157919,19 +159359,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142117] = 5, + [143158] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8911), 1, + ACTIONS(8977), 1, anon_sym_POUND_, - ACTIONS(8908), 2, + ACTIONS(8974), 2, sym__ws, sym_comment, - STATE(2191), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8914), 25, + ACTIONS(8980), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -157957,19 +159397,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142160] = 5, + [143201] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8919), 1, + ACTIONS(8985), 1, anon_sym_POUND_, - ACTIONS(8916), 2, + ACTIONS(8982), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2467), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8922), 25, + ACTIONS(8988), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -157995,19 +159435,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142203] = 5, + [143244] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8911), 1, + ACTIONS(8993), 1, anon_sym_POUND_, - ACTIONS(8924), 2, + ACTIONS(8990), 2, sym__ws, sym_comment, - STATE(2194), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8914), 25, + ACTIONS(8996), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158033,19 +159473,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142246] = 5, + [143287] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8892), 1, + ACTIONS(9001), 1, anon_sym_POUND_, - ACTIONS(8927), 2, + ACTIONS(8998), 2, sym__ws, sym_comment, - STATE(2196), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8895), 25, + ACTIONS(9004), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158071,19 +159511,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142289] = 5, + [143330] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8933), 1, + ACTIONS(8698), 1, anon_sym_POUND_, - ACTIONS(8930), 2, + ACTIONS(9006), 2, sym__ws, sym_comment, - STATE(2199), 3, + STATE(2185), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8936), 25, + ACTIONS(8701), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158109,19 +159549,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142332] = 5, + [143373] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8892), 1, + ACTIONS(9012), 1, anon_sym_POUND_, - ACTIONS(8938), 2, + ACTIONS(9009), 2, sym__ws, sym_comment, - STATE(2222), 3, + STATE(2210), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8895), 25, + ACTIONS(9015), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158147,19 +159587,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142375] = 5, + [143416] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8900), 1, + ACTIONS(9020), 1, anon_sym_POUND_, - ACTIONS(8897), 2, + ACTIONS(9017), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2287), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8903), 25, + ACTIONS(9023), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158185,19 +159625,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142418] = 5, + [143459] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8892), 1, + ACTIONS(8828), 1, anon_sym_POUND_, - ACTIONS(8941), 2, + ACTIONS(8825), 2, sym__ws, sym_comment, - STATE(2031), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8895), 25, + ACTIONS(8831), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158223,19 +159663,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142461] = 5, + [143502] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8911), 1, + ACTIONS(9028), 1, anon_sym_POUND_, - ACTIONS(8944), 2, + ACTIONS(9025), 2, sym__ws, sym_comment, - STATE(2205), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8914), 25, + ACTIONS(9031), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158261,19 +159701,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142504] = 5, + [143545] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8919), 1, + ACTIONS(9012), 1, anon_sym_POUND_, - ACTIONS(8916), 2, + ACTIONS(9033), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2262), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8922), 25, + ACTIONS(9015), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158299,19 +159739,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142547] = 5, + [143588] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8911), 1, + ACTIONS(9039), 1, anon_sym_POUND_, - ACTIONS(8947), 2, + ACTIONS(9036), 2, sym__ws, sym_comment, - STATE(2208), 3, + STATE(2407), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8914), 25, + ACTIONS(9042), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158337,19 +159777,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142590] = 5, + [143631] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8892), 1, + ACTIONS(9047), 1, anon_sym_POUND_, - ACTIONS(8950), 2, + ACTIONS(9044), 2, sym__ws, sym_comment, - STATE(2210), 3, + STATE(2272), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8895), 25, + ACTIONS(9050), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158375,19 +159815,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142633] = 5, + [143674] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8933), 1, + ACTIONS(9055), 1, anon_sym_POUND_, - ACTIONS(8953), 2, + ACTIONS(9052), 2, sym__ws, sym_comment, - STATE(2213), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8936), 25, + ACTIONS(9058), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158413,19 +159853,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142676] = 5, + [143717] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8959), 1, + ACTIONS(9047), 1, anon_sym_POUND_, - ACTIONS(8956), 2, + ACTIONS(9060), 2, sym__ws, sym_comment, - STATE(2216), 3, + STATE(2334), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8962), 25, + ACTIONS(9050), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158451,20 +159891,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142719] = 2, + [143760] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7744), 31, + ACTIONS(9066), 1, + anon_sym_POUND_, + ACTIONS(9063), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2212), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9069), 25, 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, @@ -158482,24 +159926,27 @@ 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, - [142756] = 2, + [143803] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7736), 31, + ACTIONS(8985), 1, + anon_sym_POUND_, + ACTIONS(9071), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2337), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8988), 25, 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, @@ -158517,24 +159964,27 @@ 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, - [142793] = 2, + [143846] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7722), 31, + ACTIONS(8690), 1, + anon_sym_POUND_, + ACTIONS(8687), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2212), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8693), 25, 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, @@ -158552,23 +160002,22 @@ 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, - [142830] = 5, + [143889] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8967), 1, + ACTIONS(8985), 1, anon_sym_POUND_, - ACTIONS(8964), 2, + ACTIONS(9074), 2, sym__ws, sym_comment, - STATE(2219), 3, + STATE(2357), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8970), 25, + ACTIONS(8988), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158594,19 +160043,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142873] = 5, + [143932] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8975), 1, + ACTIONS(9066), 1, anon_sym_POUND_, - ACTIONS(8972), 2, + ACTIONS(9063), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8978), 25, + ACTIONS(9069), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158632,19 +160081,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142916] = 5, + [143975] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8975), 1, + ACTIONS(8985), 1, anon_sym_POUND_, - ACTIONS(8972), 2, + ACTIONS(9077), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2385), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8978), 25, + ACTIONS(8988), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158670,19 +160119,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [142959] = 5, + [144018] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8983), 1, + ACTIONS(9055), 1, anon_sym_POUND_, - ACTIONS(8980), 2, + ACTIONS(9052), 2, sym__ws, sym_comment, - STATE(2224), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8986), 25, + ACTIONS(9058), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158708,19 +160157,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143002] = 5, + [144061] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8991), 1, + ACTIONS(9047), 1, anon_sym_POUND_, - ACTIONS(8988), 2, + ACTIONS(9080), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2409), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8994), 25, + ACTIONS(9050), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158746,20 +160195,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143045] = 2, + [144104] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7671), 31, + ACTIONS(9047), 1, + anon_sym_POUND_, + ACTIONS(9083), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2410), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9050), 25, 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, @@ -158777,23 +160230,22 @@ 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, - [143082] = 5, + [144147] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8999), 1, + ACTIONS(9055), 1, anon_sym_POUND_, - ACTIONS(8996), 2, + ACTIONS(9052), 2, sym__ws, sym_comment, - STATE(2225), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9002), 25, + ACTIONS(9058), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158819,19 +160271,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143125] = 5, + [144190] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8999), 1, + ACTIONS(9012), 1, anon_sym_POUND_, - ACTIONS(9004), 2, + ACTIONS(9086), 2, sym__ws, sym_comment, - STATE(2226), 3, + STATE(2419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9002), 25, + ACTIONS(9015), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158857,19 +160309,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143168] = 5, + [144233] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8991), 1, + ACTIONS(8757), 1, anon_sym_POUND_, - ACTIONS(8988), 2, + ACTIONS(9089), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2339), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8994), 25, + ACTIONS(8760), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158895,19 +160347,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143211] = 5, + [144276] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8999), 1, + ACTIONS(9095), 1, anon_sym_POUND_, - ACTIONS(9007), 2, + ACTIONS(9092), 2, sym__ws, sym_comment, - STATE(2228), 3, + STATE(2089), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9002), 25, + ACTIONS(9098), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158933,19 +160385,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143254] = 5, + [144319] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8999), 1, + ACTIONS(9028), 1, anon_sym_POUND_, - ACTIONS(9010), 2, + ACTIONS(9025), 2, sym__ws, sym_comment, - STATE(2231), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9002), 25, + ACTIONS(9031), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -158971,19 +160423,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143297] = 5, + [144362] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8975), 1, + ACTIONS(9012), 1, anon_sym_POUND_, - ACTIONS(8972), 2, + ACTIONS(9100), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2455), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8978), 25, + ACTIONS(9015), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159009,19 +160461,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143340] = 5, + [144405] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8983), 1, + ACTIONS(8828), 1, anon_sym_POUND_, - ACTIONS(9013), 2, + ACTIONS(8825), 2, sym__ws, sym_comment, - STATE(2232), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8986), 25, + ACTIONS(8831), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159047,19 +160499,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143383] = 5, + [144448] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8983), 1, + ACTIONS(9047), 1, anon_sym_POUND_, - ACTIONS(9016), 2, + ACTIONS(9103), 2, sym__ws, sym_comment, - STATE(2233), 3, + STATE(2456), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8986), 25, + ACTIONS(9050), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159085,19 +160537,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143426] = 5, + [144491] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8975), 1, + ACTIONS(9055), 1, anon_sym_POUND_, - ACTIONS(8972), 2, + ACTIONS(9052), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8978), 25, + ACTIONS(9058), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159123,19 +160575,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143469] = 5, + [144534] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9022), 1, + ACTIONS(9047), 1, anon_sym_POUND_, - ACTIONS(9019), 2, + ACTIONS(9106), 2, sym__ws, sym_comment, - STATE(2235), 3, + STATE(2460), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9025), 25, + ACTIONS(9050), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159161,19 +160613,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143512] = 5, + [144577] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9030), 1, + ACTIONS(9066), 1, anon_sym_POUND_, - ACTIONS(9027), 2, + ACTIONS(9063), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9033), 25, + ACTIONS(9069), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159199,19 +160651,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143555] = 5, + [144620] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9022), 1, + ACTIONS(8985), 1, anon_sym_POUND_, - ACTIONS(9035), 2, + ACTIONS(9109), 2, sym__ws, sym_comment, - STATE(2238), 3, + STATE(2462), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9025), 25, + ACTIONS(8988), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159237,19 +160689,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143598] = 5, + [144663] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9022), 1, + ACTIONS(9095), 1, anon_sym_POUND_, - ACTIONS(9038), 2, + ACTIONS(9112), 2, sym__ws, sym_comment, - STATE(2240), 3, + STATE(2061), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9025), 25, + ACTIONS(9098), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159275,20 +160727,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143641] = 2, + [144706] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7534), 31, + ACTIONS(9095), 1, + anon_sym_POUND_, + ACTIONS(9115), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2087), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9098), 25, 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, @@ -159306,23 +160762,22 @@ 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, - [143678] = 5, + [144749] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9030), 1, + ACTIONS(8985), 1, anon_sym_POUND_, - ACTIONS(9027), 2, + ACTIONS(9118), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2464), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9033), 25, + ACTIONS(8988), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159348,19 +160803,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143721] = 5, + [144792] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8826), 1, + ACTIONS(9066), 1, anon_sym_POUND_, - ACTIONS(8823), 2, + ACTIONS(9063), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8829), 25, + ACTIONS(9069), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159386,19 +160841,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143764] = 5, + [144835] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8834), 1, + ACTIONS(9124), 1, anon_sym_POUND_, - ACTIONS(9041), 2, + ACTIONS(9121), 2, sym__ws, sym_comment, - STATE(2242), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8837), 25, + ACTIONS(9127), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159424,19 +160879,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143807] = 5, + [144878] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8834), 1, + ACTIONS(9055), 1, anon_sym_POUND_, - ACTIONS(9044), 2, + ACTIONS(9052), 2, sym__ws, sym_comment, - STATE(2243), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8837), 25, + ACTIONS(9058), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159462,19 +160917,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143850] = 5, + [144921] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8826), 1, + ACTIONS(9047), 1, anon_sym_POUND_, - ACTIONS(8823), 2, + ACTIONS(9129), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2470), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8829), 25, + ACTIONS(9050), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159500,18 +160955,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143893] = 4, + [144964] = 5, ACTIONS(47), 1, sym_block_comment, ACTIONS(9047), 1, - anon_sym_COLON, - ACTIONS(9049), 1, - anon_sym_COLON_COLON, - ACTIONS(7393), 29, + anon_sym_POUND_, + ACTIONS(9132), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2472), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9050), 25, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -159533,23 +160990,22 @@ 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] = 5, + [145007] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8845), 1, + ACTIONS(9055), 1, anon_sym_POUND_, - ACTIONS(9051), 2, + ACTIONS(9052), 2, sym__ws, sym_comment, - STATE(2245), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8848), 25, + ACTIONS(9058), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159575,19 +161031,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143977] = 5, + [145050] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8853), 1, + ACTIONS(9138), 1, anon_sym_POUND_, - ACTIONS(8850), 2, + ACTIONS(9135), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8856), 25, + ACTIONS(9141), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159613,20 +161069,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144020] = 2, + [145093] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7428), 31, + ACTIONS(9146), 1, + anon_sym_POUND_, + ACTIONS(9143), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2473), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9149), 25, 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, @@ -159644,23 +161104,22 @@ 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, - [144057] = 5, + [145136] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8845), 1, + ACTIONS(8757), 1, anon_sym_POUND_, - ACTIONS(9054), 2, + ACTIONS(9151), 2, sym__ws, sym_comment, - STATE(2248), 3, + STATE(2341), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8848), 25, + ACTIONS(8760), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159686,19 +161145,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144100] = 5, + [145179] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8845), 1, + ACTIONS(9146), 1, anon_sym_POUND_, - ACTIONS(9057), 2, + ACTIONS(9154), 2, sym__ws, sym_comment, - STATE(2250), 3, + STATE(2477), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8848), 25, + ACTIONS(9149), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159724,55 +161183,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144143] = 4, + [145222] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9047), 1, - anon_sym_COLON, - ACTIONS(9049), 1, - anon_sym_COLON_COLON, - ACTIONS(7626), 29, - sym__ws, - sym_comment, + ACTIONS(9138), 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, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_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, - [144184] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(9047), 1, - anon_sym_COLON, - ACTIONS(9049), 1, - anon_sym_COLON_COLON, - ACTIONS(7372), 29, + ACTIONS(9135), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2212), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9141), 25, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -159794,23 +161218,22 @@ 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, - [144225] = 5, + [145265] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8853), 1, + ACTIONS(9146), 1, anon_sym_POUND_, - ACTIONS(8850), 2, + ACTIONS(9157), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2504), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8856), 25, + ACTIONS(9149), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159836,19 +161259,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144268] = 5, + [145308] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8834), 1, + ACTIONS(9163), 1, anon_sym_POUND_, - ACTIONS(9060), 2, + ACTIONS(9160), 2, sym__ws, sym_comment, - STATE(2252), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8837), 25, + ACTIONS(9166), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159874,19 +161297,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144311] = 5, + [145351] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8826), 1, + ACTIONS(9171), 1, anon_sym_POUND_, - ACTIONS(8823), 2, + ACTIONS(9168), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2481), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8829), 25, + ACTIONS(9174), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159912,19 +161335,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144354] = 5, + [145394] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8834), 1, + ACTIONS(9171), 1, anon_sym_POUND_, - ACTIONS(9063), 2, + ACTIONS(9176), 2, sym__ws, sym_comment, - STATE(2255), 3, + STATE(2482), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8837), 25, + ACTIONS(9174), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159950,19 +161373,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144397] = 5, + [145437] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8873), 1, + ACTIONS(9163), 1, anon_sym_POUND_, - ACTIONS(9066), 2, + ACTIONS(9160), 2, sym__ws, sym_comment, - STATE(2257), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8876), 25, + ACTIONS(9166), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -159988,19 +161411,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144440] = 5, + [145480] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8881), 1, + ACTIONS(8631), 1, anon_sym_POUND_, - ACTIONS(8878), 2, + ACTIONS(9179), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2483), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8884), 25, + ACTIONS(8634), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160026,19 +161449,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144483] = 5, + [145523] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8873), 1, + ACTIONS(9185), 1, anon_sym_POUND_, - ACTIONS(9069), 2, + ACTIONS(9182), 2, sym__ws, sym_comment, - STATE(2260), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8876), 25, + ACTIONS(9188), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160064,19 +161487,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144526] = 5, + [145566] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9075), 1, + ACTIONS(8690), 1, anon_sym_POUND_, - ACTIONS(9072), 2, + ACTIONS(8687), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9078), 25, + ACTIONS(8693), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160102,19 +161525,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144569] = 5, + [145609] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9075), 1, + ACTIONS(9185), 1, anon_sym_POUND_, - ACTIONS(9072), 2, + ACTIONS(9182), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9078), 25, + ACTIONS(9188), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160140,19 +161563,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144612] = 5, + [145652] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9083), 1, + ACTIONS(8631), 1, anon_sym_POUND_, - ACTIONS(9080), 2, + ACTIONS(9190), 2, sym__ws, sym_comment, - STATE(2261), 3, + STATE(2489), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9086), 25, + ACTIONS(8634), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160178,19 +161601,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144655] = 5, + [145695] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9091), 1, + ACTIONS(8631), 1, anon_sym_POUND_, - ACTIONS(9088), 2, + ACTIONS(9193), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2490), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9094), 25, + ACTIONS(8634), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160216,19 +161639,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144698] = 5, + [145738] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9099), 1, + ACTIONS(9185), 1, anon_sym_POUND_, - ACTIONS(9096), 2, + ACTIONS(9182), 2, sym__ws, sym_comment, - STATE(2262), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9102), 25, + ACTIONS(9188), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160254,19 +161677,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144741] = 5, + [145781] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9099), 1, + ACTIONS(9171), 1, anon_sym_POUND_, - ACTIONS(9104), 2, + ACTIONS(9196), 2, sym__ws, sym_comment, - STATE(2263), 3, + STATE(2494), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9102), 25, + ACTIONS(9174), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160292,19 +161715,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144784] = 5, + [145824] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9091), 1, + ACTIONS(9163), 1, anon_sym_POUND_, - ACTIONS(9088), 2, + ACTIONS(9160), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9094), 25, + ACTIONS(9166), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160330,19 +161753,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144827] = 5, + [145867] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9099), 1, + ACTIONS(9163), 1, anon_sym_POUND_, - ACTIONS(9107), 2, + ACTIONS(9160), 2, sym__ws, sym_comment, - STATE(2265), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9102), 25, + ACTIONS(9166), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160368,19 +161791,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144870] = 5, + [145910] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9091), 1, + ACTIONS(9202), 1, anon_sym_POUND_, - ACTIONS(9088), 2, + ACTIONS(9199), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2116), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9094), 25, + ACTIONS(9205), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160406,19 +161829,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144913] = 5, + [145953] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9099), 1, + ACTIONS(8655), 1, anon_sym_POUND_, - ACTIONS(9110), 2, + ACTIONS(9207), 2, sym__ws, sym_comment, - STATE(2268), 3, + STATE(2324), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9102), 25, + ACTIONS(8658), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160444,19 +161867,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144956] = 5, + [145996] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9075), 1, + ACTIONS(9213), 1, anon_sym_POUND_, - ACTIONS(9072), 2, + ACTIONS(9210), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9078), 25, + ACTIONS(9216), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160482,19 +161905,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144999] = 5, + [146039] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9083), 1, + ACTIONS(8757), 1, anon_sym_POUND_, - ACTIONS(9113), 2, + ACTIONS(9218), 2, sym__ws, sym_comment, - STATE(2269), 3, + STATE(2126), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9086), 25, + ACTIONS(8760), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160520,19 +161943,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145042] = 5, + [146082] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9083), 1, + ACTIONS(9224), 1, anon_sym_POUND_, - ACTIONS(9116), 2, + ACTIONS(9221), 2, sym__ws, sym_comment, - STATE(2270), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9086), 25, + ACTIONS(9227), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160558,19 +161981,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145085] = 5, + [146125] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9075), 1, + ACTIONS(8663), 1, anon_sym_POUND_, - ACTIONS(9072), 2, + ACTIONS(8660), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9078), 25, + ACTIONS(8666), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160596,19 +162019,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145128] = 5, + [146168] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9122), 1, + ACTIONS(8674), 1, anon_sym_POUND_, - ACTIONS(9119), 2, + ACTIONS(8671), 2, sym__ws, sym_comment, - STATE(2272), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9125), 25, + ACTIONS(8677), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160634,19 +162057,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145171] = 5, + [146211] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9130), 1, + ACTIONS(8674), 1, anon_sym_POUND_, - ACTIONS(9127), 2, + ACTIONS(8671), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9133), 25, + ACTIONS(8677), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160672,19 +162095,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145214] = 5, + [146254] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9122), 1, + ACTIONS(9224), 1, anon_sym_POUND_, - ACTIONS(9135), 2, + ACTIONS(9221), 2, sym__ws, sym_comment, - STATE(2275), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9125), 25, + ACTIONS(9227), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160710,19 +162133,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145257] = 5, + [146297] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9122), 1, + ACTIONS(9232), 1, anon_sym_POUND_, - ACTIONS(9138), 2, + ACTIONS(9229), 2, sym__ws, sym_comment, - STATE(2507), 3, + STATE(2088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9125), 25, + ACTIONS(9235), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160748,19 +162171,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145300] = 5, + [146340] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9130), 1, + ACTIONS(9240), 1, anon_sym_POUND_, - ACTIONS(9127), 2, + ACTIONS(9237), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2389), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9133), 25, + ACTIONS(9243), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160786,19 +162209,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145343] = 5, + [146383] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8562), 1, + ACTIONS(9248), 1, anon_sym_POUND_, - ACTIONS(8559), 2, + ACTIONS(9245), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2058), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8565), 25, + ACTIONS(9251), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160824,19 +162247,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145386] = 5, + [146426] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9144), 1, + ACTIONS(9256), 1, anon_sym_POUND_, - ACTIONS(9141), 2, + ACTIONS(9253), 2, sym__ws, sym_comment, - STATE(2278), 3, + STATE(2503), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9147), 25, + ACTIONS(9259), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160862,19 +162285,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145429] = 5, + [146469] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9144), 1, + ACTIONS(9264), 1, anon_sym_POUND_, - ACTIONS(9149), 2, + ACTIONS(9261), 2, sym__ws, sym_comment, - STATE(2279), 3, + STATE(2515), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9147), 25, + ACTIONS(9267), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160900,19 +162323,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145472] = 5, + [146512] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8562), 1, + ACTIONS(9272), 1, anon_sym_POUND_, - ACTIONS(8559), 2, + ACTIONS(9269), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8565), 25, + ACTIONS(9275), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160938,19 +162361,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145515] = 5, + [146555] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9155), 1, + ACTIONS(9280), 1, anon_sym_POUND_, - ACTIONS(9152), 2, + ACTIONS(9277), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2297), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9158), 25, + ACTIONS(9283), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -160976,19 +162399,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145558] = 5, + [146598] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8570), 1, + ACTIONS(8788), 1, anon_sym_POUND_, - ACTIONS(9160), 2, + ACTIONS(8785), 2, sym__ws, sym_comment, - STATE(2285), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8573), 25, + ACTIONS(8791), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161014,19 +162437,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145601] = 5, + [146641] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8570), 1, + ACTIONS(9288), 1, anon_sym_POUND_, - ACTIONS(9163), 2, + ACTIONS(9285), 2, sym__ws, sym_comment, - STATE(2287), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8573), 25, + ACTIONS(9291), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161052,19 +162475,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145644] = 5, + [146684] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9155), 1, + ACTIONS(9296), 1, anon_sym_POUND_, - ACTIONS(9152), 2, + ACTIONS(9293), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2509), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9158), 25, + ACTIONS(9299), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161090,19 +162513,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145687] = 5, + [146727] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9144), 1, + ACTIONS(9304), 1, anon_sym_POUND_, - ACTIONS(9166), 2, + ACTIONS(9301), 2, sym__ws, sym_comment, - STATE(2289), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9147), 25, + ACTIONS(7383), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161128,19 +162551,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145730] = 5, + [146770] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8562), 1, + ACTIONS(9310), 1, anon_sym_POUND_, - ACTIONS(8559), 2, + ACTIONS(9307), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2109), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8565), 25, + ACTIONS(9313), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161166,19 +162589,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145773] = 5, + [146813] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9144), 1, + ACTIONS(9318), 1, anon_sym_POUND_, - ACTIONS(9169), 2, + ACTIONS(9315), 2, sym__ws, sym_comment, - STATE(2292), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9147), 25, + ACTIONS(9321), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161204,19 +162627,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145816] = 5, + [146856] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9175), 1, + ACTIONS(9296), 1, anon_sym_POUND_, - ACTIONS(9172), 2, + ACTIONS(9323), 2, sym__ws, sym_comment, - STATE(2294), 3, + STATE(2532), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9178), 25, + ACTIONS(9299), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161242,19 +162665,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145859] = 5, + [146899] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9183), 1, + ACTIONS(8820), 1, anon_sym_POUND_, - ACTIONS(9180), 2, + ACTIONS(8817), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9186), 25, + ACTIONS(8823), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161280,19 +162703,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145902] = 5, + [146942] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9175), 1, + ACTIONS(9329), 1, anon_sym_POUND_, - ACTIONS(9188), 2, + ACTIONS(9326), 2, sym__ws, sym_comment, - STATE(2297), 3, + STATE(2540), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9178), 25, + ACTIONS(9332), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161318,19 +162741,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145945] = 5, + [146985] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8991), 1, + ACTIONS(9337), 1, anon_sym_POUND_, - ACTIONS(8988), 2, + ACTIONS(9334), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8994), 25, + ACTIONS(9340), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161356,19 +162779,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145988] = 5, + [147028] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9144), 1, + ACTIONS(9329), 1, anon_sym_POUND_, - ACTIONS(9191), 2, + ACTIONS(9342), 2, sym__ws, sym_comment, - STATE(2298), 3, + STATE(2543), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9147), 25, + ACTIONS(9332), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161394,19 +162817,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146031] = 5, + [147071] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9144), 1, + ACTIONS(9348), 1, anon_sym_POUND_, - ACTIONS(9194), 2, + ACTIONS(9345), 2, sym__ws, sym_comment, - STATE(2299), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9147), 25, + ACTIONS(9351), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161432,19 +162855,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146074] = 5, + [147114] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8570), 1, + ACTIONS(8639), 1, anon_sym_POUND_, - ACTIONS(9197), 2, + ACTIONS(9353), 2, sym__ws, sym_comment, - STATE(2301), 3, + STATE(2548), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8573), 25, + ACTIONS(8642), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161470,19 +162893,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146117] = 5, + [147157] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9155), 1, + ACTIONS(9359), 1, anon_sym_POUND_, - ACTIONS(9152), 2, + ACTIONS(9356), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9158), 25, + ACTIONS(9362), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161508,19 +162931,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146160] = 5, + [147200] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8570), 1, + ACTIONS(8639), 1, anon_sym_POUND_, - ACTIONS(9200), 2, + ACTIONS(9364), 2, sym__ws, sym_comment, - STATE(2408), 3, + STATE(2544), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8573), 25, + ACTIONS(8642), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161546,19 +162969,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146203] = 5, + [147243] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8570), 1, + ACTIONS(9348), 1, anon_sym_POUND_, - ACTIONS(9203), 2, + ACTIONS(9345), 2, sym__ws, sym_comment, - STATE(2421), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8573), 25, + ACTIONS(9351), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161584,19 +163007,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146246] = 5, + [147286] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9155), 1, + ACTIONS(8639), 1, anon_sym_POUND_, - ACTIONS(9152), 2, + ACTIONS(9367), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2520), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9158), 25, + ACTIONS(8642), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161622,19 +163045,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146289] = 5, + [147329] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9144), 1, + ACTIONS(9337), 1, anon_sym_POUND_, - ACTIONS(9206), 2, + ACTIONS(9334), 2, sym__ws, sym_comment, - STATE(2428), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9147), 25, + ACTIONS(9340), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161660,19 +163083,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146332] = 5, + [147372] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8562), 1, + ACTIONS(9329), 1, anon_sym_POUND_, - ACTIONS(8559), 2, + ACTIONS(9370), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2431), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8565), 25, + ACTIONS(9332), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161698,19 +163121,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146375] = 5, + [147415] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9144), 1, + ACTIONS(9329), 1, anon_sym_POUND_, - ACTIONS(9209), 2, + ACTIONS(9373), 2, sym__ws, sym_comment, - STATE(2433), 3, + STATE(2429), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9147), 25, + ACTIONS(9332), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161736,19 +163159,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146418] = 5, + [147458] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9175), 1, + ACTIONS(9337), 1, anon_sym_POUND_, - ACTIONS(9212), 2, + ACTIONS(9334), 2, sym__ws, sym_comment, - STATE(2436), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9178), 25, + ACTIONS(9340), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161774,19 +163197,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146461] = 5, + [147501] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9183), 1, + ACTIONS(9379), 1, anon_sym_POUND_, - ACTIONS(9180), 2, + ACTIONS(9376), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9186), 25, + ACTIONS(9382), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161812,19 +163235,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146504] = 5, + [147544] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9175), 1, + ACTIONS(9387), 1, anon_sym_POUND_, - ACTIONS(9215), 2, + ACTIONS(9384), 2, sym__ws, sym_comment, - STATE(2461), 3, + STATE(2427), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9178), 25, + ACTIONS(9390), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161850,19 +163273,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146547] = 5, + [147587] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9221), 1, + ACTIONS(9039), 1, anon_sym_POUND_, - ACTIONS(9218), 2, + ACTIONS(9392), 2, sym__ws, sym_comment, - STATE(2462), 3, + STATE(2396), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9224), 25, + ACTIONS(9042), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161888,19 +163311,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146590] = 5, + [147630] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9229), 1, + ACTIONS(9387), 1, anon_sym_POUND_, - ACTIONS(9226), 2, + ACTIONS(9395), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2512), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9232), 25, + ACTIONS(9390), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161926,19 +163349,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146633] = 5, + [147673] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9221), 1, + ACTIONS(9379), 1, anon_sym_POUND_, - ACTIONS(9234), 2, + ACTIONS(9376), 2, sym__ws, sym_comment, - STATE(2465), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9224), 25, + ACTIONS(9382), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -161964,19 +163387,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146676] = 5, + [147716] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9240), 1, + ACTIONS(9387), 1, anon_sym_POUND_, - ACTIONS(9237), 2, + ACTIONS(9398), 2, sym__ws, sym_comment, - STATE(2488), 3, + STATE(2326), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9243), 25, + ACTIONS(9390), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162002,19 +163425,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146719] = 5, + [147759] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9248), 1, + ACTIONS(9404), 1, anon_sym_POUND_, - ACTIONS(9245), 2, + ACTIONS(9401), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9251), 25, + ACTIONS(9407), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162040,19 +163463,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146762] = 5, + [147802] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9240), 1, + ACTIONS(9412), 1, anon_sym_POUND_, - ACTIONS(9253), 2, + ACTIONS(9409), 2, sym__ws, sym_comment, - STATE(2491), 3, + STATE(2321), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9243), 25, + ACTIONS(9415), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162078,19 +163501,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146805] = 5, + [147845] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9221), 1, + ACTIONS(9412), 1, anon_sym_POUND_, - ACTIONS(9256), 2, + ACTIONS(9417), 2, sym__ws, sym_comment, - STATE(2497), 3, + STATE(2319), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9224), 25, + ACTIONS(9415), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162116,19 +163539,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146848] = 5, + [147888] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8562), 1, + ACTIONS(9404), 1, anon_sym_POUND_, - ACTIONS(8559), 2, + ACTIONS(9401), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(8565), 25, + ACTIONS(9407), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162154,19 +163577,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146891] = 5, + [147931] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9262), 1, + ACTIONS(9423), 1, anon_sym_POUND_, - ACTIONS(9259), 2, + ACTIONS(9420), 2, sym__ws, sym_comment, - STATE(2508), 3, + STATE(2317), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9265), 25, + ACTIONS(9426), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162192,19 +163615,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146934] = 5, + [147974] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9270), 1, + ACTIONS(9124), 1, anon_sym_POUND_, - ACTIONS(9267), 2, + ACTIONS(9121), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9273), 25, + ACTIONS(9127), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162230,19 +163653,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146977] = 5, + [148017] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9278), 1, + ACTIONS(9423), 1, anon_sym_POUND_, - ACTIONS(9275), 2, + ACTIONS(9428), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2310), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9281), 25, + ACTIONS(9426), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162268,19 +163691,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147020] = 5, + [148060] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9278), 1, + ACTIONS(9434), 1, anon_sym_POUND_, - ACTIONS(9275), 2, + ACTIONS(9431), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2137), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9281), 25, + ACTIONS(9437), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162306,19 +163729,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147063] = 5, + [148103] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9286), 1, + ACTIONS(9423), 1, anon_sym_POUND_, - ACTIONS(9283), 2, + ACTIONS(9439), 2, sym__ws, sym_comment, - STATE(2518), 3, + STATE(2201), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9289), 25, + ACTIONS(9426), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162344,19 +163767,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147106] = 5, + [148146] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9278), 1, + ACTIONS(9423), 1, anon_sym_POUND_, - ACTIONS(9275), 2, + ACTIONS(9442), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2197), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9281), 25, + ACTIONS(9426), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162382,19 +163805,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147149] = 5, + [148189] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9286), 1, + ACTIONS(9124), 1, anon_sym_POUND_, - ACTIONS(9291), 2, + ACTIONS(9121), 2, sym__ws, sym_comment, - STATE(2519), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9289), 25, + ACTIONS(9127), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162420,19 +163843,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147192] = 5, + [148232] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9286), 1, + ACTIONS(9412), 1, anon_sym_POUND_, - ACTIONS(9294), 2, + ACTIONS(9445), 2, sym__ws, sym_comment, - STATE(2527), 3, + STATE(2195), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9289), 25, + ACTIONS(9415), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162458,19 +163881,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147235] = 5, + [148275] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9278), 1, + ACTIONS(9404), 1, anon_sym_POUND_, - ACTIONS(9275), 2, + ACTIONS(9401), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9281), 25, + ACTIONS(9407), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162496,19 +163919,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147278] = 5, + [148318] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9270), 1, + ACTIONS(9404), 1, anon_sym_POUND_, - ACTIONS(9267), 2, + ACTIONS(9401), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9273), 25, + ACTIONS(9407), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162534,19 +163957,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147321] = 5, + [148361] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9270), 1, + ACTIONS(9451), 1, anon_sym_POUND_, - ACTIONS(9267), 2, + ACTIONS(9448), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2424), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9273), 25, + ACTIONS(9454), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162572,19 +163995,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147364] = 5, + [148404] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9300), 1, + ACTIONS(9459), 1, anon_sym_POUND_, - ACTIONS(9297), 2, + ACTIONS(9456), 2, sym__ws, sym_comment, - STATE(2530), 3, + STATE(2078), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9303), 25, + ACTIONS(9462), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162610,19 +164033,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147407] = 5, + [148447] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9308), 1, + ACTIONS(9280), 1, anon_sym_POUND_, - ACTIONS(9305), 2, + ACTIONS(9464), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2348), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9311), 25, + ACTIONS(9283), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162648,19 +164071,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147450] = 5, + [148490] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9316), 1, + ACTIONS(8993), 1, anon_sym_POUND_, - ACTIONS(9313), 2, + ACTIONS(8990), 2, sym__ws, sym_comment, - STATE(2529), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9319), 25, + ACTIONS(8996), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162686,19 +164109,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147493] = 5, + [148533] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9316), 1, + ACTIONS(9470), 1, anon_sym_POUND_, - ACTIONS(9321), 2, + ACTIONS(9467), 2, sym__ws, sym_comment, - STATE(2528), 3, + STATE(2132), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9319), 25, + ACTIONS(9473), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162724,19 +164147,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147536] = 5, + [148576] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9308), 1, + ACTIONS(9478), 1, anon_sym_POUND_, - ACTIONS(9305), 2, + ACTIONS(9475), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9311), 25, + ACTIONS(9481), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162762,19 +164185,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147579] = 5, + [148619] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9316), 1, + ACTIONS(9478), 1, anon_sym_POUND_, - ACTIONS(9324), 2, + ACTIONS(9475), 2, sym__ws, sym_comment, - STATE(2525), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9319), 25, + ACTIONS(9481), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162800,19 +164223,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147622] = 5, + [148662] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9308), 1, + ACTIONS(9280), 1, anon_sym_POUND_, - ACTIONS(9305), 2, + ACTIONS(9483), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2393), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9311), 25, + ACTIONS(9283), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162838,19 +164261,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147665] = 5, + [148705] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9316), 1, + ACTIONS(9359), 1, anon_sym_POUND_, - ACTIONS(9327), 2, + ACTIONS(9356), 2, sym__ws, sym_comment, - STATE(2522), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9319), 25, + ACTIONS(9362), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162876,19 +164299,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147708] = 5, + [148748] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9075), 1, + ACTIONS(9489), 1, anon_sym_POUND_, - ACTIONS(9072), 2, + ACTIONS(9486), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2141), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9078), 25, + ACTIONS(9492), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162914,19 +164337,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147751] = 5, + [148791] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9075), 1, + ACTIONS(9039), 1, anon_sym_POUND_, - ACTIONS(9072), 2, + ACTIONS(9494), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2411), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9078), 25, + ACTIONS(9042), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162952,19 +164375,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147794] = 5, + [148834] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9083), 1, + ACTIONS(9500), 1, anon_sym_POUND_, - ACTIONS(9330), 2, + ACTIONS(9497), 2, sym__ws, sym_comment, - STATE(2521), 3, + STATE(2143), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9086), 25, + ACTIONS(9503), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -162990,19 +164413,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147837] = 5, + [148877] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9091), 1, + ACTIONS(9288), 1, anon_sym_POUND_, - ACTIONS(9088), 2, + ACTIONS(9285), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9094), 25, + ACTIONS(9291), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163028,19 +164451,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147880] = 5, + [148920] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9099), 1, + ACTIONS(9020), 1, anon_sym_POUND_, - ACTIONS(9333), 2, + ACTIONS(9505), 2, sym__ws, sym_comment, - STATE(2520), 3, + STATE(2128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9102), 25, + ACTIONS(9023), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163066,19 +164489,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147923] = 5, + [148963] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9099), 1, + ACTIONS(9511), 1, anon_sym_POUND_, - ACTIONS(9336), 2, + ACTIONS(9508), 2, sym__ws, sym_comment, - STATE(2517), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9102), 25, + ACTIONS(9514), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163104,19 +164527,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147966] = 5, + [149006] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9091), 1, + ACTIONS(9500), 1, anon_sym_POUND_, - ACTIONS(9088), 2, + ACTIONS(9516), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2147), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9094), 25, + ACTIONS(9503), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163142,19 +164565,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148009] = 5, + [149049] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9099), 1, + ACTIONS(9359), 1, anon_sym_POUND_, - ACTIONS(9339), 2, + ACTIONS(9356), 2, sym__ws, sym_comment, - STATE(2515), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9102), 25, + ACTIONS(9362), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163180,19 +164603,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148052] = 5, + [149092] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9091), 1, + ACTIONS(9489), 1, anon_sym_POUND_, - ACTIONS(9088), 2, + ACTIONS(9519), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2149), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9094), 25, + ACTIONS(9492), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163218,19 +164641,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148095] = 5, + [149135] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9099), 1, + ACTIONS(9525), 1, anon_sym_POUND_, - ACTIONS(9342), 2, + ACTIONS(9522), 2, sym__ws, sym_comment, - STATE(2512), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9102), 25, + ACTIONS(9528), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163256,19 +164679,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148138] = 5, + [149178] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9075), 1, + ACTIONS(9489), 1, anon_sym_POUND_, - ACTIONS(9072), 2, + ACTIONS(9530), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2152), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9078), 25, + ACTIONS(9492), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163294,19 +164717,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148181] = 5, + [149221] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9083), 1, + ACTIONS(9280), 1, anon_sym_POUND_, - ACTIONS(9345), 2, + ACTIONS(9533), 2, sym__ws, sym_comment, - STATE(2511), 3, + STATE(2526), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9086), 25, + ACTIONS(9283), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163332,19 +164755,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148224] = 5, + [149264] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9083), 1, + ACTIONS(9434), 1, anon_sym_POUND_, - ACTIONS(9348), 2, + ACTIONS(9536), 2, sym__ws, sym_comment, - STATE(2510), 3, + STATE(2156), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9086), 25, + ACTIONS(9437), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163370,19 +164793,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148267] = 5, + [149307] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9075), 1, + ACTIONS(9542), 1, anon_sym_POUND_, - ACTIONS(9072), 2, + ACTIONS(9539), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9078), 25, + ACTIONS(9545), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163408,19 +164831,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148310] = 5, + [149350] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9122), 1, + ACTIONS(9039), 1, anon_sym_POUND_, - ACTIONS(9351), 2, + ACTIONS(9547), 2, sym__ws, sym_comment, - STATE(2504), 3, + STATE(2422), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9125), 25, + ACTIONS(9042), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163446,19 +164869,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148353] = 5, + [149393] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9130), 1, + ACTIONS(9489), 1, anon_sym_POUND_, - ACTIONS(9127), 2, + ACTIONS(9550), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2160), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9133), 25, + ACTIONS(9492), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163484,19 +164907,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148396] = 5, + [149436] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9122), 1, + ACTIONS(9556), 1, anon_sym_POUND_, - ACTIONS(9354), 2, + ACTIONS(9553), 2, sym__ws, sym_comment, - STATE(2501), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9125), 25, + ACTIONS(9559), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163522,19 +164945,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148439] = 5, + [149479] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9122), 1, + ACTIONS(9500), 1, anon_sym_POUND_, - ACTIONS(9357), 2, + ACTIONS(9561), 2, sym__ws, sym_comment, - STATE(2499), 3, + STATE(2162), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9125), 25, + ACTIONS(9503), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163560,19 +164983,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148482] = 5, + [149522] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9130), 1, + ACTIONS(9567), 1, anon_sym_POUND_, - ACTIONS(9127), 2, + ACTIONS(9564), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2475), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9133), 25, + ACTIONS(9570), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163598,19 +165021,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148525] = 5, + [149565] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9363), 1, + ACTIONS(9575), 1, anon_sym_POUND_, - ACTIONS(9360), 2, + ACTIONS(9572), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2085), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9366), 25, + ACTIONS(9578), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163636,19 +165059,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148568] = 5, + [149608] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9371), 1, + ACTIONS(9511), 1, anon_sym_POUND_, - ACTIONS(9368), 2, + ACTIONS(9508), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9374), 25, + ACTIONS(9514), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163674,19 +165097,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148611] = 5, + [149651] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9371), 1, + ACTIONS(9500), 1, anon_sym_POUND_, - ACTIONS(9368), 2, + ACTIONS(9580), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2167), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9374), 25, + ACTIONS(9503), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163712,19 +165135,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148654] = 5, + [149694] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9379), 1, + ACTIONS(8812), 1, anon_sym_POUND_, - ACTIONS(9376), 2, + ACTIONS(8809), 2, sym__ws, sym_comment, - STATE(2496), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9382), 25, + ACTIONS(8815), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163750,19 +165173,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148697] = 5, + [149737] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9371), 1, + ACTIONS(9489), 1, anon_sym_POUND_, - ACTIONS(9368), 2, + ACTIONS(9583), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2169), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9374), 25, + ACTIONS(9492), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163788,19 +165211,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148740] = 5, + [149780] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9379), 1, + ACTIONS(9525), 1, anon_sym_POUND_, - ACTIONS(9384), 2, + ACTIONS(9522), 2, sym__ws, sym_comment, - STATE(2494), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9382), 25, + ACTIONS(9528), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163826,19 +165249,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148783] = 5, + [149823] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9379), 1, + ACTIONS(9567), 1, anon_sym_POUND_, - ACTIONS(9387), 2, + ACTIONS(9586), 2, sym__ws, sym_comment, - STATE(2493), 3, + STATE(2432), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9382), 25, + ACTIONS(9570), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163864,19 +165287,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148826] = 5, + [149866] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9371), 1, + ACTIONS(9489), 1, anon_sym_POUND_, - ACTIONS(9368), 2, + ACTIONS(9589), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2172), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9374), 25, + ACTIONS(9492), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163902,19 +165325,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148869] = 5, + [149909] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9363), 1, + ACTIONS(9296), 1, anon_sym_POUND_, - ACTIONS(9360), 2, + ACTIONS(9592), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2173), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9366), 25, + ACTIONS(9299), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163940,19 +165363,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148912] = 5, + [149952] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9363), 1, + ACTIONS(8969), 1, anon_sym_POUND_, - ACTIONS(9360), 2, + ACTIONS(8966), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9366), 25, + ACTIONS(8972), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -163978,19 +165401,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148955] = 5, + [149995] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9393), 1, + ACTIONS(8955), 1, anon_sym_POUND_, - ACTIONS(9390), 2, + ACTIONS(9595), 2, sym__ws, sym_comment, - STATE(2411), 3, + STATE(2057), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9396), 25, + ACTIONS(8958), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164016,19 +165439,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [148998] = 5, + [150038] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9401), 1, + ACTIONS(9318), 1, anon_sym_POUND_, - ACTIONS(9398), 2, + ACTIONS(9315), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9404), 25, + ACTIONS(9321), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164054,19 +165477,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149041] = 5, + [150081] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9409), 1, + ACTIONS(9296), 1, anon_sym_POUND_, - ACTIONS(9406), 2, + ACTIONS(9598), 2, sym__ws, sym_comment, - STATE(2486), 3, + STATE(2177), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9412), 25, + ACTIONS(9299), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164092,19 +165515,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149084] = 5, + [150124] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9409), 1, + ACTIONS(8804), 1, anon_sym_POUND_, - ACTIONS(9414), 2, + ACTIONS(8801), 2, sym__ws, sym_comment, - STATE(2485), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9412), 25, + ACTIONS(8807), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164130,19 +165553,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149127] = 5, + [150167] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9401), 1, + ACTIONS(9329), 1, anon_sym_POUND_, - ACTIONS(9398), 2, + ACTIONS(9601), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2179), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9404), 25, + ACTIONS(9332), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164168,19 +165591,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149170] = 5, + [150210] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9409), 1, + ACTIONS(9337), 1, anon_sym_POUND_, - ACTIONS(9417), 2, + ACTIONS(9334), 2, sym__ws, sym_comment, - STATE(2483), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9412), 25, + ACTIONS(9340), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164206,19 +165629,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149213] = 5, + [150253] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9409), 1, + ACTIONS(9329), 1, anon_sym_POUND_, - ACTIONS(9420), 2, + ACTIONS(9604), 2, sym__ws, sym_comment, - STATE(2480), 3, + STATE(2182), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9412), 25, + ACTIONS(9332), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164244,19 +165667,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149256] = 5, + [150296] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9426), 1, + ACTIONS(9348), 1, anon_sym_POUND_, - ACTIONS(9423), 2, + ACTIONS(9345), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9429), 25, + ACTIONS(9351), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164282,19 +165705,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149299] = 5, + [150339] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9426), 1, + ACTIONS(8639), 1, anon_sym_POUND_, - ACTIONS(9423), 2, + ACTIONS(9607), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2184), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9429), 25, + ACTIONS(8642), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164320,19 +165743,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149342] = 5, + [150382] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9434), 1, + ACTIONS(9613), 1, anon_sym_POUND_, - ACTIONS(9431), 2, + ACTIONS(9610), 2, sym__ws, sym_comment, - STATE(2479), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9437), 25, + ACTIONS(9616), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164358,19 +165781,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149385] = 5, + [150425] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9442), 1, + ACTIONS(8639), 1, anon_sym_POUND_, - ACTIONS(9439), 2, + ACTIONS(9618), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2186), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9445), 25, + ACTIONS(8642), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164396,19 +165819,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149428] = 5, + [150468] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9450), 1, + ACTIONS(9348), 1, anon_sym_POUND_, - ACTIONS(9447), 2, + ACTIONS(9345), 2, sym__ws, sym_comment, - STATE(2478), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9453), 25, + ACTIONS(9351), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164434,19 +165857,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149471] = 5, + [150511] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9458), 1, + ACTIONS(8631), 1, anon_sym_POUND_, - ACTIONS(9455), 2, + ACTIONS(9621), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2437), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9461), 25, + ACTIONS(8634), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164472,19 +165895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149514] = 5, + [150554] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9450), 1, + ACTIONS(9337), 1, anon_sym_POUND_, - ACTIONS(9463), 2, + ACTIONS(9334), 2, sym__ws, sym_comment, - STATE(2477), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9453), 25, + ACTIONS(9340), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164510,19 +165933,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149557] = 5, + [150597] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9442), 1, + ACTIONS(9329), 1, anon_sym_POUND_, - ACTIONS(9439), 2, + ACTIONS(9624), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2191), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9445), 25, + ACTIONS(9332), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164548,19 +165971,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149600] = 5, + [150640] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9450), 1, + ACTIONS(9329), 1, anon_sym_POUND_, - ACTIONS(9466), 2, + ACTIONS(9627), 2, sym__ws, sym_comment, - STATE(2474), 3, + STATE(2192), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9453), 25, + ACTIONS(9332), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164586,19 +166009,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149643] = 5, + [150683] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9442), 1, + ACTIONS(9337), 1, anon_sym_POUND_, - ACTIONS(9439), 2, + ACTIONS(9334), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9445), 25, + ACTIONS(9340), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164624,19 +166047,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149686] = 5, + [150726] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9450), 1, + ACTIONS(9248), 1, anon_sym_POUND_, - ACTIONS(9469), 2, + ACTIONS(9630), 2, sym__ws, sym_comment, - STATE(2471), 3, + STATE(2084), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9453), 25, + ACTIONS(9251), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164662,19 +166085,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149729] = 5, + [150769] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9426), 1, + ACTIONS(9248), 1, anon_sym_POUND_, - ACTIONS(9423), 2, + ACTIONS(9633), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2083), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9429), 25, + ACTIONS(9251), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164700,19 +166123,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149772] = 5, + [150812] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9434), 1, + ACTIONS(8804), 1, anon_sym_POUND_, - ACTIONS(9472), 2, + ACTIONS(8801), 2, sym__ws, sym_comment, - STATE(2470), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9437), 25, + ACTIONS(8807), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164738,19 +166161,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149815] = 5, + [150855] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9434), 1, + ACTIONS(8804), 1, anon_sym_POUND_, - ACTIONS(9475), 2, + ACTIONS(8801), 2, sym__ws, sym_comment, - STATE(2469), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9437), 25, + ACTIONS(8807), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164776,19 +166199,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149858] = 5, + [150898] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9426), 1, + ACTIONS(8796), 1, anon_sym_POUND_, - ACTIONS(9423), 2, + ACTIONS(9636), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2423), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9429), 25, + ACTIONS(8799), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164814,19 +166237,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149901] = 5, + [150941] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9481), 1, + ACTIONS(9224), 1, anon_sym_POUND_, - ACTIONS(9478), 2, + ACTIONS(9221), 2, sym__ws, sym_comment, - STATE(2467), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9484), 25, + ACTIONS(9227), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164852,19 +166275,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149944] = 5, + [150984] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9489), 1, + ACTIONS(9642), 1, anon_sym_POUND_, - ACTIONS(9486), 2, + ACTIONS(9639), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9492), 25, + ACTIONS(9645), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164890,19 +166313,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149987] = 5, + [151027] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9481), 1, + ACTIONS(9650), 1, anon_sym_POUND_, - ACTIONS(9494), 2, + ACTIONS(9647), 2, sym__ws, sym_comment, - STATE(2459), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9484), 25, + ACTIONS(9653), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164928,19 +166351,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150030] = 5, + [151070] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9481), 1, + ACTIONS(9658), 1, anon_sym_POUND_, - ACTIONS(9497), 2, + ACTIONS(9655), 2, sym__ws, sym_comment, - STATE(2457), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9484), 25, + ACTIONS(9661), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -164966,19 +166389,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150073] = 5, + [151113] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9489), 1, + ACTIONS(9232), 1, anon_sym_POUND_, - ACTIONS(9486), 2, + ACTIONS(9663), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2517), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9492), 25, + ACTIONS(9235), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165004,19 +166427,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150116] = 5, + [151156] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9426), 1, + ACTIONS(9232), 1, anon_sym_POUND_, - ACTIONS(9423), 2, + ACTIONS(9666), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2209), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9429), 25, + ACTIONS(9235), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165042,19 +166465,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150159] = 5, + [151199] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9426), 1, + ACTIONS(9310), 1, anon_sym_POUND_, - ACTIONS(9423), 2, + ACTIONS(9669), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2110), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9429), 25, + ACTIONS(9313), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165080,19 +166503,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150202] = 5, + [151242] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9434), 1, + ACTIONS(9224), 1, anon_sym_POUND_, - ACTIONS(9500), 2, + ACTIONS(9221), 2, sym__ws, sym_comment, - STATE(2453), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9437), 25, + ACTIONS(9227), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165118,19 +166541,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150245] = 5, + [151285] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9442), 1, + ACTIONS(9613), 1, anon_sym_POUND_, - ACTIONS(9439), 2, + ACTIONS(9610), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9445), 25, + ACTIONS(9616), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165156,19 +166579,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150288] = 5, + [151328] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9450), 1, + ACTIONS(9213), 1, anon_sym_POUND_, - ACTIONS(9503), 2, + ACTIONS(9210), 2, sym__ws, sym_comment, - STATE(2452), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9453), 25, + ACTIONS(9216), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165194,19 +166617,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150331] = 5, + [151371] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9450), 1, + ACTIONS(9658), 1, anon_sym_POUND_, - ACTIONS(9506), 2, + ACTIONS(9655), 2, sym__ws, sym_comment, - STATE(2451), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9453), 25, + ACTIONS(9661), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165232,19 +166655,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150374] = 5, + [151414] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9512), 1, + ACTIONS(9213), 1, anon_sym_POUND_, - ACTIONS(9509), 2, + ACTIONS(9210), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9515), 25, + ACTIONS(9216), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165270,19 +166693,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150417] = 5, + [151457] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9520), 1, + ACTIONS(9658), 1, anon_sym_POUND_, - ACTIONS(9517), 2, + ACTIONS(9655), 2, sym__ws, sym_comment, - STATE(2304), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9523), 25, + ACTIONS(9661), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165308,19 +166731,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150460] = 5, + [151500] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9528), 1, + ACTIONS(9675), 1, anon_sym_POUND_, - ACTIONS(9525), 2, + ACTIONS(9672), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2377), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9531), 25, + ACTIONS(9678), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165346,19 +166769,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150503] = 5, + [151543] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9528), 1, + ACTIONS(9683), 1, anon_sym_POUND_, - ACTIONS(9525), 2, + ACTIONS(9680), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9531), 25, + ACTIONS(9686), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165384,19 +166807,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150546] = 5, + [151586] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9528), 1, + ACTIONS(9248), 1, anon_sym_POUND_, - ACTIONS(9525), 2, + ACTIONS(9688), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2080), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9531), 25, + ACTIONS(9251), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165422,19 +166845,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150589] = 5, + [151629] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9536), 1, + ACTIONS(9694), 1, anon_sym_POUND_, - ACTIONS(9533), 2, + ACTIONS(9691), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9539), 25, + ACTIONS(9697), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165460,19 +166883,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150632] = 5, + [151672] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9544), 1, + ACTIONS(9702), 1, anon_sym_POUND_, - ACTIONS(9541), 2, + ACTIONS(9699), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9547), 25, + ACTIONS(9705), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165498,19 +166921,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150675] = 5, + [151715] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9544), 1, + ACTIONS(9650), 1, anon_sym_POUND_, - ACTIONS(9541), 2, + ACTIONS(9647), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9547), 25, + ACTIONS(9653), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165536,19 +166959,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150718] = 5, + [151758] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9552), 1, + ACTIONS(9710), 1, anon_sym_POUND_, - ACTIONS(9549), 2, + ACTIONS(9707), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2486), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9555), 25, + ACTIONS(9713), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165574,19 +166997,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150761] = 5, + [151801] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9560), 1, + ACTIONS(9658), 1, anon_sym_POUND_, - ACTIONS(9557), 2, + ACTIONS(9655), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9563), 25, + ACTIONS(9661), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165612,19 +167035,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150804] = 5, + [151844] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9568), 1, + ACTIONS(9710), 1, anon_sym_POUND_, - ACTIONS(9565), 2, + ACTIONS(9715), 2, sym__ws, sym_comment, - STATE(2306), 3, + STATE(2441), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9571), 25, + ACTIONS(9713), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165650,19 +167073,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150847] = 5, + [151887] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9568), 1, + ACTIONS(9658), 1, anon_sym_POUND_, - ACTIONS(9573), 2, + ACTIONS(9655), 2, sym__ws, sym_comment, - STATE(2307), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9571), 25, + ACTIONS(9661), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165688,19 +167111,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150890] = 5, + [151930] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9560), 1, + ACTIONS(9658), 1, anon_sym_POUND_, - ACTIONS(9557), 2, + ACTIONS(9655), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9563), 25, + ACTIONS(9661), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165726,19 +167149,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150933] = 5, + [151973] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9568), 1, + ACTIONS(9542), 1, anon_sym_POUND_, - ACTIONS(9576), 2, + ACTIONS(9539), 2, sym__ws, sym_comment, - STATE(2308), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9571), 25, + ACTIONS(9545), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165764,19 +167187,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150976] = 5, + [152016] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9560), 1, + ACTIONS(9451), 1, anon_sym_POUND_, - ACTIONS(9557), 2, + ACTIONS(9718), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2207), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9563), 25, + ACTIONS(9454), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165802,19 +167225,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151019] = 5, + [152059] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9560), 1, + ACTIONS(9724), 1, anon_sym_POUND_, - ACTIONS(9557), 2, + ACTIONS(9721), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2430), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9563), 25, + ACTIONS(9727), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165840,19 +167263,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151062] = 5, + [152102] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9582), 1, + ACTIONS(9732), 1, anon_sym_POUND_, - ACTIONS(9579), 2, + ACTIONS(9729), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9585), 25, + ACTIONS(9735), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165878,19 +167301,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151105] = 5, + [152145] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9590), 1, + ACTIONS(9740), 1, anon_sym_POUND_, - ACTIONS(9587), 2, + ACTIONS(9737), 2, sym__ws, sym_comment, - STATE(2309), 3, + STATE(2106), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9593), 25, + ACTIONS(9743), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165916,19 +167339,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151148] = 5, + [152188] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9598), 1, + ACTIONS(8944), 1, anon_sym_POUND_, - ACTIONS(9595), 2, + ACTIONS(8941), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9601), 25, + ACTIONS(8947), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165954,19 +167377,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151191] = 5, + [152231] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9598), 1, + ACTIONS(9724), 1, anon_sym_POUND_, - ACTIONS(9595), 2, + ACTIONS(9745), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2399), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9601), 25, + ACTIONS(9727), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -165992,19 +167415,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151234] = 5, + [152274] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9598), 1, + ACTIONS(8944), 1, anon_sym_POUND_, - ACTIONS(9595), 2, + ACTIONS(8941), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9601), 25, + ACTIONS(8947), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166030,19 +167453,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151277] = 5, + [152317] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9606), 1, + ACTIONS(9751), 1, anon_sym_POUND_, - ACTIONS(9603), 2, + ACTIONS(9748), 2, sym__ws, sym_comment, - STATE(2310), 3, + STATE(2214), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9609), 25, + ACTIONS(9754), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166068,19 +167491,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151320] = 5, + [152360] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9614), 1, + ACTIONS(9020), 1, anon_sym_POUND_, - ACTIONS(9611), 2, + ACTIONS(9756), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2519), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9617), 25, + ACTIONS(9023), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166106,19 +167529,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151363] = 5, + [152403] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9614), 1, + ACTIONS(9683), 1, anon_sym_POUND_, - ACTIONS(9611), 2, + ACTIONS(9680), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9617), 25, + ACTIONS(9686), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166144,19 +167567,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151406] = 5, + [152446] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9614), 1, + ACTIONS(9762), 1, anon_sym_POUND_, - ACTIONS(9611), 2, + ACTIONS(9759), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2218), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9617), 25, + ACTIONS(9765), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166182,19 +167605,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151449] = 5, + [152489] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9622), 1, + ACTIONS(9770), 1, anon_sym_POUND_, - ACTIONS(9619), 2, + ACTIONS(9767), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9625), 25, + ACTIONS(9773), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166220,19 +167643,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151492] = 5, + [152532] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9606), 1, + ACTIONS(9778), 1, anon_sym_POUND_, - ACTIONS(9627), 2, + ACTIONS(9775), 2, sym__ws, sym_comment, - STATE(2311), 3, + STATE(2220), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9609), 25, + ACTIONS(9781), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166258,19 +167681,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151535] = 5, + [152575] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9614), 1, + ACTIONS(9613), 1, anon_sym_POUND_, - ACTIONS(9611), 2, + ACTIONS(9610), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9617), 25, + ACTIONS(9616), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166296,19 +167719,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151578] = 5, + [152618] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9614), 1, + ACTIONS(8828), 1, anon_sym_POUND_, - ACTIONS(9611), 2, + ACTIONS(8825), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9617), 25, + ACTIONS(8831), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166334,19 +167757,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151621] = 5, + [152661] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9614), 1, + ACTIONS(9786), 1, anon_sym_POUND_, - ACTIONS(9611), 2, + ACTIONS(9783), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9617), 25, + ACTIONS(9789), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166372,19 +167795,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151664] = 5, + [152704] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9622), 1, + ACTIONS(9778), 1, anon_sym_POUND_, - ACTIONS(9619), 2, + ACTIONS(9791), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2224), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9625), 25, + ACTIONS(9781), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166410,19 +167833,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151707] = 5, + [152747] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9552), 1, + ACTIONS(9683), 1, anon_sym_POUND_, - ACTIONS(9549), 2, + ACTIONS(9680), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9555), 25, + ACTIONS(9686), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166448,19 +167871,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151750] = 5, + [152790] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9633), 1, + ACTIONS(9762), 1, anon_sym_POUND_, - ACTIONS(9630), 2, + ACTIONS(9794), 2, sym__ws, sym_comment, - STATE(2312), 3, + STATE(2226), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9636), 25, + ACTIONS(9765), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166486,19 +167909,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151793] = 5, + [152833] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9641), 1, + ACTIONS(9800), 1, anon_sym_POUND_, - ACTIONS(9638), 2, + ACTIONS(9797), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9644), 25, + ACTIONS(9803), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166524,19 +167947,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151836] = 5, + [152876] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9641), 1, + ACTIONS(9762), 1, anon_sym_POUND_, - ACTIONS(9638), 2, + ACTIONS(9805), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2229), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9644), 25, + ACTIONS(9765), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166562,19 +167985,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151879] = 5, + [152919] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9641), 1, + ACTIONS(9811), 1, anon_sym_POUND_, - ACTIONS(9638), 2, + ACTIONS(9808), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2230), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9644), 25, + ACTIONS(9814), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166600,19 +168023,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151922] = 5, + [152962] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9649), 1, + ACTIONS(9732), 1, anon_sym_POUND_, - ACTIONS(9646), 2, + ACTIONS(9729), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9652), 25, + ACTIONS(9735), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166638,19 +168061,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151965] = 5, + [153005] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9657), 1, + ACTIONS(9724), 1, anon_sym_POUND_, - ACTIONS(9654), 2, + ACTIONS(9816), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2382), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9660), 25, + ACTIONS(9727), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166676,19 +168099,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152008] = 5, + [153048] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9665), 1, + ACTIONS(9822), 1, anon_sym_POUND_, - ACTIONS(9662), 2, + ACTIONS(9819), 2, sym__ws, sym_comment, - STATE(2313), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9668), 25, + ACTIONS(9825), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166714,19 +168137,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152051] = 5, + [153091] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9673), 1, + ACTIONS(9811), 1, anon_sym_POUND_, - ACTIONS(9670), 2, + ACTIONS(9827), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2234), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9676), 25, + ACTIONS(9814), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166752,19 +168175,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152094] = 5, + [153134] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9665), 1, + ACTIONS(9724), 1, anon_sym_POUND_, - ACTIONS(9678), 2, + ACTIONS(9830), 2, sym__ws, sym_comment, - STATE(2316), 3, + STATE(2380), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9668), 25, + ACTIONS(9727), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166790,19 +168213,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152137] = 5, + [153177] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9673), 1, + ACTIONS(9836), 1, anon_sym_POUND_, - ACTIONS(9670), 2, + ACTIONS(9833), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2236), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9676), 25, + ACTIONS(9839), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166828,19 +168251,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152180] = 5, + [153220] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9665), 1, + ACTIONS(9770), 1, anon_sym_POUND_, - ACTIONS(9681), 2, + ACTIONS(9767), 2, sym__ws, sym_comment, - STATE(2318), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9668), 25, + ACTIONS(9773), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166866,19 +168289,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152223] = 5, + [153263] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9665), 1, + ACTIONS(9836), 1, anon_sym_POUND_, - ACTIONS(9684), 2, + ACTIONS(9841), 2, sym__ws, sym_comment, - STATE(2319), 3, + STATE(2239), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9668), 25, + ACTIONS(9839), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166904,19 +168327,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152266] = 5, + [153306] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9673), 1, + ACTIONS(9847), 1, anon_sym_POUND_, - ACTIONS(9670), 2, + ACTIONS(9844), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9676), 25, + ACTIONS(9850), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166942,19 +168365,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152309] = 5, + [153349] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9690), 1, + ACTIONS(9855), 1, anon_sym_POUND_, - ACTIONS(9687), 2, + ACTIONS(9852), 2, sym__ws, sym_comment, - STATE(2320), 3, + STATE(2241), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9693), 25, + ACTIONS(9858), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -166980,19 +168403,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152352] = 5, + [153392] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9698), 1, + ACTIONS(9613), 1, anon_sym_POUND_, - ACTIONS(9695), 2, + ACTIONS(9610), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9701), 25, + ACTIONS(9616), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167018,19 +168441,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152395] = 5, + [153435] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9698), 1, + ACTIONS(9855), 1, anon_sym_POUND_, - ACTIONS(9695), 2, + ACTIONS(9860), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2168), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9701), 25, + ACTIONS(9858), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167056,19 +168479,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152438] = 5, + [153478] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9706), 1, + ACTIONS(9847), 1, anon_sym_POUND_, - ACTIONS(9703), 2, + ACTIONS(9844), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9709), 25, + ACTIONS(9850), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167094,19 +168517,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152481] = 5, + [153521] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9714), 1, + ACTIONS(9855), 1, anon_sym_POUND_, - ACTIONS(9711), 2, + ACTIONS(9863), 2, sym__ws, sym_comment, - STATE(2322), 3, + STATE(2246), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9717), 25, + ACTIONS(9858), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167132,19 +168555,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152524] = 5, + [153564] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9714), 1, + ACTIONS(9248), 1, anon_sym_POUND_, - ACTIONS(9719), 2, + ACTIONS(9866), 2, sym__ws, sym_comment, - STATE(2323), 3, + STATE(2074), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9717), 25, + ACTIONS(9251), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167170,19 +168593,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152567] = 5, + [153607] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9706), 1, + ACTIONS(9836), 1, anon_sym_POUND_, - ACTIONS(9703), 2, + ACTIONS(9869), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2248), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9709), 25, + ACTIONS(9839), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167208,19 +168631,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152610] = 5, + [153650] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9714), 1, + ACTIONS(9836), 1, anon_sym_POUND_, - ACTIONS(9722), 2, + ACTIONS(9872), 2, sym__ws, sym_comment, - STATE(2324), 3, + STATE(2249), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9717), 25, + ACTIONS(9839), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167246,19 +168669,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152653] = 5, + [153693] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9706), 1, + ACTIONS(9770), 1, anon_sym_POUND_, - ACTIONS(9703), 2, + ACTIONS(9767), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9709), 25, + ACTIONS(9773), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167284,19 +168707,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152696] = 5, + [153736] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9706), 1, + ACTIONS(9878), 1, anon_sym_POUND_, - ACTIONS(9703), 2, + ACTIONS(9875), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2112), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9709), 25, + ACTIONS(9881), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167322,19 +168745,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152739] = 5, + [153779] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9698), 1, + ACTIONS(9478), 1, anon_sym_POUND_, - ACTIONS(9695), 2, + ACTIONS(9475), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9701), 25, + ACTIONS(9481), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167360,19 +168783,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152782] = 5, + [153822] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9728), 1, + ACTIONS(9886), 1, anon_sym_POUND_, - ACTIONS(9725), 2, + ACTIONS(9883), 2, sym__ws, sym_comment, - STATE(2348), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9731), 25, + ACTIONS(9889), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167398,19 +168821,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152825] = 5, + [153865] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9736), 1, + ACTIONS(9894), 1, anon_sym_POUND_, - ACTIONS(9733), 2, + ACTIONS(9891), 2, sym__ws, sym_comment, - STATE(2326), 3, + STATE(2264), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9739), 25, + ACTIONS(9897), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167436,19 +168859,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152868] = 5, + [153908] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9736), 1, + ACTIONS(9740), 1, anon_sym_POUND_, - ACTIONS(9741), 2, + ACTIONS(9899), 2, sym__ws, sym_comment, - STATE(2327), 3, + STATE(2105), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9739), 25, + ACTIONS(9743), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167474,19 +168897,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152911] = 5, + [153951] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9458), 1, + ACTIONS(8828), 1, anon_sym_POUND_, - ACTIONS(9455), 2, + ACTIONS(8825), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9461), 25, + ACTIONS(8831), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167512,19 +168935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152954] = 5, + [153994] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9736), 1, + ACTIONS(9905), 1, anon_sym_POUND_, - ACTIONS(9744), 2, + ACTIONS(9902), 2, sym__ws, sym_comment, - STATE(2328), 3, + STATE(2268), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9739), 25, + ACTIONS(9908), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167550,19 +168973,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152997] = 5, + [154037] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9458), 1, + ACTIONS(8828), 1, anon_sym_POUND_, - ACTIONS(9455), 2, + ACTIONS(8825), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9461), 25, + ACTIONS(8831), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167588,19 +169011,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153040] = 5, + [154080] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9458), 1, + ACTIONS(9913), 1, anon_sym_POUND_, - ACTIONS(9455), 2, + ACTIONS(9910), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9461), 25, + ACTIONS(9916), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167626,19 +169049,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153083] = 5, + [154123] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9750), 1, + ACTIONS(9248), 1, anon_sym_POUND_, - ACTIONS(9747), 2, + ACTIONS(9918), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2063), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9753), 25, + ACTIONS(9251), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167664,19 +169087,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153126] = 5, + [154166] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9758), 1, + ACTIONS(9732), 1, anon_sym_POUND_, - ACTIONS(9755), 2, + ACTIONS(9729), 2, sym__ws, sym_comment, - STATE(2329), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9761), 25, + ACTIONS(9735), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167702,19 +169125,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153169] = 5, + [154209] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9766), 1, + ACTIONS(9924), 1, anon_sym_POUND_, - ACTIONS(9763), 2, + ACTIONS(9921), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2388), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9769), 25, + ACTIONS(9927), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167740,19 +169163,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153212] = 5, + [154252] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9766), 1, + ACTIONS(9894), 1, anon_sym_POUND_, - ACTIONS(9763), 2, + ACTIONS(9929), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2279), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9769), 25, + ACTIONS(9897), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167778,19 +169201,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153255] = 5, + [154295] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9766), 1, + ACTIONS(9935), 1, anon_sym_POUND_, - ACTIONS(9763), 2, + ACTIONS(9932), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9769), 25, + ACTIONS(9938), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167816,19 +169239,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153298] = 5, + [154338] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9458), 1, + ACTIONS(9943), 1, anon_sym_POUND_, - ACTIONS(9455), 2, + ACTIONS(9940), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9461), 25, + ACTIONS(9946), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167854,19 +169277,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153341] = 5, + [154381] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9736), 1, + ACTIONS(9905), 1, anon_sym_POUND_, - ACTIONS(9771), 2, + ACTIONS(9948), 2, sym__ws, sym_comment, - STATE(2331), 3, + STATE(2283), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9739), 25, + ACTIONS(9908), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167892,19 +169315,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153384] = 5, + [154424] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9736), 1, + ACTIONS(9954), 1, anon_sym_POUND_, - ACTIONS(9774), 2, + ACTIONS(9951), 2, sym__ws, sym_comment, - STATE(2332), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9739), 25, + ACTIONS(9957), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167930,19 +169353,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153427] = 5, + [154467] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9458), 1, + ACTIONS(9751), 1, anon_sym_POUND_, - ACTIONS(9455), 2, + ACTIONS(9959), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2289), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9461), 25, + ACTIONS(9754), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -167968,19 +169391,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153470] = 5, + [154510] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9736), 1, + ACTIONS(9613), 1, anon_sym_POUND_, - ACTIONS(9777), 2, + ACTIONS(9610), 2, sym__ws, sym_comment, - STATE(2333), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9739), 25, + ACTIONS(9616), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168006,19 +169429,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153513] = 5, + [154553] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9458), 1, + ACTIONS(9095), 1, anon_sym_POUND_, - ACTIONS(9455), 2, + ACTIONS(9962), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2073), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9461), 25, + ACTIONS(9098), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168044,19 +169467,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153556] = 5, + [154596] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9458), 1, + ACTIONS(9762), 1, anon_sym_POUND_, - ACTIONS(9455), 2, + ACTIONS(9965), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2293), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9461), 25, + ACTIONS(9765), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168082,19 +169505,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153599] = 5, + [154639] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9750), 1, + ACTIONS(9971), 1, anon_sym_POUND_, - ACTIONS(9747), 2, + ACTIONS(9968), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9753), 25, + ACTIONS(9974), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168120,19 +169543,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153642] = 5, + [154682] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9758), 1, + ACTIONS(9778), 1, anon_sym_POUND_, - ACTIONS(9780), 2, + ACTIONS(9976), 2, sym__ws, sym_comment, - STATE(2334), 3, + STATE(2295), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9761), 25, + ACTIONS(9781), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168158,19 +169581,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153685] = 5, + [154725] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9766), 1, + ACTIONS(8741), 1, anon_sym_POUND_, - ACTIONS(9763), 2, + ACTIONS(9979), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2055), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9769), 25, + ACTIONS(8744), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168196,19 +169619,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153728] = 5, + [154768] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9766), 1, + ACTIONS(8828), 1, anon_sym_POUND_, - ACTIONS(9763), 2, + ACTIONS(8825), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9769), 25, + ACTIONS(8831), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168234,19 +169657,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153771] = 5, + [154811] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9766), 1, + ACTIONS(9786), 1, anon_sym_POUND_, - ACTIONS(9763), 2, + ACTIONS(9783), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9769), 25, + ACTIONS(9789), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168272,19 +169695,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153814] = 5, + [154854] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9633), 1, + ACTIONS(9778), 1, anon_sym_POUND_, - ACTIONS(9783), 2, + ACTIONS(9982), 2, sym__ws, sym_comment, - STATE(2335), 3, + STATE(2299), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9636), 25, + ACTIONS(9781), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168310,19 +169733,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153857] = 5, + [154897] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9641), 1, + ACTIONS(9095), 1, anon_sym_POUND_, - ACTIONS(9638), 2, + ACTIONS(9985), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2072), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9644), 25, + ACTIONS(9098), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168348,19 +169771,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153900] = 5, + [154940] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9641), 1, + ACTIONS(9762), 1, anon_sym_POUND_, - ACTIONS(9638), 2, + ACTIONS(9988), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2301), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9644), 25, + ACTIONS(9765), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168386,19 +169809,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153943] = 5, + [154983] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9641), 1, + ACTIONS(9800), 1, anon_sym_POUND_, - ACTIONS(9638), 2, + ACTIONS(9797), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9644), 25, + ACTIONS(9803), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168424,19 +169847,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [153986] = 5, + [155026] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9649), 1, + ACTIONS(9762), 1, anon_sym_POUND_, - ACTIONS(9646), 2, + ACTIONS(9991), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2304), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9652), 25, + ACTIONS(9765), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168462,19 +169885,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154029] = 5, + [155069] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9789), 1, + ACTIONS(9567), 1, anon_sym_POUND_, - ACTIONS(9786), 2, + ACTIONS(9994), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2376), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9792), 25, + ACTIONS(9570), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168500,19 +169923,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154072] = 5, + [155112] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9797), 1, + ACTIONS(9971), 1, anon_sym_POUND_, - ACTIONS(9794), 2, + ACTIONS(9968), 2, sym__ws, sym_comment, - STATE(2337), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9800), 25, + ACTIONS(9974), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168538,19 +169961,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154115] = 5, + [155155] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9797), 1, + ACTIONS(10000), 1, anon_sym_POUND_, - ACTIONS(9802), 2, + ACTIONS(9997), 2, sym__ws, sym_comment, - STATE(2338), 3, + STATE(2051), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9800), 25, + ACTIONS(10003), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168576,19 +169999,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154158] = 5, + [155198] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9789), 1, + ACTIONS(9542), 1, anon_sym_POUND_, - ACTIONS(9786), 2, + ACTIONS(9539), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9792), 25, + ACTIONS(9545), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168614,19 +170037,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154201] = 5, + [155241] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9797), 1, + ACTIONS(9542), 1, anon_sym_POUND_, - ACTIONS(9805), 2, + ACTIONS(9539), 2, sym__ws, sym_comment, - STATE(2339), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9800), 25, + ACTIONS(9545), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168652,19 +170075,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154244] = 5, + [155284] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9789), 1, + ACTIONS(9971), 1, anon_sym_POUND_, - ACTIONS(9786), 2, + ACTIONS(9968), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9792), 25, + ACTIONS(9974), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168690,19 +170113,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154287] = 5, + [155327] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9789), 1, + ACTIONS(10008), 1, anon_sym_POUND_, - ACTIONS(9786), 2, + ACTIONS(10005), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2435), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9792), 25, + ACTIONS(10011), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168728,19 +170151,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154330] = 5, + [155370] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9811), 1, + ACTIONS(9954), 1, anon_sym_POUND_, - ACTIONS(9808), 2, + ACTIONS(9951), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9814), 25, + ACTIONS(9957), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168766,19 +170189,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154373] = 5, + [155413] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9819), 1, + ACTIONS(10000), 1, anon_sym_POUND_, - ACTIONS(9816), 2, + ACTIONS(10013), 2, sym__ws, sym_comment, - STATE(2340), 3, + STATE(2081), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9822), 25, + ACTIONS(10003), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168804,19 +170227,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154416] = 5, + [155456] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9827), 1, + ACTIONS(10019), 1, anon_sym_POUND_, - ACTIONS(9824), 2, + ACTIONS(10016), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2103), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9830), 25, + ACTIONS(10022), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168842,19 +170265,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154459] = 5, + [155499] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9827), 1, + ACTIONS(8698), 1, anon_sym_POUND_, - ACTIONS(9824), 2, + ACTIONS(10024), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2145), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9830), 25, + ACTIONS(8701), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168880,19 +170303,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154502] = 5, + [155542] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9827), 1, + ACTIONS(10000), 1, anon_sym_POUND_, - ACTIONS(9824), 2, + ACTIONS(10027), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2119), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9830), 25, + ACTIONS(10003), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168918,19 +170341,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154545] = 5, + [155585] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9835), 1, + ACTIONS(9095), 1, anon_sym_POUND_, - ACTIONS(9832), 2, + ACTIONS(10030), 2, sym__ws, sym_comment, - STATE(2341), 3, + STATE(2071), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9838), 25, + ACTIONS(9098), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168956,19 +170379,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154588] = 5, + [155628] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9843), 1, + ACTIONS(9288), 1, anon_sym_POUND_, - ACTIONS(9840), 2, + ACTIONS(9285), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9846), 25, + ACTIONS(9291), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -168994,19 +170417,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154631] = 5, + [155671] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9843), 1, + ACTIONS(9280), 1, anon_sym_POUND_, - ACTIONS(9840), 2, + ACTIONS(10033), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2367), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9846), 25, + ACTIONS(9283), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169032,19 +170455,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154674] = 5, + [155714] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9843), 1, + ACTIONS(10039), 1, anon_sym_POUND_, - ACTIONS(9840), 2, + ACTIONS(10036), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9846), 25, + ACTIONS(10042), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169070,19 +170493,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154717] = 5, + [155757] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9851), 1, + ACTIONS(9971), 1, anon_sym_POUND_, - ACTIONS(9848), 2, + ACTIONS(9968), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9854), 25, + ACTIONS(9974), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169108,19 +170531,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154760] = 5, + [155800] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9859), 1, + ACTIONS(9642), 1, anon_sym_POUND_, - ACTIONS(9856), 2, + ACTIONS(9639), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9862), 25, + ACTIONS(9645), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169146,19 +170569,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154803] = 5, + [155843] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9728), 1, + ACTIONS(9272), 1, anon_sym_POUND_, - ACTIONS(9864), 2, + ACTIONS(9269), 2, sym__ws, sym_comment, - STATE(2343), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9731), 25, + ACTIONS(9275), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169184,19 +170607,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154846] = 5, + [155886] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9442), 1, + ACTIONS(9710), 1, anon_sym_POUND_, - ACTIONS(9439), 2, + ACTIONS(10044), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2327), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9445), 25, + ACTIONS(9713), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169222,19 +170645,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154889] = 5, + [155929] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9728), 1, + ACTIONS(9310), 1, anon_sym_POUND_, - ACTIONS(9867), 2, + ACTIONS(10047), 2, sym__ws, sym_comment, - STATE(2345), 3, + STATE(2111), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9731), 25, + ACTIONS(9313), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169260,19 +170683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154932] = 5, + [155972] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9859), 1, + ACTIONS(9694), 1, anon_sym_POUND_, - ACTIONS(9856), 2, + ACTIONS(9691), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9862), 25, + ACTIONS(9697), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169298,19 +170721,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [154975] = 5, + [156015] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9811), 1, + ACTIONS(9710), 1, anon_sym_POUND_, - ACTIONS(9808), 2, + ACTIONS(10050), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2524), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9814), 25, + ACTIONS(9713), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169336,19 +170759,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155018] = 5, + [156058] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9873), 1, + ACTIONS(9163), 1, anon_sym_POUND_, - ACTIONS(9870), 2, + ACTIONS(9160), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9876), 25, + ACTIONS(9166), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169374,19 +170797,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155061] = 5, + [156101] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9881), 1, + ACTIONS(8828), 1, anon_sym_POUND_, - ACTIONS(9878), 2, + ACTIONS(8825), 2, sym__ws, sym_comment, - STATE(2350), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9884), 25, + ACTIONS(8831), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169412,17 +170835,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155104] = 3, + [156144] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7449), 1, - anon_sym_COLON, - ACTIONS(7447), 30, + ACTIONS(9163), 1, + anon_sym_POUND_, + ACTIONS(9160), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, - anon_sym_COLON_COLON, + STATE(2212), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9166), 25, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -169444,23 +170870,22 @@ 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, - [155143] = 5, + [156187] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9881), 1, + ACTIONS(9478), 1, anon_sym_POUND_, - ACTIONS(9886), 2, + ACTIONS(9475), 2, sym__ws, sym_comment, - STATE(2351), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9884), 25, + ACTIONS(9481), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169486,19 +170911,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155186] = 5, + [156230] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9873), 1, + ACTIONS(9478), 1, anon_sym_POUND_, - ACTIONS(9870), 2, + ACTIONS(9475), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9876), 25, + ACTIONS(9481), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169524,19 +170949,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155229] = 5, + [156273] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9892), 1, + ACTIONS(8714), 1, anon_sym_POUND_, - ACTIONS(9889), 2, + ACTIONS(10053), 2, sym__ws, sym_comment, - STATE(2352), 3, + STATE(2333), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9895), 25, + ACTIONS(8717), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169562,19 +170987,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155272] = 5, + [156316] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9900), 1, + ACTIONS(8820), 1, anon_sym_POUND_, - ACTIONS(9897), 2, + ACTIONS(8817), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9903), 25, + ACTIONS(8823), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169600,19 +171025,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155315] = 5, + [156359] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9892), 1, + ACTIONS(10008), 1, anon_sym_POUND_, - ACTIONS(9905), 2, + ACTIONS(10056), 2, sym__ws, sym_comment, - STATE(2355), 3, + STATE(2102), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9895), 25, + ACTIONS(10011), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169638,19 +171063,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155358] = 5, + [156402] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9450), 1, + ACTIONS(9913), 1, anon_sym_POUND_, - ACTIONS(9908), 2, + ACTIONS(9910), 2, sym__ws, sym_comment, - STATE(2449), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9453), 25, + ACTIONS(9916), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169676,20 +171101,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155401] = 5, + [156445] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9442), 1, - anon_sym_POUND_, - ACTIONS(9439), 2, + ACTIONS(7738), 1, + anon_sym_COLON, + ACTIONS(7736), 30, sym__ws, sym_comment, - STATE(2038), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9445), 25, - anon_sym_COLON, + anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -169711,22 +171133,23 @@ 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, - [155444] = 5, + [156484] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9900), 1, + ACTIONS(10008), 1, anon_sym_POUND_, - ACTIONS(9897), 2, + ACTIONS(10059), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2101), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9903), 25, + ACTIONS(10011), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169752,19 +171175,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155487] = 5, + [156527] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9892), 1, + ACTIONS(9740), 1, anon_sym_POUND_, - ACTIONS(9911), 2, + ACTIONS(10062), 2, sym__ws, sym_comment, - STATE(2357), 3, + STATE(2107), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9895), 25, + ACTIONS(9743), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169790,19 +171213,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155530] = 5, + [156570] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9450), 1, + ACTIONS(9702), 1, anon_sym_POUND_, - ACTIONS(9914), 2, + ACTIONS(9699), 2, sym__ws, sym_comment, - STATE(2446), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9453), 25, + ACTIONS(9705), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169828,19 +171251,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155573] = 5, + [156613] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9892), 1, + ACTIONS(10039), 1, anon_sym_POUND_, - ACTIONS(9917), 2, + ACTIONS(10036), 2, sym__ws, sym_comment, - STATE(2358), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9895), 25, + ACTIONS(10042), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169866,19 +171289,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155616] = 5, + [156656] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9900), 1, + ACTIONS(10008), 1, anon_sym_POUND_, - ACTIONS(9897), 2, + ACTIONS(10065), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2099), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9903), 25, + ACTIONS(10011), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169904,19 +171327,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155659] = 5, + [156699] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9881), 1, + ACTIONS(9913), 1, anon_sym_POUND_, - ACTIONS(9920), 2, + ACTIONS(9910), 2, sym__ws, sym_comment, - STATE(2359), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9884), 25, + ACTIONS(9916), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169942,19 +171365,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155702] = 5, + [156742] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9426), 1, + ACTIONS(9954), 1, anon_sym_POUND_, - ACTIONS(9423), 2, + ACTIONS(9951), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9429), 25, + ACTIONS(9957), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -169980,19 +171403,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155745] = 5, + [156785] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9873), 1, + ACTIONS(10039), 1, anon_sym_POUND_, - ACTIONS(9870), 2, + ACTIONS(10036), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9876), 25, + ACTIONS(10042), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170018,19 +171441,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155788] = 5, + [156828] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9873), 1, + ACTIONS(9913), 1, anon_sym_POUND_, - ACTIONS(9870), 2, + ACTIONS(9910), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9876), 25, + ACTIONS(9916), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170056,19 +171479,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155831] = 5, + [156871] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9434), 1, + ACTIONS(8866), 1, anon_sym_POUND_, - ACTIONS(9923), 2, + ACTIONS(8863), 2, sym__ws, sym_comment, - STATE(2445), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9437), 25, + ACTIONS(8869), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170094,19 +171517,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155874] = 5, + [156914] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9434), 1, + ACTIONS(8866), 1, anon_sym_POUND_, - ACTIONS(9926), 2, + ACTIONS(8863), 2, sym__ws, sym_comment, - STATE(2444), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9437), 25, + ACTIONS(8869), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170132,19 +171555,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155917] = 5, + [156957] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9426), 1, + ACTIONS(8866), 1, anon_sym_POUND_, - ACTIONS(9423), 2, + ACTIONS(8863), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9429), 25, + ACTIONS(8869), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170170,19 +171593,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [155960] = 5, + [157000] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9481), 1, + ACTIONS(8858), 1, anon_sym_POUND_, - ACTIONS(9929), 2, + ACTIONS(10068), 2, sym__ws, sym_comment, - STATE(2442), 3, + STATE(2094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9484), 25, + ACTIONS(8861), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170208,19 +171631,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156003] = 5, + [157043] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9935), 1, + ACTIONS(8850), 1, anon_sym_POUND_, - ACTIONS(9932), 2, + ACTIONS(8847), 2, sym__ws, sym_comment, - STATE(2283), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9938), 25, + ACTIONS(8853), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170246,19 +171669,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156046] = 5, + [157086] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9489), 1, + ACTIONS(8820), 1, anon_sym_POUND_, - ACTIONS(9486), 2, + ACTIONS(8817), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9492), 25, + ACTIONS(8823), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170284,19 +171707,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156089] = 5, + [157129] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9943), 1, + ACTIONS(9280), 1, anon_sym_POUND_, - ACTIONS(9940), 2, + ACTIONS(10071), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2318), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9946), 25, + ACTIONS(9283), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170322,19 +171745,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156132] = 5, + [157172] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9935), 1, + ACTIONS(9288), 1, anon_sym_POUND_, - ACTIONS(9948), 2, + ACTIONS(9285), 2, sym__ws, sym_comment, - STATE(2363), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9938), 25, + ACTIONS(9291), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170360,19 +171783,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156175] = 5, + [157215] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9943), 1, + ACTIONS(9542), 1, anon_sym_POUND_, - ACTIONS(9940), 2, + ACTIONS(9539), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9946), 25, + ACTIONS(9545), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170398,19 +171821,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156218] = 5, + [157258] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9935), 1, + ACTIONS(9567), 1, anon_sym_POUND_, - ACTIONS(9951), 2, + ACTIONS(10074), 2, sym__ws, sym_comment, - STATE(2365), 3, + STATE(2256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9938), 25, + ACTIONS(9570), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170436,19 +171859,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156261] = 5, + [157301] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9935), 1, + ACTIONS(9567), 1, anon_sym_POUND_, - ACTIONS(9954), 2, + ACTIONS(10077), 2, sym__ws, sym_comment, - STATE(2366), 3, + STATE(2255), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9938), 25, + ACTIONS(9570), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170474,19 +171897,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156304] = 5, + [157344] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9943), 1, + ACTIONS(10083), 1, anon_sym_POUND_, - ACTIONS(9940), 2, + ACTIONS(10080), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2404), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9946), 25, + ACTIONS(10086), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170512,19 +171935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156347] = 5, + [157387] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9960), 1, + ACTIONS(9542), 1, anon_sym_POUND_, - ACTIONS(9957), 2, + ACTIONS(9539), 2, sym__ws, sym_comment, - STATE(2367), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9963), 25, + ACTIONS(9545), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170550,19 +171973,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156390] = 5, + [157430] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9968), 1, + ACTIONS(9724), 1, anon_sym_POUND_, - ACTIONS(9965), 2, + ACTIONS(10088), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2349), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9971), 25, + ACTIONS(9727), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170588,19 +172011,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156433] = 5, + [157473] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9968), 1, + ACTIONS(9732), 1, anon_sym_POUND_, - ACTIONS(9965), 2, + ACTIONS(9729), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9971), 25, + ACTIONS(9735), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170626,19 +172049,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156476] = 5, + [157516] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9976), 1, + ACTIONS(9724), 1, anon_sym_POUND_, - ACTIONS(9973), 2, + ACTIONS(10091), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2158), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9979), 25, + ACTIONS(9727), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170664,19 +172087,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156519] = 5, + [157559] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9984), 1, + ACTIONS(9732), 1, anon_sym_POUND_, - ACTIONS(9981), 2, + ACTIONS(9729), 2, sym__ws, sym_comment, - STATE(2369), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9987), 25, + ACTIONS(9735), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170702,19 +172125,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156562] = 5, + [157602] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9984), 1, + ACTIONS(9724), 1, anon_sym_POUND_, - ACTIONS(9989), 2, + ACTIONS(10094), 2, sym__ws, sym_comment, - STATE(2370), 3, + STATE(2136), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9987), 25, + ACTIONS(9727), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170740,19 +172163,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156605] = 5, + [157645] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9976), 1, + ACTIONS(9724), 1, anon_sym_POUND_, - ACTIONS(9973), 2, + ACTIONS(10097), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2096), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9979), 25, + ACTIONS(9727), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170778,19 +172201,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156648] = 5, + [157688] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9984), 1, + ACTIONS(9732), 1, anon_sym_POUND_, - ACTIONS(9992), 2, + ACTIONS(9729), 2, sym__ws, sym_comment, - STATE(2371), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9987), 25, + ACTIONS(9735), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170816,19 +172239,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156691] = 5, + [157731] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9976), 1, + ACTIONS(9567), 1, anon_sym_POUND_, - ACTIONS(9973), 2, + ACTIONS(10100), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2433), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9979), 25, + ACTIONS(9570), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170854,19 +172277,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156734] = 5, + [157774] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9976), 1, + ACTIONS(10008), 1, anon_sym_POUND_, - ACTIONS(9973), 2, + ACTIONS(10103), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2095), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9979), 25, + ACTIONS(10011), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170892,19 +172315,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156777] = 5, + [157817] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9968), 1, + ACTIONS(9542), 1, anon_sym_POUND_, - ACTIONS(9965), 2, + ACTIONS(9539), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9971), 25, + ACTIONS(9545), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170930,19 +172353,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156820] = 5, + [157860] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9935), 1, + ACTIONS(10109), 1, anon_sym_POUND_, - ACTIONS(9995), 2, + ACTIONS(10106), 2, sym__ws, sym_comment, - STATE(2372), 3, + STATE(2400), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9938), 25, + ACTIONS(10112), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -170968,19 +172391,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156863] = 5, + [157903] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9481), 1, + ACTIONS(9542), 1, anon_sym_POUND_, - ACTIONS(9998), 2, + ACTIONS(9539), 2, sym__ws, sym_comment, - STATE(2439), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9484), 25, + ACTIONS(9545), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171006,19 +172429,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156906] = 5, + [157946] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9481), 1, + ACTIONS(10039), 1, anon_sym_POUND_, - ACTIONS(10001), 2, + ACTIONS(10036), 2, sym__ws, sym_comment, - STATE(2437), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9484), 25, + ACTIONS(10042), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171044,19 +172467,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156949] = 5, + [157989] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9943), 1, + ACTIONS(10008), 1, anon_sym_POUND_, - ACTIONS(9940), 2, + ACTIONS(10114), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2498), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9946), 25, + ACTIONS(10011), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171082,19 +172505,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156992] = 5, + [158032] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9935), 1, + ACTIONS(9478), 1, anon_sym_POUND_, - ACTIONS(10004), 2, + ACTIONS(9475), 2, sym__ws, sym_comment, - STATE(2375), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9938), 25, + ACTIONS(9481), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171120,19 +172543,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157035] = 5, + [158075] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9943), 1, + ACTIONS(9575), 1, anon_sym_POUND_, - ACTIONS(9940), 2, + ACTIONS(10117), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2068), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9946), 25, + ACTIONS(9578), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171158,19 +172581,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157078] = 5, + [158118] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9935), 1, + ACTIONS(10039), 1, anon_sym_POUND_, - ACTIONS(10007), 2, + ACTIONS(10036), 2, sym__ws, sym_comment, - STATE(2377), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9938), 25, + ACTIONS(10042), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171196,19 +172619,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157121] = 5, + [158161] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9489), 1, + ACTIONS(10008), 1, anon_sym_POUND_, - ACTIONS(9486), 2, + ACTIONS(10120), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2216), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9492), 25, + ACTIONS(10011), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171234,19 +172657,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157164] = 5, + [158204] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10013), 1, + ACTIONS(10008), 1, anon_sym_POUND_, - ACTIONS(10010), 2, + ACTIONS(10123), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2453), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10016), 25, + ACTIONS(10011), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171272,19 +172695,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157207] = 5, + [158247] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10021), 1, + ACTIONS(10019), 1, anon_sym_POUND_, - ACTIONS(10018), 2, + ACTIONS(10126), 2, sym__ws, sym_comment, - STATE(2430), 3, + STATE(2452), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10024), 25, + ACTIONS(10022), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171310,19 +172733,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157250] = 5, + [158290] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10021), 1, + ACTIONS(9954), 1, anon_sym_POUND_, - ACTIONS(10026), 2, + ACTIONS(9951), 2, sym__ws, sym_comment, - STATE(2429), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10024), 25, + ACTIONS(9957), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171348,19 +172771,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157293] = 5, + [158333] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10013), 1, + ACTIONS(9954), 1, anon_sym_POUND_, - ACTIONS(10010), 2, + ACTIONS(9951), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10016), 25, + ACTIONS(9957), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171386,19 +172809,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157336] = 5, + [158376] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9935), 1, + ACTIONS(9913), 1, anon_sym_POUND_, - ACTIONS(10029), 2, + ACTIONS(9910), 2, sym__ws, sym_comment, - STATE(2378), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9938), 25, + ACTIONS(9916), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171424,19 +172847,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157379] = 5, + [158419] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9943), 1, + ACTIONS(9740), 1, anon_sym_POUND_, - ACTIONS(9940), 2, + ACTIONS(10129), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2450), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9946), 25, + ACTIONS(9743), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171462,19 +172885,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157422] = 5, + [158462] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9960), 1, + ACTIONS(9740), 1, anon_sym_POUND_, - ACTIONS(10032), 2, + ACTIONS(10132), 2, sym__ws, sym_comment, - STATE(2379), 3, + STATE(2449), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9963), 25, + ACTIONS(9743), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171500,19 +172923,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157465] = 5, + [158505] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9968), 1, + ACTIONS(9702), 1, anon_sym_POUND_, - ACTIONS(9965), 2, + ACTIONS(9699), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9971), 25, + ACTIONS(9705), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171538,19 +172961,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157508] = 5, + [158548] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9968), 1, + ACTIONS(9913), 1, anon_sym_POUND_, - ACTIONS(9965), 2, + ACTIONS(9910), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9971), 25, + ACTIONS(9916), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171576,19 +172999,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157551] = 5, + [158591] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9976), 1, + ACTIONS(9740), 1, anon_sym_POUND_, - ACTIONS(9973), 2, + ACTIONS(10135), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9979), 25, + ACTIONS(9743), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171614,19 +173037,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157594] = 5, + [158634] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9984), 1, + ACTIONS(9913), 1, anon_sym_POUND_, - ACTIONS(10035), 2, + ACTIONS(9910), 2, sym__ws, sym_comment, - STATE(2381), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9987), 25, + ACTIONS(9916), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171652,19 +173075,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157637] = 5, + [158677] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9984), 1, + ACTIONS(9913), 1, anon_sym_POUND_, - ACTIONS(10038), 2, + ACTIONS(9910), 2, sym__ws, sym_comment, - STATE(2382), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9987), 25, + ACTIONS(9916), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171690,20 +173113,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157680] = 5, + [158720] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9976), 1, - anon_sym_POUND_, - ACTIONS(9973), 2, + ACTIONS(10138), 1, + anon_sym_COLON, + ACTIONS(10140), 1, + anon_sym_COLON_COLON, + ACTIONS(7429), 29, sym__ws, sym_comment, - STATE(2038), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9979), 25, - anon_sym_COLON, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -171725,27 +173146,61 @@ 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, - [157723] = 5, + [158761] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9984), 1, + ACTIONS(10138), 1, + anon_sym_COLON, + ACTIONS(10140), 1, + anon_sym_COLON_COLON, + ACTIONS(7704), 29, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(10041), 2, + aux_sym_num_lit_token1, + 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_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [158802] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7680), 31, sym__ws, sym_comment, - STATE(2383), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9987), 25, + 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, @@ -171763,22 +173218,23 @@ 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, - [157766] = 5, + [158839] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10047), 1, + ACTIONS(9954), 1, anon_sym_POUND_, - ACTIONS(10044), 2, + ACTIONS(9951), 2, sym__ws, sym_comment, - STATE(2426), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10050), 25, + ACTIONS(9957), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171804,24 +173260,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157809] = 5, + [158882] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9976), 1, - anon_sym_POUND_, - ACTIONS(9973), 2, + ACTIONS(7720), 31, sym__ws, sym_comment, - STATE(2038), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9979), 25, + 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, @@ -171839,23 +173291,22 @@ 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, - [157852] = 5, + [158919] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9976), 1, - anon_sym_POUND_, - ACTIONS(9973), 2, + ACTIONS(10138), 1, + anon_sym_COLON, + ACTIONS(10140), 1, + anon_sym_COLON_COLON, + ACTIONS(7666), 29, sym__ws, sym_comment, - STATE(2038), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9979), 25, - anon_sym_COLON, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -171877,22 +173328,23 @@ 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, - [157895] = 5, + [158960] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9968), 1, + ACTIONS(8836), 1, anon_sym_POUND_, - ACTIONS(9965), 2, + ACTIONS(10142), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2093), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9971), 25, + ACTIONS(8839), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171918,19 +173370,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157938] = 5, + [159003] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9789), 1, + ACTIONS(8820), 1, anon_sym_POUND_, - ACTIONS(9786), 2, + ACTIONS(8817), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9792), 25, + ACTIONS(8823), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -171956,24 +173408,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157981] = 5, + [159046] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9797), 1, - anon_sym_POUND_, - ACTIONS(10052), 2, + ACTIONS(7634), 31, sym__ws, sym_comment, - STATE(2385), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9800), 25, + 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, @@ -171991,22 +173439,23 @@ 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, - [158024] = 5, + [159083] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9797), 1, + ACTIONS(9248), 1, anon_sym_POUND_, - ACTIONS(10055), 2, + ACTIONS(10145), 2, sym__ws, sym_comment, - STATE(2386), 3, + STATE(2065), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9800), 25, + ACTIONS(9251), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172032,19 +173481,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158067] = 5, + [159126] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9789), 1, + ACTIONS(8836), 1, anon_sym_POUND_, - ACTIONS(9786), 2, + ACTIONS(10148), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2092), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9792), 25, + ACTIONS(8839), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172070,19 +173519,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158110] = 5, + [159169] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9797), 1, + ACTIONS(10154), 1, anon_sym_POUND_, - ACTIONS(10058), 2, + ACTIONS(10151), 2, sym__ws, sym_comment, - STATE(2387), 3, + STATE(2374), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9800), 25, + ACTIONS(10157), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172108,19 +173557,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158153] = 5, + [159212] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9789), 1, + ACTIONS(10162), 1, anon_sym_POUND_, - ACTIONS(9786), 2, + ACTIONS(10159), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9792), 25, + ACTIONS(10165), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172146,19 +173595,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158196] = 5, + [159255] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9789), 1, + ACTIONS(10039), 1, anon_sym_POUND_, - ACTIONS(9786), 2, + ACTIONS(10036), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9792), 25, + ACTIONS(10042), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172184,19 +173633,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158239] = 5, + [159298] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10064), 1, + ACTIONS(10154), 1, anon_sym_POUND_, - ACTIONS(10061), 2, + ACTIONS(10167), 2, sym__ws, sym_comment, - STATE(2410), 3, + STATE(2346), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10067), 25, + ACTIONS(10157), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172222,24 +173671,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158282] = 5, + [159341] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10072), 1, - anon_sym_POUND_, - ACTIONS(10069), 2, + ACTIONS(7684), 31, sym__ws, sym_comment, - STATE(2038), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(10075), 25, + 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, @@ -172257,22 +173702,23 @@ 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, - [158325] = 5, + [159378] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10047), 1, + ACTIONS(10173), 1, anon_sym_POUND_, - ACTIONS(10077), 2, + ACTIONS(10170), 2, sym__ws, sym_comment, - STATE(2422), 3, + STATE(2369), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10050), 25, + ACTIONS(10176), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172298,19 +173744,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158368] = 5, + [159421] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10047), 1, + ACTIONS(9146), 1, anon_sym_POUND_, - ACTIONS(10080), 2, + ACTIONS(10178), 2, sym__ws, sym_comment, - STATE(2418), 3, + STATE(2446), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10050), 25, + ACTIONS(9149), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172336,19 +173782,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158411] = 5, + [159464] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10072), 1, + ACTIONS(9138), 1, anon_sym_POUND_, - ACTIONS(10069), 2, + ACTIONS(9135), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10075), 25, + ACTIONS(9141), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172374,24 +173820,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158454] = 5, + [159507] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9819), 1, - anon_sym_POUND_, - ACTIONS(10083), 2, + ACTIONS(7676), 31, sym__ws, sym_comment, - STATE(2388), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9822), 25, + 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, @@ -172409,22 +173851,23 @@ 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, - [158497] = 5, + [159544] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9827), 1, + ACTIONS(9171), 1, anon_sym_POUND_, - ACTIONS(9824), 2, + ACTIONS(10181), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2445), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9830), 25, + ACTIONS(9174), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172450,19 +173893,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158540] = 5, + [159587] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9827), 1, + ACTIONS(9694), 1, anon_sym_POUND_, - ACTIONS(9824), 2, + ACTIONS(9691), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9830), 25, + ACTIONS(9697), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172488,19 +173931,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158583] = 5, + [159630] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10021), 1, + ACTIONS(8741), 1, anon_sym_POUND_, - ACTIONS(10086), 2, + ACTIONS(10184), 2, sym__ws, sym_comment, - STATE(2416), 3, + STATE(2053), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10024), 25, + ACTIONS(8744), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172526,19 +173969,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158626] = 5, + [159673] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9827), 1, + ACTIONS(8836), 1, anon_sym_POUND_, - ACTIONS(9824), 2, + ACTIONS(10187), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2091), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9830), 25, + ACTIONS(8839), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172564,19 +174007,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158669] = 5, + [159716] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10013), 1, + ACTIONS(10193), 1, anon_sym_POUND_, - ACTIONS(10010), 2, + ACTIONS(10190), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10016), 25, + ACTIONS(10196), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172602,24 +174045,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158712] = 5, + [159759] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9409), 1, - anon_sym_POUND_, - ACTIONS(10089), 2, + ACTIONS(7542), 31, sym__ws, sym_comment, - STATE(2389), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9412), 25, + 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, @@ -172637,22 +174076,23 @@ 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, - [158755] = 5, + [159796] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9401), 1, + ACTIONS(8788), 1, anon_sym_POUND_, - ACTIONS(9398), 2, + ACTIONS(8785), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9404), 25, + ACTIONS(8791), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172678,19 +174118,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158798] = 5, + [159839] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9409), 1, + ACTIONS(10109), 1, anon_sym_POUND_, - ACTIONS(10092), 2, + ACTIONS(10198), 2, sym__ws, sym_comment, - STATE(2392), 3, + STATE(2350), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9412), 25, + ACTIONS(10112), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172716,19 +174156,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158841] = 5, + [159882] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9401), 1, + ACTIONS(8969), 1, anon_sym_POUND_, - ACTIONS(9398), 2, + ACTIONS(8966), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9404), 25, + ACTIONS(8972), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172754,19 +174194,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158884] = 5, + [159925] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9409), 1, + ACTIONS(9185), 1, anon_sym_POUND_, - ACTIONS(10095), 2, + ACTIONS(9182), 2, sym__ws, sym_comment, - STATE(2394), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9412), 25, + ACTIONS(9188), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172792,19 +174232,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158927] = 5, + [159968] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9409), 1, + ACTIONS(9146), 1, anon_sym_POUND_, - ACTIONS(10098), 2, + ACTIONS(10201), 2, sym__ws, sym_comment, - STATE(2395), 3, + STATE(2442), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9412), 25, + ACTIONS(9149), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172830,19 +174270,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [158970] = 5, + [160011] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9401), 1, + ACTIONS(10173), 1, anon_sym_POUND_, - ACTIONS(9398), 2, + ACTIONS(10204), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2365), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9404), 25, + ACTIONS(10176), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172868,19 +174308,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159013] = 5, + [160054] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9393), 1, + ACTIONS(10154), 1, anon_sym_POUND_, - ACTIONS(10101), 2, + ACTIONS(10207), 2, sym__ws, sym_comment, - STATE(2396), 3, + STATE(2363), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9396), 25, + ACTIONS(10157), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172906,19 +174346,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159056] = 5, + [160097] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10021), 1, + ACTIONS(9702), 1, anon_sym_POUND_, - ACTIONS(10104), 2, + ACTIONS(9699), 2, sym__ws, sym_comment, - STATE(2412), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10024), 25, + ACTIONS(9705), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -172944,24 +174384,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159099] = 5, + [160140] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9401), 1, - anon_sym_POUND_, - ACTIONS(9398), 2, + ACTIONS(7518), 31, sym__ws, sym_comment, - STATE(2038), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9404), 25, + 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, @@ -172979,22 +174415,23 @@ 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, - [159142] = 5, + [160177] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10110), 1, + ACTIONS(9613), 1, anon_sym_POUND_, - ACTIONS(10107), 2, + ACTIONS(9610), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10113), 25, + ACTIONS(9616), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173020,24 +174457,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159185] = 5, + [160220] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10064), 1, - anon_sym_POUND_, - ACTIONS(10115), 2, + ACTIONS(7614), 31, sym__ws, sym_comment, - STATE(2406), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(10067), 25, + 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, @@ -173055,22 +174488,23 @@ 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, - [159228] = 5, + [160257] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9363), 1, + ACTIONS(10083), 1, anon_sym_POUND_, - ACTIONS(9360), 2, + ACTIONS(10210), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2354), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9366), 25, + ACTIONS(10086), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173096,19 +174530,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159271] = 5, + [160300] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9363), 1, + ACTIONS(9248), 1, anon_sym_POUND_, - ACTIONS(9360), 2, + ACTIONS(10213), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2066), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9366), 25, + ACTIONS(9251), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173134,24 +174568,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159314] = 5, + [160343] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9371), 1, - anon_sym_POUND_, - ACTIONS(9368), 2, + ACTIONS(7514), 31, sym__ws, sym_comment, - STATE(2038), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9374), 25, + 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, @@ -173169,27 +174599,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, - [159357] = 5, + [160380] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9379), 1, - anon_sym_POUND_, - ACTIONS(10118), 2, + ACTIONS(7510), 31, sym__ws, sym_comment, - STATE(2398), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9382), 25, + 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, @@ -173207,22 +174634,23 @@ 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, - [159400] = 5, + [160417] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9379), 1, + ACTIONS(9138), 1, anon_sym_POUND_, - ACTIONS(10121), 2, + ACTIONS(9135), 2, sym__ws, sym_comment, - STATE(2399), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9382), 25, + ACTIONS(9141), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173248,19 +174676,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159443] = 5, + [160460] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9371), 1, + ACTIONS(9146), 1, anon_sym_POUND_, - ACTIONS(9368), 2, + ACTIONS(10216), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2421), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9374), 25, + ACTIONS(9149), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173286,24 +174714,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159486] = 5, + [160503] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9379), 1, - anon_sym_POUND_, - ACTIONS(10124), 2, + ACTIONS(7614), 31, sym__ws, sym_comment, - STATE(2400), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9382), 25, + 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, @@ -173321,27 +174745,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, - [159529] = 5, + [160540] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9371), 1, - anon_sym_POUND_, - ACTIONS(9368), 2, + ACTIONS(7606), 31, sym__ws, sym_comment, - STATE(2038), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(9374), 25, + 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, @@ -173359,27 +174780,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, - [159572] = 5, + [160577] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10130), 1, - anon_sym_POUND_, - ACTIONS(10127), 2, + ACTIONS(7602), 31, sym__ws, sym_comment, - STATE(2038), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(10133), 25, + 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, @@ -173397,22 +174815,23 @@ 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, - [159615] = 5, + [160614] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10130), 1, + ACTIONS(8631), 1, anon_sym_POUND_, - ACTIONS(10127), 2, + ACTIONS(10219), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2444), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10133), 25, + ACTIONS(8634), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173438,19 +174857,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159658] = 5, + [160657] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9371), 1, + ACTIONS(10225), 1, anon_sym_POUND_, - ACTIONS(9368), 2, + ACTIONS(10222), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2359), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9374), 25, + ACTIONS(10228), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173476,19 +174895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159701] = 5, + [160700] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9363), 1, + ACTIONS(8631), 1, anon_sym_POUND_, - ACTIONS(9360), 2, + ACTIONS(10230), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2383), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(9366), 25, + ACTIONS(8634), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173514,19 +174933,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159744] = 5, + [160743] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10138), 1, + ACTIONS(9163), 1, anon_sym_POUND_, - ACTIONS(10135), 2, + ACTIONS(9160), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10141), 25, + ACTIONS(9166), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173552,19 +174971,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159787] = 5, + [160786] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10146), 1, + ACTIONS(9171), 1, anon_sym_POUND_, - ACTIONS(10143), 2, + ACTIONS(10233), 2, sym__ws, sym_comment, - STATE(2402), 3, + STATE(2413), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10149), 25, + ACTIONS(9174), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173590,19 +175009,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159830] = 5, + [160829] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10146), 1, + ACTIONS(9171), 1, anon_sym_POUND_, - ACTIONS(10151), 2, + ACTIONS(10236), 2, sym__ws, sym_comment, - STATE(2403), 3, + STATE(2391), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10149), 25, + ACTIONS(9174), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173628,19 +175047,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159873] = 5, + [160872] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10138), 1, + ACTIONS(9163), 1, anon_sym_POUND_, - ACTIONS(10135), 2, + ACTIONS(9160), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10141), 25, + ACTIONS(9166), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173666,19 +175085,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159916] = 5, + [160915] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10146), 1, + ACTIONS(9185), 1, anon_sym_POUND_, - ACTIONS(10154), 2, + ACTIONS(9182), 2, sym__ws, sym_comment, - STATE(2404), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10149), 25, + ACTIONS(9188), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173704,19 +175123,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [159959] = 5, + [160958] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10130), 1, + ACTIONS(8631), 1, anon_sym_POUND_, - ACTIONS(10127), 2, + ACTIONS(10239), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2447), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10133), 25, + ACTIONS(8634), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173742,24 +175161,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160002] = 5, + [161001] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10138), 1, - anon_sym_POUND_, - ACTIONS(10135), 2, + ACTIONS(7558), 31, sym__ws, sym_comment, - STATE(2038), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(10141), 25, + 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, @@ -173777,27 +175192,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, - [160045] = 5, + [161038] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10138), 1, - anon_sym_POUND_, - ACTIONS(10135), 2, + ACTIONS(7839), 31, sym__ws, sym_comment, - STATE(2038), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(10141), 25, + 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, @@ -173815,22 +175227,23 @@ 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, - [160088] = 5, + [161075] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10160), 1, + ACTIONS(9185), 1, anon_sym_POUND_, - ACTIONS(10157), 2, + ACTIONS(9182), 2, sym__ws, sym_comment, - STATE(2038), 3, + STATE(2212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10163), 25, + ACTIONS(9188), 25, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -173856,24 +175269,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160131] = 5, + [161118] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10168), 1, - anon_sym_POUND_, - ACTIONS(10165), 2, + ACTIONS(7438), 31, sym__ws, sym_comment, - STATE(2405), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(10171), 25, + 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, @@ -173891,13 +175300,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thereis, anon_sym_never, anon_sym_else, + anon_sym_into, anon_sym_finally, anon_sym_return, anon_sym_initially, - [160174] = 2, + [161155] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7558), 30, + ACTIONS(7771), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -173928,10 +175338,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160210] = 2, + [161191] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7399), 30, + ACTIONS(7666), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -173962,10 +175372,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160246] = 2, + [161227] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7756), 30, + ACTIONS(7425), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -173996,10 +175406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160282] = 2, + [161263] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 30, + ACTIONS(7554), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174030,10 +175440,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160318] = 2, + [161299] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7459), 30, + ACTIONS(7586), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174064,10 +175474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160354] = 2, + [161335] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7503), 30, + ACTIONS(7582), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174098,10 +175508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160390] = 2, + [161371] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7740), 30, + ACTIONS(7783), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174132,10 +175542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160426] = 2, + [161407] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7740), 30, + ACTIONS(7779), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174166,10 +175576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160462] = 2, + [161443] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7409), 30, + ACTIONS(7570), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174200,10 +175610,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160498] = 2, + [161479] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7356), 30, + ACTIONS(7562), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174234,10 +175644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160534] = 2, + [161515] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7726), 30, + ACTIONS(7775), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174268,10 +175678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160570] = 2, + [161551] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7648), 30, + ACTIONS(7446), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174302,10 +175712,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160606] = 2, + [161587] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7675), 30, + ACTIONS(7450), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174336,10 +175746,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160642] = 2, + [161623] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7740), 30, + ACTIONS(7732), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174370,10 +175780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160678] = 2, + [161659] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7748), 30, + ACTIONS(7779), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174404,10 +175814,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160714] = 2, + [161695] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7756), 30, + ACTIONS(7454), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174438,10 +175848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160750] = 2, + [161731] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7439), 30, + ACTIONS(7775), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174472,10 +175882,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160786] = 2, + [161767] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7562), 30, + ACTIONS(7458), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174506,10 +175916,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160822] = 2, + [161803] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7752), 30, + ACTIONS(7771), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174540,10 +175950,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160858] = 2, + [161839] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7360), 30, + ACTIONS(7462), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174574,10 +175984,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160894] = 2, + [161875] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 30, + ACTIONS(7466), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174608,10 +176018,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160930] = 2, + [161911] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7360), 30, + ACTIONS(7767), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174642,10 +176052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [160966] = 2, + [161947] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7718), 30, + ACTIONS(7594), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174676,10 +176086,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161002] = 2, + [161983] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7691), 30, + ACTIONS(7763), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174710,10 +176120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161038] = 2, + [162019] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7511), 30, + ACTIONS(7474), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174744,10 +176154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161074] = 2, + [162055] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 30, + ACTIONS(7478), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174778,10 +176188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161110] = 2, + [162091] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7515), 30, + ACTIONS(7482), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174812,10 +176222,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161146] = 2, + [162127] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7691), 30, + ACTIONS(7759), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174846,10 +176256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161182] = 2, + [162163] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7499), 30, + ACTIONS(7490), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174880,10 +176290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161218] = 2, + [162199] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7483), 30, + ACTIONS(7494), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174914,10 +176324,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161254] = 2, + [162235] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7479), 30, + ACTIONS(7498), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174948,10 +176358,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161290] = 2, + [162271] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7475), 30, + ACTIONS(7502), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -174982,10 +176392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161326] = 2, + [162307] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7687), 30, + ACTIONS(7755), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175016,10 +176426,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161362] = 2, + [162343] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7726), 30, + ACTIONS(7755), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175050,10 +176460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161398] = 2, + [162379] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7511), 30, + ACTIONS(7751), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175084,10 +176494,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161434] = 2, + [162415] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 30, + ACTIONS(7747), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175118,10 +176528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161470] = 2, + [162451] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7463), 30, + ACTIONS(7755), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175152,10 +176562,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161506] = 2, + [162487] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7691), 30, + ACTIONS(7526), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175186,10 +176596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161542] = 2, + [162523] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7526), 30, + ACTIONS(7530), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175220,10 +176630,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161578] = 2, + [162559] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7706), 30, + ACTIONS(7534), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175254,10 +176664,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161614] = 2, + [162595] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10242), 1, + aux_sym_num_lit_token2, + ACTIONS(7419), 29, + 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, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_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, + [162633] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7740), 30, + ACTIONS(7755), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175288,10 +176733,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161650] = 2, + [162669] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7691), 30, + ACTIONS(7630), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175322,7 +176767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161686] = 2, + [162705] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(7538), 30, @@ -175356,10 +176801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161722] = 2, + [162741] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7687), 30, + ACTIONS(7646), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175390,10 +176835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161758] = 2, + [162777] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7679), 30, + ACTIONS(7751), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175424,10 +176869,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161794] = 2, + [162813] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7393), 30, + ACTIONS(7658), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175458,10 +176903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161830] = 2, + [162849] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7659), 30, + ACTIONS(7662), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175492,10 +176937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161866] = 2, + [162885] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7655), 30, + ACTIONS(7574), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175526,10 +176971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161902] = 2, + [162921] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7655), 30, + ACTIONS(7658), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175560,10 +177005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161938] = 2, + [162957] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7622), 30, + ACTIONS(7546), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175594,10 +177039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161974] = 2, + [162993] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7614), 30, + ACTIONS(7522), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175628,10 +177073,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162010] = 2, + [163029] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7655), 30, + ACTIONS(7662), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175662,10 +177107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162046] = 2, + [163065] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7655), 30, + ACTIONS(7550), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175696,10 +177141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162082] = 2, + [163101] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7622), 30, + ACTIONS(7814), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175730,10 +177175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162118] = 2, + [163137] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7614), 30, + ACTIONS(7814), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175764,10 +177209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162154] = 2, + [163173] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7562), 30, + ACTIONS(7810), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175798,10 +177243,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162190] = 2, + [163209] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7606), 30, + ACTIONS(7442), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175832,10 +177277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162226] = 2, + [163245] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7590), 30, + ACTIONS(7806), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175866,10 +177311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162262] = 2, + [163281] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7542), 30, + ACTIONS(7802), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175900,10 +177345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162298] = 2, + [163317] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7582), 30, + ACTIONS(7775), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175934,10 +177379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162334] = 2, + [163353] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7566), 30, + ACTIONS(7594), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -175968,7 +177413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162370] = 2, + [163389] = 2, ACTIONS(47), 1, sym_block_comment, ACTIONS(7566), 30, @@ -176002,10 +177447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162406] = 2, + [163425] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7610), 30, + ACTIONS(7802), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176036,10 +177481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162442] = 2, + [163461] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7574), 30, + ACTIONS(7810), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176070,10 +177515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162478] = 2, + [163497] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7586), 30, + ACTIONS(7578), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176104,10 +177549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162514] = 2, + [163533] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7598), 30, + ACTIONS(7779), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176138,10 +177583,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162550] = 2, + [163569] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7663), 30, + ACTIONS(7506), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176172,10 +177617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162586] = 2, + [163605] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7554), 30, + ACTIONS(7775), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176206,10 +177651,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162622] = 2, + [163641] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7550), 30, + ACTIONS(7590), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176240,10 +177685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162658] = 2, + [163677] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7667), 30, + ACTIONS(7806), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176274,10 +177719,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162694] = 2, + [163713] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7511), 30, + ACTIONS(7688), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176308,10 +177753,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162730] = 2, + [163749] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7507), 30, + ACTIONS(7700), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176342,10 +177787,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162766] = 2, + [163785] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7495), 30, + ACTIONS(7598), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176376,10 +177821,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162802] = 2, + [163821] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7507), 30, + ACTIONS(7802), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176410,10 +177855,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162838] = 2, + [163857] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7495), 30, + ACTIONS(7610), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176444,10 +177889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162874] = 2, + [163893] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7491), 30, + ACTIONS(7802), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176478,10 +177923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162910] = 2, + [163929] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7487), 30, + ACTIONS(7798), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176512,10 +177957,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162946] = 2, + [163965] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7389), 30, + ACTIONS(7618), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176546,10 +177991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162982] = 2, + [164001] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7389), 30, + ACTIONS(7783), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176580,10 +178025,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163018] = 2, + [164037] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7385), 30, + ACTIONS(7622), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176614,10 +178059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163054] = 2, + [164073] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7381), 30, + ACTIONS(7708), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176648,10 +178093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163090] = 2, + [164109] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7368), 30, + ACTIONS(7712), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176682,10 +178127,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163126] = 2, + [164145] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7364), 30, + ACTIONS(7538), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176716,10 +178161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163162] = 2, + [164181] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7405), 30, + ACTIONS(7470), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176750,10 +178195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163198] = 2, + [164217] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7413), 30, + ACTIONS(7712), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176784,10 +178229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163234] = 2, + [164253] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7702), 30, + ACTIONS(7747), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176818,10 +178263,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163270] = 2, + [164289] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7443), 30, + ACTIONS(7650), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176852,10 +178297,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163306] = 2, + [164325] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7451), 30, + ACTIONS(7642), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176886,10 +178331,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163342] = 2, + [164361] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7546), 30, + ACTIONS(7654), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176920,10 +178365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163378] = 2, + [164397] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7570), 30, + ACTIONS(7538), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176954,10 +178399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163414] = 2, + [164433] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7710), 30, + ACTIONS(7638), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -176988,10 +178433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163450] = 2, + [164469] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7594), 30, + ACTIONS(7716), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -177022,10 +178467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163486] = 2, + [164505] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7602), 30, + ACTIONS(7672), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -177056,15 +178501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163522] = 3, + [164541] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10173), 1, - aux_sym_num_lit_token2, - ACTIONS(7350), 29, + ACTIONS(7743), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, @@ -177091,10 +178535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163560] = 2, + [164577] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7714), 30, + ACTIONS(7716), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -177125,10 +178569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163596] = 2, + [164613] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7630), 30, + ACTIONS(7724), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -177159,10 +178603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163632] = 2, + [164649] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7634), 30, + ACTIONS(7692), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -177193,10 +178637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163668] = 2, + [164685] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7638), 30, + ACTIONS(7696), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -177227,10 +178671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163704] = 2, + [164721] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7683), 30, + ACTIONS(7728), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -177261,10 +178705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163740] = 2, + [164757] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7698), 30, + ACTIONS(7486), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -177295,10 +178739,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163776] = 2, + [164793] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7766), 30, + ACTIONS(7779), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -177329,10 +178773,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163812] = 2, + [164829] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7618), 30, + ACTIONS(7626), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -177363,15 +178807,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163848] = 2, + [164865] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7770), 30, + ACTIONS(10140), 1, + anon_sym_COLON_COLON, + ACTIONS(10244), 1, + anon_sym_COLON, + ACTIONS(7429), 27, 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, @@ -177393,17 +178839,16 @@ 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, - [163884] = 3, + [164904] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10177), 2, + ACTIONS(10249), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(10175), 27, + ACTIONS(10247), 27, aux_sym_num_lit_token1, anon_sym_TILDE, anon_sym_SQUOTE, @@ -177431,14 +178876,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [163921] = 4, + [164941] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10179), 1, + ACTIONS(10251), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -177466,14 +178911,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163960] = 4, + [164980] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10182), 1, + ACTIONS(10254), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -177501,14 +178946,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [163999] = 4, + [165019] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10185), 1, + ACTIONS(10257), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -177536,14 +178981,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164038] = 4, + [165058] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10188), 1, + ACTIONS(10260), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -177571,14 +179016,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164077] = 4, + [165097] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10191), 1, + ACTIONS(10263), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -177606,14 +179051,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164116] = 4, + [165136] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10194), 1, + ACTIONS(10266), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -177641,14 +179086,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164155] = 4, + [165175] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10197), 1, + ACTIONS(10269), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -177676,14 +179121,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164194] = 4, + [165214] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10200), 1, + ACTIONS(10272), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -177711,14 +179156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164233] = 4, + [165253] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10203), 1, + ACTIONS(10275), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -177746,14 +179191,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164272] = 4, + [165292] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10206), 1, + ACTIONS(10278), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -177781,14 +179226,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164311] = 4, + [165331] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10209), 1, + ACTIONS(10281), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -177816,14 +179261,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164350] = 4, + [165370] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10212), 1, + ACTIONS(10284), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -177851,14 +179296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164389] = 4, + [165409] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10215), 1, + ACTIONS(10287), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -177886,14 +179331,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164428] = 4, + [165448] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10218), 1, + ACTIONS(10290), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -177921,14 +179366,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164467] = 4, + [165487] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10221), 1, + ACTIONS(10293), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -177956,14 +179401,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164506] = 4, + [165526] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10224), 1, + ACTIONS(10296), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -177991,14 +179436,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164545] = 4, + [165565] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10227), 1, + ACTIONS(10299), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -178026,14 +179471,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164584] = 4, + [165604] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10230), 1, + ACTIONS(10302), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -178061,14 +179506,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164623] = 4, + [165643] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10233), 1, + ACTIONS(10305), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -178096,14 +179541,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164662] = 4, + [165682] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10236), 1, + ACTIONS(10308), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -178131,14 +179576,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164701] = 4, + [165721] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10239), 1, + ACTIONS(10311), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -178166,14 +179611,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164740] = 4, + [165760] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10242), 1, + ACTIONS(10314), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -178201,14 +179646,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164779] = 4, + [165799] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, + ACTIONS(10140), 1, anon_sym_COLON_COLON, - ACTIONS(10245), 1, + ACTIONS(10317), 1, anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(7429), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -178236,17 +179681,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164818] = 4, + [165838] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(9049), 1, - anon_sym_COLON_COLON, - ACTIONS(10248), 1, - anon_sym_COLON, - ACTIONS(7372), 27, + ACTIONS(10320), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -178271,31 +179713,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164857] = 11, + [165872] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2346), 1, + ACTIONS(2979), 1, anon_sym_being, - ACTIONS(10253), 1, + ACTIONS(10324), 1, anon_sym_POUND_, - ACTIONS(10255), 1, + ACTIONS(10326), 1, anon_sym_COLON, - ACTIONS(10257), 1, + ACTIONS(10328), 1, anon_sym_cl, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1249), 1, + STATE(1256), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(10251), 2, + ACTIONS(10322), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 16, + ACTIONS(2981), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -178312,10 +179754,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [164909] = 2, + [165924] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10259), 28, + ACTIONS(2979), 1, + anon_sym_being, + ACTIONS(10324), 1, + anon_sym_POUND_, + ACTIONS(10326), 1, + anon_sym_COLON, + ACTIONS(10328), 1, + anon_sym_cl, + STATE(690), 1, + sym_for_clause_word, + STATE(1262), 1, + aux_sym_for_clause_repeat1, + STATE(1553), 1, + sym__for_part, + ACTIONS(10322), 2, + sym__ws, + sym_comment, + STATE(2750), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(2981), 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, + [165976] = 11, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(2979), 1, + anon_sym_being, + ACTIONS(10324), 1, + anon_sym_POUND_, + ACTIONS(10326), 1, + anon_sym_COLON, + ACTIONS(10328), 1, + anon_sym_cl, + STATE(690), 1, + sym_for_clause_word, + STATE(1258), 1, + aux_sym_for_clause_repeat1, + STATE(1553), 1, + sym__for_part, + ACTIONS(10322), 2, + sym__ws, + sym_comment, + STATE(2750), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(2981), 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, + [166028] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10320), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -178344,31 +179868,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [164943] = 11, + [166062] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2346), 1, + ACTIONS(2979), 1, anon_sym_being, - ACTIONS(10253), 1, + ACTIONS(10324), 1, anon_sym_POUND_, - ACTIONS(10255), 1, + ACTIONS(10326), 1, anon_sym_COLON, - ACTIONS(10257), 1, + ACTIONS(10328), 1, anon_sym_cl, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1256), 1, + STATE(1261), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(10251), 2, + ACTIONS(10322), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 16, + ACTIONS(2981), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -178385,10 +179909,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [164995] = 2, + [166114] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10261), 28, + ACTIONS(10330), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -178417,10 +179941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165029] = 2, + [166148] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10263), 28, + ACTIONS(10320), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -178449,10 +179973,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165063] = 2, + [166182] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10265), 28, + ACTIONS(10332), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -178481,10 +180005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165097] = 2, + [166216] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10267), 28, + ACTIONS(10330), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -178513,10 +180037,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165131] = 2, + [166250] = 11, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(2979), 1, + anon_sym_being, + ACTIONS(10324), 1, + anon_sym_POUND_, + ACTIONS(10326), 1, + anon_sym_COLON, + ACTIONS(10328), 1, + anon_sym_cl, + STATE(690), 1, + sym_for_clause_word, + STATE(1267), 1, + aux_sym_for_clause_repeat1, + STATE(1553), 1, + sym__for_part, + ACTIONS(10322), 2, + sym__ws, + sym_comment, + STATE(2750), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(2981), 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, + [166302] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10269), 28, + ACTIONS(10334), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -178545,10 +180110,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165165] = 2, + [166336] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10271), 28, + ACTIONS(10336), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -178577,10 +180142,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165199] = 2, + [166370] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10273), 28, + ACTIONS(10338), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -178609,10 +180174,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165233] = 2, + [166404] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10275), 28, + ACTIONS(10340), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -178641,10 +180206,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165267] = 2, + [166438] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10275), 28, + ACTIONS(10342), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -178673,10 +180238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165301] = 2, + [166472] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10267), 28, + ACTIONS(10344), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -178705,10 +180270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165335] = 2, + [166506] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10277), 28, + ACTIONS(10346), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -178737,10 +180302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165369] = 2, + [166540] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10275), 28, + ACTIONS(10348), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -178769,10 +180334,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165403] = 2, + [166574] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10279), 28, + ACTIONS(10330), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -178801,10 +180366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165437] = 2, + [166608] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10281), 28, + ACTIONS(10350), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -178833,10 +180398,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165471] = 2, + [166642] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10281), 28, + ACTIONS(10352), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -178865,10 +180430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165505] = 2, + [166676] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10281), 28, + ACTIONS(10354), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -178897,10 +180462,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165539] = 2, + [166710] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10283), 28, + ACTIONS(8412), 1, + aux_sym_num_lit_token1, + ACTIONS(8420), 1, + anon_sym_SQUOTE, + ACTIONS(8428), 1, + anon_sym_SLASH, + ACTIONS(10356), 1, + anon_sym_COMMA, + STATE(2911), 1, + sym__format_token, + STATE(3963), 1, + aux_sym_format_modifiers_repeat1, + STATE(4011), 1, + sym_format_directive_type, + ACTIONS(8418), 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, + [166758] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10338), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -178929,10 +180533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165573] = 2, + [166792] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10285), 28, + ACTIONS(10358), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -178961,31 +180565,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165607] = 11, + [166826] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2346), 1, + ACTIONS(2979), 1, anon_sym_being, - ACTIONS(10253), 1, + ACTIONS(10324), 1, anon_sym_POUND_, - ACTIONS(10255), 1, + ACTIONS(10326), 1, anon_sym_COLON, - ACTIONS(10257), 1, + ACTIONS(10328), 1, anon_sym_cl, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1260), 1, + STATE(1259), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(10251), 2, + ACTIONS(10322), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 16, + ACTIONS(2981), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -179002,72 +180606,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [165659] = 11, + [166878] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2346), 1, - anon_sym_being, - ACTIONS(10253), 1, + ACTIONS(10358), 28, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(10255), 1, anon_sym_COLON, - ACTIONS(10257), 1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - STATE(549), 1, - sym_for_clause_word, - STATE(1254), 1, - aux_sym_for_clause_repeat1, - STATE(1556), 1, - sym__for_part, - ACTIONS(10251), 2, - sym__ws, - sym_comment, - STATE(2726), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(2348), 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, - [165711] = 11, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [166912] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2346), 1, + ACTIONS(2979), 1, anon_sym_being, - ACTIONS(10253), 1, + ACTIONS(10324), 1, anon_sym_POUND_, - ACTIONS(10255), 1, + ACTIONS(10326), 1, anon_sym_COLON, - ACTIONS(10257), 1, + ACTIONS(10328), 1, anon_sym_cl, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1246), 1, + STATE(1264), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(10251), 2, + ACTIONS(10322), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 16, + ACTIONS(2981), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -179084,10 +180679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [165763] = 2, + [166964] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10261), 28, + ACTIONS(10360), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -179116,10 +180711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165797] = 2, + [166998] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10263), 28, + ACTIONS(10362), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -179148,51 +180743,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165831] = 11, + [167032] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2346), 1, - anon_sym_being, - ACTIONS(10253), 1, + ACTIONS(10358), 28, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(10255), 1, anon_sym_COLON, - ACTIONS(10257), 1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - STATE(549), 1, - sym_for_clause_word, - STATE(1257), 1, - aux_sym_for_clause_repeat1, - STATE(1556), 1, - sym__for_part, - ACTIONS(10251), 2, - sym__ws, - sym_comment, - STATE(2726), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(2348), 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, - [165883] = 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, + [167066] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10287), 28, + ACTIONS(10344), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -179221,10 +180807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165917] = 2, + [167100] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10287), 28, + ACTIONS(10364), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -179253,10 +180839,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165951] = 2, + [167134] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10289), 28, + ACTIONS(10334), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -179285,10 +180871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [165985] = 2, + [167168] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10277), 28, + ACTIONS(10360), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -179317,10 +180903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166019] = 2, + [167202] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10291), 28, + ACTIONS(10350), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -179349,10 +180935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166053] = 2, + [167236] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10265), 28, + ACTIONS(10354), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -179381,10 +180967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166087] = 2, + [167270] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10291), 28, + ACTIONS(10366), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -179413,31 +180999,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166121] = 11, + [167304] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2346), 1, + ACTIONS(2979), 1, anon_sym_being, - ACTIONS(10253), 1, + ACTIONS(10324), 1, anon_sym_POUND_, - ACTIONS(10255), 1, + ACTIONS(10326), 1, anon_sym_COLON, - ACTIONS(10257), 1, + ACTIONS(10328), 1, anon_sym_cl, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1264), 1, + STATE(1268), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(10251), 2, + ACTIONS(10322), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 16, + ACTIONS(2981), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -179454,63 +181040,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [166173] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10269), 28, - 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, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [166207] = 11, + [167356] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2346), 1, + ACTIONS(2979), 1, anon_sym_being, - ACTIONS(10253), 1, + ACTIONS(10324), 1, anon_sym_POUND_, - ACTIONS(10255), 1, + ACTIONS(10326), 1, anon_sym_COLON, - ACTIONS(10257), 1, + ACTIONS(10328), 1, anon_sym_cl, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1261), 1, + STATE(1272), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(10251), 2, + ACTIONS(10322), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 16, + ACTIONS(2981), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -179527,10 +181081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [166259] = 2, + [167408] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10291), 28, + ACTIONS(10368), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -179559,42 +181113,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166293] = 2, + [167442] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10263), 28, - sym__ws, - sym_comment, + ACTIONS(2979), 1, + anon_sym_being, + ACTIONS(10324), 1, anon_sym_POUND_, + ACTIONS(10326), 1, anon_sym_COLON, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(10328), 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, - [166327] = 2, + STATE(690), 1, + sym_for_clause_word, + STATE(1282), 1, + aux_sym_for_clause_repeat1, + STATE(1553), 1, + sym__for_part, + ACTIONS(10322), 2, + sym__ws, + sym_comment, + STATE(2750), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(2981), 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, + [167494] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10291), 28, + ACTIONS(10360), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -179623,10 +181186,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166361] = 2, + [167528] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8412), 1, + aux_sym_num_lit_token1, + ACTIONS(8420), 1, + anon_sym_SQUOTE, + ACTIONS(8428), 1, + anon_sym_SLASH, + ACTIONS(10356), 1, + anon_sym_COMMA, + STATE(2911), 1, + sym__format_token, + STATE(3963), 1, + aux_sym_format_modifiers_repeat1, + STATE(4012), 1, + sym_format_directive_type, + ACTIONS(8418), 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, + [167576] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10293), 28, + ACTIONS(10320), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -179655,10 +181257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166395] = 2, + [167610] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10295), 28, + ACTIONS(10370), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -179687,10 +181289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166429] = 2, + [167644] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10297), 28, + ACTIONS(10330), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -179719,10 +181321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166463] = 2, + [167678] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10277), 28, + ACTIONS(10372), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -179751,63 +181353,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166497] = 2, + [167712] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10263), 28, - sym__ws, - sym_comment, + ACTIONS(2979), 1, + anon_sym_being, + ACTIONS(10324), 1, anon_sym_POUND_, + ACTIONS(10326), 1, anon_sym_COLON, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(10328), 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, - [166531] = 11, + STATE(690), 1, + sym_for_clause_word, + STATE(1279), 1, + aux_sym_for_clause_repeat1, + STATE(1553), 1, + sym__for_part, + ACTIONS(10322), 2, + sym__ws, + sym_comment, + STATE(2750), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(2981), 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, + [167764] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2346), 1, + ACTIONS(2979), 1, anon_sym_being, - ACTIONS(10253), 1, + ACTIONS(10324), 1, anon_sym_POUND_, - ACTIONS(10255), 1, + ACTIONS(10326), 1, anon_sym_COLON, - ACTIONS(10257), 1, + ACTIONS(10328), 1, anon_sym_cl, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1262), 1, + STATE(1274), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(10251), 2, + ACTIONS(10322), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 16, + ACTIONS(2981), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -179824,10 +181435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [166583] = 2, + [167816] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10271), 28, + ACTIONS(10374), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -179856,10 +181467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166617] = 2, + [167850] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10287), 28, + ACTIONS(10376), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -179888,70 +181499,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166651] = 9, + [167884] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8343), 1, - aux_sym_num_lit_token1, - ACTIONS(8351), 1, - anon_sym_SQUOTE, - ACTIONS(8359), 1, - anon_sym_SLASH, - ACTIONS(10299), 1, - anon_sym_COMMA, - STATE(2968), 1, - sym__format_token, - STATE(3886), 1, - aux_sym_format_modifiers_repeat1, - STATE(3980), 1, - sym_format_directive_type, - ACTIONS(8349), 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, - [166699] = 11, + ACTIONS(2979), 1, + anon_sym_being, + ACTIONS(10324), 1, + anon_sym_POUND_, + ACTIONS(10326), 1, + anon_sym_COLON, + ACTIONS(10328), 1, + anon_sym_cl, + STATE(690), 1, + sym_for_clause_word, + STATE(1275), 1, + aux_sym_for_clause_repeat1, + STATE(1553), 1, + sym__for_part, + ACTIONS(10322), 2, + sym__ws, + sym_comment, + STATE(2750), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(2981), 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, + [167936] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2346), 1, + ACTIONS(2979), 1, anon_sym_being, - ACTIONS(10253), 1, + ACTIONS(10324), 1, anon_sym_POUND_, - ACTIONS(10255), 1, + ACTIONS(10326), 1, anon_sym_COLON, - ACTIONS(10257), 1, + ACTIONS(10328), 1, anon_sym_cl, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1259), 1, + STATE(1278), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(10251), 2, + ACTIONS(10322), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 16, + ACTIONS(2981), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -179968,10 +181581,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [166751] = 2, + [167988] = 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, + 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, + [168022] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10301), 28, + ACTIONS(10368), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -180000,10 +181645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166785] = 2, + [168056] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10303), 28, + ACTIONS(10380), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -180032,10 +181677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166819] = 2, + [168090] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10301), 28, + ACTIONS(10382), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -180064,10 +181709,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166853] = 2, + [168124] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10305), 28, + ACTIONS(2979), 1, + anon_sym_being, + ACTIONS(10324), 1, + anon_sym_POUND_, + ACTIONS(10326), 1, + anon_sym_COLON, + ACTIONS(10328), 1, + anon_sym_cl, + STATE(690), 1, + sym_for_clause_word, + STATE(1255), 1, + aux_sym_for_clause_repeat1, + STATE(1553), 1, + sym__for_part, + ACTIONS(10322), 2, + sym__ws, + sym_comment, + STATE(2750), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(2981), 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, + [168176] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10364), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -180096,49 +181782,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166887] = 9, + [168210] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8343), 1, - aux_sym_num_lit_token1, - ACTIONS(8351), 1, - anon_sym_SQUOTE, - ACTIONS(8359), 1, - anon_sym_SLASH, - ACTIONS(10299), 1, - anon_sym_COMMA, - STATE(2968), 1, - sym__format_token, - STATE(3886), 1, - aux_sym_format_modifiers_repeat1, - STATE(3983), 1, - sym_format_directive_type, - ACTIONS(8349), 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, - [166935] = 2, + ACTIONS(10384), 28, + 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, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [168244] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10307), 28, + ACTIONS(10336), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -180167,10 +181846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [166969] = 2, + [168278] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10309), 28, + ACTIONS(10334), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -180199,31 +181878,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [167003] = 11, + [168312] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2346), 1, + ACTIONS(10386), 28, + 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, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, + anon_sym_do, + anon_sym_while, + anon_sym_until, + anon_sym_repeat, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [168346] = 11, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(2979), 1, anon_sym_being, - ACTIONS(10253), 1, + ACTIONS(10324), 1, anon_sym_POUND_, - ACTIONS(10255), 1, + ACTIONS(10326), 1, anon_sym_COLON, - ACTIONS(10257), 1, + ACTIONS(10328), 1, anon_sym_cl, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1248), 1, + STATE(1263), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(10251), 2, + ACTIONS(10322), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 16, + ACTIONS(2981), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -180240,31 +181951,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167055] = 11, + [168398] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2346), 1, + ACTIONS(2979), 1, anon_sym_being, - ACTIONS(10253), 1, + ACTIONS(10324), 1, anon_sym_POUND_, - ACTIONS(10255), 1, + ACTIONS(10326), 1, anon_sym_COLON, - ACTIONS(10257), 1, + ACTIONS(10328), 1, anon_sym_cl, - STATE(549), 1, + STATE(690), 1, sym_for_clause_word, - STATE(1247), 1, + STATE(1257), 1, aux_sym_for_clause_repeat1, - STATE(1556), 1, + STATE(1553), 1, sym__for_part, - ACTIONS(10251), 2, + ACTIONS(10322), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 16, + ACTIONS(2981), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -180281,106 +181992,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167107] = 2, + [168450] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10309), 28, - 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, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [167141] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10311), 28, - sym__ws, - sym_comment, + ACTIONS(2979), 1, + anon_sym_being, + ACTIONS(10324), 1, anon_sym_POUND_, + ACTIONS(10326), 1, anon_sym_COLON, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(10328), 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, - [167175] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10313), 28, + STATE(690), 1, + sym_for_clause_word, + STATE(1270), 1, + aux_sym_for_clause_repeat1, + STATE(1553), 1, + sym__for_part, + ACTIONS(10322), 2, 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, - aux_sym_accumulation_verb_token1, - anon_sym_for, - anon_sym_and, - anon_sym_as, - anon_sym_with, - anon_sym_do, - anon_sym_while, - anon_sym_until, - anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [167209] = 2, + STATE(2750), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(2981), 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, + [168502] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10315), 28, + ACTIONS(10388), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -180409,10 +182065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [167243] = 2, + [168536] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10317), 28, + ACTIONS(10388), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -180441,10 +182097,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [167277] = 2, + [168570] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10289), 28, + ACTIONS(10386), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -180473,10 +182129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [167311] = 2, + [168604] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10319), 28, + ACTIONS(10388), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -180505,27 +182161,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [167345] = 9, + [168638] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2346), 1, + ACTIONS(2979), 1, anon_sym_being, - ACTIONS(10253), 1, + ACTIONS(10324), 1, anon_sym_POUND_, - ACTIONS(10255), 1, + ACTIONS(10326), 1, anon_sym_COLON, - ACTIONS(10257), 1, + ACTIONS(10328), 1, anon_sym_cl, - STATE(418), 1, + STATE(430), 1, sym_for_clause_word, - ACTIONS(10321), 2, + ACTIONS(10390), 2, sym__ws, sym_comment, - STATE(2728), 3, + STATE(2753), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(2348), 16, + ACTIONS(2981), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -180542,10 +182198,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167391] = 2, + [168684] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10323), 25, + ACTIONS(10392), 25, aux_sym_num_lit_token1, anon_sym_TILDE, anon_sym_SQUOTE, @@ -180571,43 +182227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [167422] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7312), 1, - anon_sym_being, - ACTIONS(10328), 1, - anon_sym_POUND_, - ACTIONS(10325), 2, - sym__ws, - sym_comment, - STATE(2728), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(7314), 18, - 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, - [167461] = 2, + [168715] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10331), 25, + ACTIONS(10394), 25, aux_sym_num_lit_token1, anon_sym_TILDE, anon_sym_SQUOTE, @@ -180633,53 +182256,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [167492] = 20, - ACTIONS(29), 1, - anon_sym_LPAREN, + [168746] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, - anon_sym_COLON_COLON, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(10335), 1, + ACTIONS(7381), 1, + anon_sym_being, + ACTIONS(10399), 1, anon_sym_POUND_, - ACTIONS(10337), 1, - aux_sym_sym_lit_token1, - ACTIONS(10339), 1, - anon_sym_COMMA, - STATE(1996), 1, - sym_list_lit, - STATE(2010), 1, - sym_unquoting_lit, - STATE(2813), 1, - sym_sym_lit, - STATE(2833), 1, - sym_kwd_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3070), 1, - aux_sym_list_lit_repeat1, - ACTIONS(10333), 2, + ACTIONS(10396), 2, sym__ws, sym_comment, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2737), 3, + STATE(2753), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167558] = 18, + ACTIONS(7383), 18, + 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, + [168785] = 18, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -180688,498 +182298,546 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10343), 1, + ACTIONS(10404), 1, anon_sym_POUND_, - ACTIONS(10345), 1, + ACTIONS(10406), 1, aux_sym_sym_lit_token1, - ACTIONS(10347), 1, + ACTIONS(10408), 1, anon_sym_LBRACE, - ACTIONS(10349), 1, + ACTIONS(10410), 1, anon_sym_POUND_QMARK, - STATE(2852), 1, + STATE(2874), 1, sym__bare_map_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3073), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3097), 1, aux_sym_list_lit_repeat1, - ACTIONS(10341), 2, + ACTIONS(10402), 2, sym__ws, sym_comment, - STATE(2736), 3, + STATE(2763), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2843), 5, + STATE(2876), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [167620] = 20, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4830), 1, + [168847] = 18, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(8006), 1, + ACTIONS(21), 1, + anon_sym_DQUOTE, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10335), 1, + ACTIONS(10404), 1, anon_sym_POUND_, - ACTIONS(10337), 1, + ACTIONS(10406), 1, aux_sym_sym_lit_token1, - ACTIONS(10339), 1, - anon_sym_COMMA, - STATE(1971), 1, - sym_unquoting_lit, - STATE(1972), 1, - sym_list_lit, - STATE(2818), 1, - sym_sym_lit, - STATE(2836), 1, - sym_kwd_lit, - STATE(2867), 1, + ACTIONS(10408), 1, + anon_sym_LBRACE, + ACTIONS(10410), 1, + anon_sym_POUND_QMARK, + STATE(2874), 1, + sym__bare_map_lit, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3097), 1, aux_sym_list_lit_repeat1, - ACTIONS(10351), 2, + ACTIONS(10412), 2, sym__ws, sym_comment, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2741), 3, + STATE(2764), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167686] = 18, + STATE(2869), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [168909] = 18, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10343), 1, + ACTIONS(10404), 1, anon_sym_POUND_, - ACTIONS(10347), 1, + ACTIONS(10408), 1, anon_sym_LBRACE, - ACTIONS(10355), 1, + ACTIONS(10416), 1, aux_sym_sym_lit_token1, - ACTIONS(10357), 1, + ACTIONS(10418), 1, anon_sym_POUND_QMARK, - STATE(2852), 1, + STATE(2874), 1, sym__bare_map_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3072), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3096), 1, aux_sym_list_lit_repeat1, - ACTIONS(10353), 2, + ACTIONS(10414), 2, sym__ws, sym_comment, - STATE(2869), 3, + STATE(2891), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2844), 5, + STATE(2875), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [167748] = 18, - ACTIONS(17), 1, + [168971] = 18, + ACTIONS(47), 1, + sym_block_comment, + 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(47), 1, - sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10343), 1, + ACTIONS(10404), 1, anon_sym_POUND_, - ACTIONS(10345), 1, - aux_sym_sym_lit_token1, - ACTIONS(10347), 1, + ACTIONS(10408), 1, anon_sym_LBRACE, - ACTIONS(10349), 1, + ACTIONS(10416), 1, + aux_sym_sym_lit_token1, + ACTIONS(10418), 1, anon_sym_POUND_QMARK, - STATE(2852), 1, + STATE(2874), 1, sym__bare_map_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3073), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3096), 1, aux_sym_list_lit_repeat1, - ACTIONS(10359), 2, + ACTIONS(10414), 2, sym__ws, sym_comment, - STATE(2735), 3, + STATE(2891), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2851), 5, + STATE(2878), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [167810] = 18, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, + [169033] = 20, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, + anon_sym_COLON_COLON, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10343), 1, + ACTIONS(10422), 1, anon_sym_POUND_, - ACTIONS(10345), 1, + ACTIONS(10424), 1, aux_sym_sym_lit_token1, - ACTIONS(10347), 1, - anon_sym_LBRACE, - ACTIONS(10349), 1, - anon_sym_POUND_QMARK, - STATE(2852), 1, - sym__bare_map_lit, - STATE(2867), 1, + ACTIONS(10426), 1, + anon_sym_COMMA, + STATE(1987), 1, + sym_list_lit, + STATE(2028), 1, + sym_unquoting_lit, + STATE(2839), 1, + sym_sym_lit, + STATE(2842), 1, + sym_kwd_lit, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3073), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10353), 2, + ACTIONS(10420), 2, sym__ws, sym_comment, - STATE(2869), 3, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2904), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2844), 5, - sym_kwd_lit, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [167872] = 18, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, + [169099] = 20, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(4797), 1, + anon_sym_COLON, + ACTIONS(4799), 1, + anon_sym_COLON_COLON, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10343), 1, + ACTIONS(10422), 1, anon_sym_POUND_, - ACTIONS(10345), 1, + ACTIONS(10424), 1, aux_sym_sym_lit_token1, - ACTIONS(10347), 1, - anon_sym_LBRACE, - ACTIONS(10349), 1, - anon_sym_POUND_QMARK, - STATE(2852), 1, - sym__bare_map_lit, - STATE(2867), 1, + ACTIONS(10426), 1, + anon_sym_COMMA, + STATE(2005), 1, + sym_list_lit, + STATE(2006), 1, + sym_unquoting_lit, + STATE(2837), 1, + sym_sym_lit, + STATE(2844), 1, + sym_kwd_lit, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3073), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10353), 2, + ACTIONS(10428), 2, sym__ws, sym_comment, - STATE(2869), 3, + STATE(1780), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2760), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2846), 5, - sym_kwd_lit, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [167934] = 20, + [169165] = 20, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10335), 1, + ACTIONS(10422), 1, anon_sym_POUND_, - ACTIONS(10337), 1, + ACTIONS(10424), 1, aux_sym_sym_lit_token1, - ACTIONS(10339), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - STATE(1968), 1, - sym_unquoting_lit, - STATE(1974), 1, + STATE(2012), 1, sym_list_lit, - STATE(2819), 1, + STATE(2013), 1, + sym_unquoting_lit, + STATE(2856), 1, sym_kwd_lit, - STATE(2835), 1, + STATE(2863), 1, sym_sym_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10361), 2, + ACTIONS(10420), 2, sym__ws, sym_comment, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2907), 3, + STATE(2904), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168000] = 18, + [169231] = 18, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10343), 1, + ACTIONS(10404), 1, anon_sym_POUND_, - ACTIONS(10347), 1, + ACTIONS(10408), 1, anon_sym_LBRACE, - ACTIONS(10355), 1, + ACTIONS(10416), 1, aux_sym_sym_lit_token1, - ACTIONS(10357), 1, + ACTIONS(10418), 1, anon_sym_POUND_QMARK, - STATE(2852), 1, + STATE(2874), 1, sym__bare_map_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3072), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3096), 1, aux_sym_list_lit_repeat1, - ACTIONS(10363), 2, + ACTIONS(10430), 2, sym__ws, sym_comment, - STATE(2733), 3, + STATE(2757), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2851), 5, + STATE(2869), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [168062] = 18, + [169293] = 18, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10343), 1, + ACTIONS(10404), 1, anon_sym_POUND_, - ACTIONS(10347), 1, + ACTIONS(10408), 1, anon_sym_LBRACE, - ACTIONS(10355), 1, + ACTIONS(10416), 1, aux_sym_sym_lit_token1, - ACTIONS(10357), 1, + ACTIONS(10418), 1, anon_sym_POUND_QMARK, - STATE(2852), 1, + STATE(2874), 1, sym__bare_map_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3072), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3096), 1, aux_sym_list_lit_repeat1, - ACTIONS(10365), 2, + ACTIONS(10432), 2, sym__ws, sym_comment, - STATE(2740), 3, + STATE(2756), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2843), 5, + STATE(2876), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [168124] = 18, + [169355] = 18, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4706), 1, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(10404), 1, + anon_sym_POUND_, + ACTIONS(10406), 1, + aux_sym_sym_lit_token1, + ACTIONS(10408), 1, + anon_sym_LBRACE, + ACTIONS(10410), 1, + anon_sym_POUND_QMARK, + STATE(2874), 1, + sym__bare_map_lit, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3097), 1, + aux_sym_list_lit_repeat1, + ACTIONS(10414), 2, + sym__ws, + sym_comment, + STATE(2891), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2875), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [169417] = 18, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(4708), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(4710), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(8006), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10343), 1, + ACTIONS(10404), 1, anon_sym_POUND_, - ACTIONS(10347), 1, - anon_sym_LBRACE, - ACTIONS(10355), 1, + ACTIONS(10406), 1, aux_sym_sym_lit_token1, - ACTIONS(10357), 1, + ACTIONS(10408), 1, + anon_sym_LBRACE, + ACTIONS(10410), 1, anon_sym_POUND_QMARK, - STATE(2852), 1, + STATE(2874), 1, sym__bare_map_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3072), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3097), 1, aux_sym_list_lit_repeat1, - ACTIONS(10353), 2, + ACTIONS(10414), 2, sym__ws, sym_comment, - STATE(2869), 3, + STATE(2891), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2846), 5, + STATE(2878), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [168186] = 20, + [169479] = 20, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, + ACTIONS(4797), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(4799), 1, anon_sym_COLON_COLON, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10335), 1, + ACTIONS(10422), 1, anon_sym_POUND_, - ACTIONS(10337), 1, + ACTIONS(10424), 1, aux_sym_sym_lit_token1, - ACTIONS(10339), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - STATE(1969), 1, - sym_unquoting_lit, - STATE(1999), 1, + STATE(2015), 1, sym_list_lit, - STATE(2821), 1, - sym_kwd_lit, - STATE(2829), 1, + STATE(2027), 1, + sym_unquoting_lit, + STATE(2860), 1, sym_sym_lit, - STATE(2867), 1, + STATE(2861), 1, + sym_kwd_lit, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10361), 2, + ACTIONS(10434), 2, sym__ws, sym_comment, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2907), 3, + STATE(2758), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168252] = 3, + [169545] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7449), 2, - anon_sym_COLON, + ACTIONS(7706), 1, anon_sym_being, - ACTIONS(7447), 21, + ACTIONS(10436), 1, + anon_sym_COLON, + ACTIONS(10438), 1, + anon_sym_COLON_COLON, + ACTIONS(7704), 20, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_cl, anon_sym_in, anon_sym_across, @@ -181197,19 +182855,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168283] = 5, + [169580] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7395), 1, - anon_sym_being, - ACTIONS(10367), 1, + ACTIONS(7738), 2, anon_sym_COLON, - ACTIONS(10369), 1, - anon_sym_COLON_COLON, - ACTIONS(7393), 20, + anon_sym_being, + ACTIONS(7736), 21, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_cl, anon_sym_in, anon_sym_across, @@ -181227,16 +182883,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168318] = 5, + [169611] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7628), 1, + ACTIONS(7431), 1, anon_sym_being, - ACTIONS(10367), 1, + ACTIONS(10436), 1, anon_sym_COLON, - ACTIONS(10369), 1, + ACTIONS(10438), 1, anon_sym_COLON_COLON, - ACTIONS(7626), 20, + ACTIONS(7429), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -181257,16 +182913,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168353] = 5, + [169646] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7374), 1, + ACTIONS(7668), 1, anon_sym_being, - ACTIONS(10367), 1, + ACTIONS(10436), 1, anon_sym_COLON, - ACTIONS(10369), 1, + ACTIONS(10438), 1, anon_sym_COLON_COLON, - ACTIONS(7372), 20, + ACTIONS(7666), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -181287,14 +182943,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168388] = 4, + [169681] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7352), 1, + ACTIONS(7421), 1, anon_sym_being, - ACTIONS(10371), 1, + ACTIONS(10440), 1, aux_sym_num_lit_token2, - ACTIONS(7350), 21, + ACTIONS(7419), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181316,16 +182972,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168421] = 5, + [169714] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7374), 1, + ACTIONS(7431), 1, anon_sym_being, - ACTIONS(10369), 1, + ACTIONS(10438), 1, anon_sym_COLON_COLON, - ACTIONS(10373), 1, + ACTIONS(10442), 1, anon_sym_COLON, - ACTIONS(7372), 20, + ACTIONS(7429), 20, sym__ws, sym_comment, anon_sym_POUND_, @@ -181346,12 +183002,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168456] = 3, + [169749] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7724), 1, + ACTIONS(7640), 1, anon_sym_being, - ACTIONS(7722), 21, + ACTIONS(7638), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181373,12 +183029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168486] = 3, + [169779] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7501), 1, + ACTIONS(7472), 1, anon_sym_being, - ACTIONS(7499), 21, + ACTIONS(7470), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181400,12 +183056,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168516] = 3, + [169809] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7532), 1, + ACTIONS(7604), 1, anon_sym_being, - ACTIONS(7530), 21, + ACTIONS(7602), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181427,12 +183083,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168546] = 3, + [169839] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7521), 1, + ACTIONS(7560), 1, anon_sym_being, - ACTIONS(7519), 21, + ACTIONS(7558), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181454,12 +183110,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168576] = 3, + [169869] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7473), 1, + ACTIONS(7636), 1, anon_sym_being, - ACTIONS(7471), 21, + ACTIONS(7634), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181481,12 +183137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168606] = 3, + [169899] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7473), 1, + ACTIONS(7841), 1, anon_sym_being, - ACTIONS(7471), 21, + ACTIONS(7839), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181508,12 +183164,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168636] = 3, + [169929] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7720), 1, + ACTIONS(7440), 1, anon_sym_being, - ACTIONS(7718), 21, + ACTIONS(7438), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181535,12 +183191,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168666] = 3, + [169959] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7754), 1, + ACTIONS(7652), 1, anon_sym_being, - ACTIONS(7752), 21, + ACTIONS(7650), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181562,12 +183218,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168696] = 3, + [169989] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7469), 1, + ACTIONS(7644), 1, anon_sym_being, - ACTIONS(7467), 21, + ACTIONS(7642), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181589,12 +183245,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168726] = 3, + [170019] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7457), 1, + ACTIONS(7682), 1, anon_sym_being, - ACTIONS(7455), 21, + ACTIONS(7680), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181616,12 +183272,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168756] = 3, + [170049] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7401), 1, + ACTIONS(7628), 1, anon_sym_being, - ACTIONS(7399), 21, + ACTIONS(7626), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181643,12 +183299,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168786] = 3, + [170079] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7580), 1, + ACTIONS(7524), 1, anon_sym_being, - ACTIONS(7578), 21, + ACTIONS(7522), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181670,12 +183326,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168816] = 3, + [170109] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7419), 1, + ACTIONS(7508), 1, anon_sym_being, - ACTIONS(7417), 21, + ACTIONS(7506), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181697,12 +183353,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168846] = 3, + [170139] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7426), 1, + ACTIONS(7608), 1, anon_sym_being, - ACTIONS(7424), 21, + ACTIONS(7606), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181724,12 +183380,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168876] = 3, + [170169] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7434), 1, + ACTIONS(7512), 1, anon_sym_being, - ACTIONS(7432), 21, + ACTIONS(7510), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181751,12 +183407,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168906] = 3, + [170199] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 1, + ACTIONS(7516), 1, anon_sym_being, - ACTIONS(7744), 21, + ACTIONS(7514), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181778,12 +183434,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168936] = 3, + [170229] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7738), 1, + ACTIONS(7520), 1, anon_sym_being, - ACTIONS(7736), 21, + ACTIONS(7518), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181805,12 +183461,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168966] = 3, + [170259] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7673), 1, + ACTIONS(7444), 1, anon_sym_being, - ACTIONS(7671), 21, + ACTIONS(7442), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181832,12 +183488,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168996] = 3, + [170289] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7441), 1, + ACTIONS(7576), 1, anon_sym_being, - ACTIONS(7439), 21, + ACTIONS(7574), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181859,12 +183515,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169026] = 3, + [170319] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7536), 1, + ACTIONS(7544), 1, anon_sym_being, - ACTIONS(7534), 21, + ACTIONS(7542), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181886,12 +183542,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169056] = 3, + [170349] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7430), 1, + ACTIONS(7722), 1, anon_sym_being, - ACTIONS(7428), 21, + ACTIONS(7720), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181913,12 +183569,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169086] = 3, + [170379] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7517), 1, + ACTIONS(7686), 1, anon_sym_being, - ACTIONS(7515), 21, + ACTIONS(7684), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181940,12 +183596,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169116] = 3, + [170409] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7650), 1, + ACTIONS(7616), 1, anon_sym_being, - ACTIONS(7648), 21, + ACTIONS(7614), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181967,12 +183623,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169146] = 3, + [170439] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7485), 1, + ACTIONS(7616), 1, anon_sym_being, - ACTIONS(7483), 21, + ACTIONS(7614), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -181994,12 +183650,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169176] = 3, + [170469] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7481), 1, + ACTIONS(7678), 1, anon_sym_being, - ACTIONS(7479), 21, + ACTIONS(7676), 21, sym__ws, sym_comment, anon_sym_POUND_, @@ -182021,109 +183677,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169206] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7485), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(7483), 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, - [169235] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7580), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(7578), 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, - [169264] = 20, + [170499] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5588), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(10376), 1, + ACTIONS(10445), 1, anon_sym_POUND, - ACTIONS(10378), 1, + ACTIONS(10447), 1, anon_sym_POUND_QMARK, - ACTIONS(10380), 1, + ACTIONS(10449), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(10382), 1, + ACTIONS(10451), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10384), 1, + ACTIONS(10453), 1, anon_sym_SQUOTE, - ACTIONS(10386), 1, + ACTIONS(10455), 1, anon_sym_COMMA_AT, - ACTIONS(10388), 1, + ACTIONS(10457), 1, anon_sym_POUND_PLUS, - ACTIONS(10390), 1, + ACTIONS(10459), 1, anon_sym_POUND_DASH, - ACTIONS(10392), 1, + ACTIONS(10461), 1, anon_sym_POUNDC, - ACTIONS(10394), 1, + ACTIONS(10463), 1, anon_sym_POUNDc, - STATE(1079), 1, + STATE(1026), 1, sym__bare_set_lit, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2849), 1, + STATE(2868), 1, aux_sym_list_lit_repeat1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(1078), 3, + STATE(1027), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169327] = 3, + [170562] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7457), 3, + ACTIONS(7516), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7455), 18, + ACTIONS(7514), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -182142,14 +183746,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [169356] = 3, + [170591] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7469), 3, + ACTIONS(7608), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7467), 18, + ACTIONS(7606), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -182168,14 +183772,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [169385] = 3, + [170620] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7473), 3, + ACTIONS(7560), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7471), 18, + ACTIONS(7558), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -182194,14 +183798,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [169414] = 3, + [170649] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7650), 3, + ACTIONS(7616), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7648), 18, + ACTIONS(7614), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -182220,14 +183824,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [169443] = 3, + [170678] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7430), 3, + ACTIONS(7544), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7428), 18, + ACTIONS(7542), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -182246,57 +183850,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [169472] = 20, + [170707] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2326), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(10396), 1, + ACTIONS(10465), 1, anon_sym_POUND, - ACTIONS(10398), 1, + ACTIONS(10467), 1, anon_sym_POUND_QMARK, - ACTIONS(10400), 1, + ACTIONS(10469), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(10402), 1, + ACTIONS(10471), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10404), 1, + ACTIONS(10473), 1, anon_sym_SQUOTE, - ACTIONS(10406), 1, + ACTIONS(10475), 1, anon_sym_COMMA_AT, - ACTIONS(10408), 1, + ACTIONS(10477), 1, anon_sym_POUND_PLUS, - ACTIONS(10410), 1, + ACTIONS(10479), 1, anon_sym_POUND_DASH, - ACTIONS(10412), 1, + ACTIONS(10481), 1, anon_sym_POUNDC, - ACTIONS(10414), 1, + ACTIONS(10483), 1, anon_sym_POUNDc, - STATE(1956), 1, + STATE(1944), 1, sym__bare_set_lit, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2849), 1, + STATE(2868), 1, aux_sym_list_lit_repeat1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(1957), 3, + STATE(1945), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169535] = 3, + [170770] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7419), 3, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(10485), 1, + anon_sym_POUND, + ACTIONS(10487), 1, + anon_sym_POUND_QMARK, + ACTIONS(10489), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(10491), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(10493), 1, + anon_sym_SQUOTE, + ACTIONS(10495), 1, + anon_sym_COMMA_AT, + ACTIONS(10497), 1, + anon_sym_POUND_PLUS, + ACTIONS(10499), 1, + anon_sym_POUND_DASH, + ACTIONS(10501), 1, + anon_sym_POUNDC, + ACTIONS(10503), 1, + anon_sym_POUNDc, + STATE(2600), 1, + sym__bare_set_lit, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2868), 1, + aux_sym_list_lit_repeat1, + STATE(2892), 1, + sym__metadata_lit, + STATE(2603), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [170833] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7738), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7417), 18, + ACTIONS(7736), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -182315,14 +183962,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [169564] = 3, + [170862] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7426), 3, + ACTIONS(7841), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7424), 18, + ACTIONS(7839), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -182341,14 +183988,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [169593] = 3, + [170891] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7434), 3, + ACTIONS(7616), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7432), 18, + ACTIONS(7614), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -182367,57 +184014,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [169622] = 20, + [170920] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4714), 1, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(10416), 1, + ACTIONS(10505), 1, anon_sym_POUND, - ACTIONS(10418), 1, + ACTIONS(10507), 1, anon_sym_POUND_QMARK, - ACTIONS(10420), 1, + ACTIONS(10509), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(10422), 1, + ACTIONS(10511), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10424), 1, + ACTIONS(10513), 1, anon_sym_SQUOTE, - ACTIONS(10426), 1, + ACTIONS(10515), 1, anon_sym_COMMA_AT, - ACTIONS(10428), 1, + ACTIONS(10517), 1, anon_sym_POUND_PLUS, - ACTIONS(10430), 1, + ACTIONS(10519), 1, anon_sym_POUND_DASH, - ACTIONS(10432), 1, + ACTIONS(10521), 1, anon_sym_POUNDC, - ACTIONS(10434), 1, + ACTIONS(10523), 1, anon_sym_POUNDc, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2849), 1, + STATE(2868), 1, aux_sym_list_lit_repeat1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2963), 1, + STATE(2918), 1, sym__bare_set_lit, - STATE(2957), 3, + STATE(2995), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169685] = 3, + [170983] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7440), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(7438), 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, + [171012] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7441), 3, + ACTIONS(7444), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7439), 18, + ACTIONS(7442), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -182436,14 +184109,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [169714] = 3, + [171041] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7673), 3, + ACTIONS(4977), 1, + anon_sym_LPAREN, + ACTIONS(10525), 1, + anon_sym_POUND, + ACTIONS(10527), 1, + anon_sym_POUND_QMARK, + ACTIONS(10529), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(10531), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(10533), 1, + anon_sym_SQUOTE, + ACTIONS(10535), 1, + anon_sym_COMMA_AT, + ACTIONS(10537), 1, + anon_sym_POUND_PLUS, + ACTIONS(10539), 1, + anon_sym_POUND_DASH, + ACTIONS(10541), 1, + anon_sym_POUNDC, + ACTIONS(10543), 1, + anon_sym_POUNDc, + STATE(1513), 1, + sym__bare_set_lit, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2868), 1, + aux_sym_list_lit_repeat1, + STATE(2892), 1, + sym__metadata_lit, + STATE(1512), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [171104] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7472), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7671), 18, + ACTIONS(7470), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -182462,14 +184178,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [169743] = 3, + [171133] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7473), 3, + ACTIONS(7678), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7471), 18, + ACTIONS(7676), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -182488,57 +184204,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [169772] = 20, - ACTIONS(25), 1, + [171162] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7686), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(7684), 18, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4692), 1, anon_sym_LPAREN, - ACTIONS(10436), 1, - anon_sym_POUND, - ACTIONS(10438), 1, - anon_sym_POUND_QMARK, - ACTIONS(10440), 1, + anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, - ACTIONS(10442), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10444), 1, anon_sym_SQUOTE, - ACTIONS(10446), 1, anon_sym_COMMA_AT, - ACTIONS(10448), 1, anon_sym_POUND_PLUS, - ACTIONS(10450), 1, anon_sym_POUND_DASH, - ACTIONS(10452), 1, anon_sym_POUNDC, - ACTIONS(10454), 1, anon_sym_POUNDc, - STATE(2601), 1, - sym__bare_set_lit, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2849), 1, - aux_sym_list_lit_repeat1, - STATE(2867), 1, - sym__metadata_lit, - STATE(2598), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [169835] = 3, + [171191] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7449), 3, + ACTIONS(7682), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7447), 18, + ACTIONS(7680), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -182557,100 +184256,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [169864] = 20, + [171220] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5436), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(10456), 1, + ACTIONS(10505), 1, anon_sym_POUND, - ACTIONS(10458), 1, + ACTIONS(10521), 1, + anon_sym_POUNDC, + ACTIONS(10523), 1, + anon_sym_POUNDc, + ACTIONS(10545), 1, anon_sym_POUND_QMARK, - ACTIONS(10460), 1, + ACTIONS(10547), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(10462), 1, + ACTIONS(10549), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10464), 1, + ACTIONS(10551), 1, anon_sym_SQUOTE, - ACTIONS(10466), 1, + ACTIONS(10553), 1, anon_sym_COMMA_AT, - ACTIONS(10468), 1, + ACTIONS(10555), 1, anon_sym_POUND_PLUS, - ACTIONS(10470), 1, + ACTIONS(10557), 1, anon_sym_POUND_DASH, - ACTIONS(10472), 1, - anon_sym_POUNDC, - ACTIONS(10474), 1, - anon_sym_POUNDc, - STATE(1683), 1, - sym__bare_set_lit, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2849), 1, + STATE(2868), 1, aux_sym_list_lit_repeat1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(1682), 3, + STATE(2918), 1, + sym__bare_set_lit, + STATE(2995), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169927] = 20, + [171283] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4894), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(10476), 1, + ACTIONS(10559), 1, anon_sym_POUND, - ACTIONS(10478), 1, + ACTIONS(10561), 1, anon_sym_POUND_QMARK, - ACTIONS(10480), 1, + ACTIONS(10563), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(10482), 1, + ACTIONS(10565), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10484), 1, + ACTIONS(10567), 1, anon_sym_SQUOTE, - ACTIONS(10486), 1, + ACTIONS(10569), 1, anon_sym_COMMA_AT, - ACTIONS(10488), 1, + ACTIONS(10571), 1, anon_sym_POUND_PLUS, - ACTIONS(10490), 1, + ACTIONS(10573), 1, anon_sym_POUND_DASH, - ACTIONS(10492), 1, + ACTIONS(10575), 1, anon_sym_POUNDC, - ACTIONS(10494), 1, + ACTIONS(10577), 1, anon_sym_POUNDc, - STATE(1508), 1, + STATE(1154), 1, sym__bare_set_lit, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2849), 1, + STATE(2868), 1, aux_sym_list_lit_repeat1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(1507), 3, + STATE(1153), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169990] = 3, + [171346] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7481), 3, + ACTIONS(7652), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7479), 18, + ACTIONS(7650), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -182669,14 +184368,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170019] = 3, + [171375] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7644), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(7642), 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, + [171404] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7521), 3, + ACTIONS(7640), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7519), 18, + ACTIONS(7638), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -182695,100 +184420,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170048] = 20, + [171433] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4714), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(10396), 1, + ACTIONS(10485), 1, anon_sym_POUND, - ACTIONS(10412), 1, - anon_sym_POUNDC, - ACTIONS(10414), 1, - anon_sym_POUNDc, - ACTIONS(10418), 1, + ACTIONS(10487), 1, anon_sym_POUND_QMARK, - ACTIONS(10496), 1, + ACTIONS(10489), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(10498), 1, + ACTIONS(10501), 1, + anon_sym_POUNDC, + ACTIONS(10503), 1, + anon_sym_POUNDc, + ACTIONS(10579), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10500), 1, + ACTIONS(10581), 1, anon_sym_SQUOTE, - ACTIONS(10502), 1, + ACTIONS(10583), 1, anon_sym_COMMA_AT, - ACTIONS(10504), 1, + ACTIONS(10585), 1, anon_sym_POUND_PLUS, - ACTIONS(10506), 1, + ACTIONS(10587), 1, anon_sym_POUND_DASH, - STATE(1956), 1, + STATE(2600), 1, sym__bare_set_lit, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2849), 1, + STATE(2868), 1, aux_sym_list_lit_repeat1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(1957), 3, + STATE(2603), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170111] = 20, + [171496] = 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(4355), 1, - anon_sym_LPAREN, - ACTIONS(10508), 1, + ACTIONS(10589), 1, anon_sym_POUND, - ACTIONS(10510), 1, + ACTIONS(10591), 1, anon_sym_POUND_QMARK, - ACTIONS(10512), 1, + ACTIONS(10593), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(10514), 1, + ACTIONS(10595), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10516), 1, + ACTIONS(10597), 1, anon_sym_SQUOTE, - ACTIONS(10518), 1, + ACTIONS(10599), 1, anon_sym_COMMA_AT, - ACTIONS(10520), 1, + ACTIONS(10601), 1, anon_sym_POUND_PLUS, - ACTIONS(10522), 1, + ACTIONS(10603), 1, anon_sym_POUND_DASH, - ACTIONS(10524), 1, + ACTIONS(10605), 1, anon_sym_POUNDC, - ACTIONS(10526), 1, + ACTIONS(10607), 1, anon_sym_POUNDc, - STATE(1151), 1, + STATE(1810), 1, sym__bare_set_lit, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2849), 1, + STATE(2868), 1, aux_sym_list_lit_repeat1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(1145), 3, + STATE(1813), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170174] = 3, + [171559] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7508), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(7506), 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, + [171588] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7401), 3, + ACTIONS(7576), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7399), 18, + ACTIONS(7574), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -182807,57 +184558,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170203] = 20, + [171617] = 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(5654), 1, - anon_sym_LPAREN, - ACTIONS(10416), 1, + ACTIONS(10589), 1, anon_sym_POUND, - ACTIONS(10432), 1, - anon_sym_POUNDC, - ACTIONS(10434), 1, - anon_sym_POUNDc, - ACTIONS(10528), 1, + ACTIONS(10591), 1, anon_sym_POUND_QMARK, - ACTIONS(10530), 1, + ACTIONS(10593), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(10532), 1, + ACTIONS(10605), 1, + anon_sym_POUNDC, + ACTIONS(10607), 1, + anon_sym_POUNDc, + ACTIONS(10609), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10534), 1, + ACTIONS(10611), 1, anon_sym_SQUOTE, - ACTIONS(10536), 1, + ACTIONS(10613), 1, anon_sym_COMMA_AT, - ACTIONS(10538), 1, + ACTIONS(10615), 1, anon_sym_POUND_PLUS, - ACTIONS(10540), 1, + ACTIONS(10617), 1, anon_sym_POUND_DASH, - STATE(2815), 1, + STATE(1810), 1, + sym__bare_set_lit, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2849), 1, + STATE(2868), 1, aux_sym_list_lit_repeat1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2963), 1, - sym__bare_set_lit, - STATE(2957), 3, + STATE(1813), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170266] = 3, + [171680] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7536), 3, + ACTIONS(7524), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7534), 18, + ACTIONS(7522), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -182876,40 +184627,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170295] = 3, + [171709] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7517), 3, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(10465), 1, anon_sym_POUND, - anon_sym_COLON, + ACTIONS(10481), 1, + anon_sym_POUNDC, + ACTIONS(10483), 1, + anon_sym_POUNDc, + ACTIONS(10619), 1, anon_sym_POUND_QMARK, - ACTIONS(7515), 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(10621), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(10623), 1, anon_sym_POUND_SQUOTE, + ACTIONS(10625), 1, anon_sym_SQUOTE, + ACTIONS(10627), 1, anon_sym_COMMA_AT, + ACTIONS(10629), 1, anon_sym_POUND_PLUS, + ACTIONS(10631), 1, anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [170324] = 3, + STATE(1944), 1, + sym__bare_set_lit, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2868), 1, + aux_sym_list_lit_repeat1, + STATE(2892), 1, + sym__metadata_lit, + STATE(1945), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [171772] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7532), 3, + ACTIONS(7722), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7530), 18, + ACTIONS(7720), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -182928,14 +184696,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170353] = 3, + [171801] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7720), 3, + ACTIONS(7604), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7718), 18, + ACTIONS(7602), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -182954,14 +184722,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170382] = 3, + [171830] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7738), 3, + ACTIONS(7520), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7736), 18, + ACTIONS(7518), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -182980,57 +184748,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170411] = 20, + [171859] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(10416), 1, + ACTIONS(10633), 1, anon_sym_POUND, - ACTIONS(10432), 1, - anon_sym_POUNDC, - ACTIONS(10434), 1, - anon_sym_POUNDc, - ACTIONS(10542), 1, + ACTIONS(10635), 1, anon_sym_POUND_QMARK, - ACTIONS(10544), 1, + ACTIONS(10637), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(10546), 1, + ACTIONS(10639), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10548), 1, + ACTIONS(10641), 1, anon_sym_SQUOTE, - ACTIONS(10550), 1, + ACTIONS(10643), 1, anon_sym_COMMA_AT, - ACTIONS(10552), 1, + ACTIONS(10645), 1, anon_sym_POUND_PLUS, - ACTIONS(10554), 1, + ACTIONS(10647), 1, anon_sym_POUND_DASH, - STATE(2815), 1, + ACTIONS(10649), 1, + anon_sym_POUNDC, + ACTIONS(10651), 1, + anon_sym_POUNDc, + STATE(1463), 1, + sym__bare_set_lit, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2849), 1, + STATE(2868), 1, aux_sym_list_lit_repeat1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2963), 1, - sym__bare_set_lit, - STATE(2957), 3, + STATE(1464), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170474] = 3, + [171922] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7724), 3, + ACTIONS(7628), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7722), 18, + ACTIONS(7626), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -183049,126 +184817,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170503] = 20, + [171951] = 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(10556), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(10505), 1, anon_sym_POUND, - ACTIONS(10558), 1, + ACTIONS(10521), 1, + anon_sym_POUNDC, + ACTIONS(10523), 1, + anon_sym_POUNDc, + ACTIONS(10619), 1, anon_sym_POUND_QMARK, - ACTIONS(10560), 1, + ACTIONS(10653), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(10562), 1, + ACTIONS(10655), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10564), 1, + ACTIONS(10657), 1, anon_sym_SQUOTE, - ACTIONS(10566), 1, + ACTIONS(10659), 1, anon_sym_COMMA_AT, - ACTIONS(10568), 1, + ACTIONS(10661), 1, anon_sym_POUND_PLUS, - ACTIONS(10570), 1, + ACTIONS(10663), 1, anon_sym_POUND_DASH, - ACTIONS(10572), 1, - anon_sym_POUNDC, - ACTIONS(10574), 1, - anon_sym_POUNDc, - STATE(1845), 1, - sym__bare_set_lit, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2849), 1, + STATE(2868), 1, aux_sym_list_lit_repeat1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(1846), 3, + STATE(2918), 1, + sym__bare_set_lit, + STATE(2995), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170566] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7746), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(7744), 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, - [170595] = 20, + [172014] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4786), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(10576), 1, + ACTIONS(10665), 1, anon_sym_POUND, - ACTIONS(10578), 1, + ACTIONS(10667), 1, anon_sym_POUND_QMARK, - ACTIONS(10580), 1, + ACTIONS(10669), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(10582), 1, + ACTIONS(10671), 1, anon_sym_POUND_SQUOTE, - ACTIONS(10584), 1, + ACTIONS(10673), 1, anon_sym_SQUOTE, - ACTIONS(10586), 1, + ACTIONS(10675), 1, anon_sym_COMMA_AT, - ACTIONS(10588), 1, + ACTIONS(10677), 1, anon_sym_POUND_PLUS, - ACTIONS(10590), 1, + ACTIONS(10679), 1, anon_sym_POUND_DASH, - ACTIONS(10592), 1, + ACTIONS(10681), 1, anon_sym_POUNDC, - ACTIONS(10594), 1, + ACTIONS(10683), 1, anon_sym_POUNDc, - STATE(1297), 1, + STATE(1706), 1, sym__bare_set_lit, - STATE(2815), 1, + STATE(2840), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2858), 1, sym_old_meta_lit, - STATE(2849), 1, + STATE(2868), 1, aux_sym_list_lit_repeat1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(1298), 3, + STATE(1705), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170658] = 3, + [172077] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7754), 3, + ACTIONS(7512), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7752), 18, + ACTIONS(7510), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -183187,57 +184929,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170687] = 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(10556), 1, - anon_sym_POUND, - ACTIONS(10558), 1, - anon_sym_POUND_QMARK, - ACTIONS(10560), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(10572), 1, - anon_sym_POUNDC, - ACTIONS(10574), 1, - anon_sym_POUNDc, - ACTIONS(10596), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(10598), 1, - anon_sym_SQUOTE, - ACTIONS(10600), 1, - anon_sym_COMMA_AT, - ACTIONS(10602), 1, - anon_sym_POUND_PLUS, - ACTIONS(10604), 1, - anon_sym_POUND_DASH, - STATE(1845), 1, - sym__bare_set_lit, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2849), 1, - aux_sym_list_lit_repeat1, - STATE(2867), 1, - sym__metadata_lit, - STATE(1846), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [170750] = 3, + [172106] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7501), 3, + ACTIONS(7636), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(7499), 18, + ACTIONS(7634), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -183256,164 +184955,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170779] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + [172135] = 15, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(10436), 1, - anon_sym_POUND, - ACTIONS(10438), 1, - anon_sym_POUND_QMARK, - ACTIONS(10440), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(10452), 1, - anon_sym_POUNDC, - ACTIONS(10454), 1, - anon_sym_POUNDc, - ACTIONS(10606), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(10608), 1, - anon_sym_SQUOTE, - ACTIONS(10610), 1, - anon_sym_COMMA_AT, - ACTIONS(10612), 1, - anon_sym_POUND_PLUS, - ACTIONS(10614), 1, - anon_sym_POUND_DASH, - STATE(2601), 1, - sym__bare_set_lit, - STATE(2815), 1, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(10426), 1, + anon_sym_COMMA, + ACTIONS(10687), 1, + anon_sym_POUND_, + STATE(2009), 1, + sym_list_lit, + STATE(2011), 1, + sym_unquoting_lit, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, sym_meta_lit, - STATE(2816), 1, + STATE(2915), 1, sym_old_meta_lit, - STATE(2849), 1, + STATE(3089), 1, aux_sym_list_lit_repeat1, - STATE(2867), 1, - sym__metadata_lit, - STATE(2598), 3, + ACTIONS(10685), 2, + sym__ws, + sym_comment, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [170842] = 15, + STATE(2849), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [172186] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10339), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - ACTIONS(10618), 1, + ACTIONS(10687), 1, anon_sym_POUND_, - STATE(1976), 1, + STATE(1991), 1, sym_unquoting_lit, - STATE(1978), 1, + STATE(1992), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10616), 2, + ACTIONS(10689), 2, sym__ws, sym_comment, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2834), 3, + STATE(3075), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170893] = 15, + [172237] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10339), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - ACTIONS(10618), 1, + ACTIONS(10687), 1, anon_sym_POUND_, - STATE(1977), 1, - sym_list_lit, - STATE(1979), 1, + STATE(1988), 1, sym_unquoting_lit, - STATE(2867), 1, + STATE(1989), 1, + sym_list_lit, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10620), 2, + ACTIONS(10691), 2, sym__ws, sym_comment, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3050), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [170944] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10624), 1, - anon_sym_POUND_, - ACTIONS(10622), 2, - sym__ws, - sym_comment, - ACTIONS(10626), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - STATE(2820), 3, + STATE(2843), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10628), 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, - [170977] = 6, + [172288] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10624), 1, + ACTIONS(10695), 1, anon_sym_POUND_, - ACTIONS(10630), 2, + ACTIONS(10693), 2, sym__ws, sym_comment, - ACTIONS(10632), 2, + ACTIONS(10697), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - STATE(2817), 3, + STATE(2851), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10634), 11, + ACTIONS(10699), 11, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -183425,386 +185090,376 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171010] = 6, + [172321] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10624), 1, - anon_sym_POUND_, - ACTIONS(10636), 2, - sym__ws, - sym_comment, - ACTIONS(10638), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - STATE(2828), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(10640), 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, - [171043] = 15, + ACTIONS(2957), 1, + aux_sym_sym_lit_token1, + ACTIONS(10703), 1, + aux_sym_for_clause_word_token1, + STATE(1933), 1, + sym_sym_lit, + ACTIONS(10701), 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, + [172352] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10339), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - ACTIONS(10618), 1, + ACTIONS(10687), 1, anon_sym_POUND_, - STATE(1993), 1, + STATE(1985), 1, sym_list_lit, - STATE(2009), 1, + STATE(1990), 1, sym_unquoting_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10642), 2, + ACTIONS(10705), 2, sym__ws, sym_comment, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2825), 3, + STATE(2853), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171094] = 15, + [172403] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10339), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - ACTIONS(10618), 1, + ACTIONS(10687), 1, anon_sym_POUND_, - STATE(1989), 1, + STATE(1998), 1, sym_list_lit, - STATE(2011), 1, + STATE(1999), 1, sym_unquoting_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10644), 2, + ACTIONS(10689), 2, sym__ws, sym_comment, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2827), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [171145] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10624), 1, - anon_sym_POUND_, - ACTIONS(10636), 2, - sym__ws, - sym_comment, - ACTIONS(10646), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - STATE(2828), 3, + STATE(3075), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(10648), 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, - [171178] = 15, + [172454] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10339), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - ACTIONS(10618), 1, + ACTIONS(10687), 1, anon_sym_POUND_, - STATE(1997), 1, - sym_unquoting_lit, - STATE(2003), 1, + STATE(2007), 1, sym_list_lit, - STATE(2867), 1, + STATE(2008), 1, + sym_unquoting_lit, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10650), 2, + ACTIONS(10707), 2, sym__ws, sym_comment, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2824), 3, + STATE(2845), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171229] = 15, + [172505] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10339), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - ACTIONS(10618), 1, + ACTIONS(10687), 1, anon_sym_POUND_, - STATE(1991), 1, + STATE(2029), 1, sym_list_lit, - STATE(1992), 1, + STATE(2030), 1, sym_unquoting_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10620), 2, + ACTIONS(10689), 2, sym__ws, sym_comment, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3050), 3, + STATE(3075), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171280] = 11, + [172556] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10652), 1, + ACTIONS(10709), 1, aux_sym_accumulation_verb_token1, - ACTIONS(10656), 1, + ACTIONS(10713), 1, anon_sym_and, - ACTIONS(10658), 1, + ACTIONS(10715), 1, anon_sym_with, - ACTIONS(10660), 1, + ACTIONS(10717), 1, anon_sym_do, - ACTIONS(10664), 1, + ACTIONS(10721), 1, anon_sym_repeat, - ACTIONS(10668), 1, + ACTIONS(10725), 1, anon_sym_else, - ACTIONS(10654), 2, + ACTIONS(10711), 2, anon_sym_for, anon_sym_as, - ACTIONS(10662), 2, + ACTIONS(10719), 2, anon_sym_while, anon_sym_until, - ACTIONS(10670), 3, + ACTIONS(10727), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - ACTIONS(10666), 6, + ACTIONS(10723), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - [171323] = 15, + [172599] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10729), 1, + aux_sym_sym_lit_token1, + ACTIONS(10733), 1, + aux_sym_for_clause_word_token1, + STATE(2780), 1, + sym_kwd_symbol, + ACTIONS(10731), 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, + [172630] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10339), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - ACTIONS(10618), 1, + ACTIONS(10687), 1, anon_sym_POUND_, - STATE(1986), 1, + STATE(1994), 1, sym_unquoting_lit, STATE(2000), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10620), 2, + ACTIONS(10689), 2, sym__ws, sym_comment, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3050), 3, + STATE(3075), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171374] = 15, + [172681] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10339), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - ACTIONS(10618), 1, + ACTIONS(10687), 1, anon_sym_POUND_, - STATE(2001), 1, + STATE(2031), 1, sym_list_lit, - STATE(2004), 1, + STATE(2032), 1, sym_unquoting_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10620), 2, + ACTIONS(10689), 2, sym__ws, sym_comment, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3050), 3, + STATE(3075), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171425] = 5, + [172732] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2324), 1, - aux_sym_sym_lit_token1, - ACTIONS(10674), 1, - aux_sym_for_clause_word_token1, - STATE(1905), 1, - sym_sym_lit, - ACTIONS(10672), 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, - [171456] = 15, - ACTIONS(29), 1, + ACTIONS(10695), 1, + anon_sym_POUND_, + ACTIONS(10735), 2, + sym__ws, + sym_comment, + ACTIONS(10737), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(2852), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10739), 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, + [172765] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(10339), 1, - anon_sym_COMMA, - ACTIONS(10618), 1, + ACTIONS(10695), 1, anon_sym_POUND_, - STATE(1984), 1, - sym_list_lit, - STATE(1990), 1, - sym_unquoting_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3070), 1, - aux_sym_list_lit_repeat1, - ACTIONS(10620), 2, + ACTIONS(10735), 2, sym__ws, sym_comment, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(3050), 3, + ACTIONS(10741), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(2852), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171507] = 6, + ACTIONS(10743), 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, + [172798] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10679), 1, + ACTIONS(10748), 1, anon_sym_POUND_, - ACTIONS(7312), 2, + ACTIONS(7381), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(10676), 2, + ACTIONS(10745), 2, sym__ws, sym_comment, - STATE(2828), 3, + STATE(2852), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(7314), 11, + ACTIONS(7383), 11, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -183816,365 +185471,398 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171540] = 15, + [172831] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10339), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - ACTIONS(10618), 1, + ACTIONS(10687), 1, anon_sym_POUND_, - STATE(2005), 1, + STATE(1995), 1, sym_list_lit, - STATE(2015), 1, + STATE(1996), 1, sym_unquoting_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10682), 2, + ACTIONS(10689), 2, sym__ws, sym_comment, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2822), 3, + STATE(3075), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171591] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10684), 1, - aux_sym_sym_lit_token1, - ACTIONS(10688), 1, - aux_sym_for_clause_word_token1, - STATE(2771), 1, - sym_kwd_symbol, - ACTIONS(10686), 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, - [171622] = 14, + [172882] = 14, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10339), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - ACTIONS(10618), 1, + ACTIONS(10687), 1, anon_sym_POUND_, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10690), 2, + ACTIONS(10751), 2, sym__ws, sym_comment, - STATE(2012), 2, + STATE(2024), 2, sym_list_lit, sym_unquoting_lit, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2832), 3, + STATE(2859), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171671] = 14, + [172931] = 11, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10753), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(10757), 1, + anon_sym_and, + ACTIONS(10759), 1, + anon_sym_with, + ACTIONS(10761), 1, + anon_sym_do, + ACTIONS(10765), 1, + anon_sym_repeat, + ACTIONS(10769), 1, + anon_sym_else, + ACTIONS(10755), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(10763), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(10771), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + ACTIONS(10767), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + [172974] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10339), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - ACTIONS(10618), 1, + ACTIONS(10687), 1, anon_sym_POUND_, - STATE(2867), 1, + STATE(2033), 1, + sym_list_lit, + STATE(2035), 1, + sym_unquoting_lit, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10620), 2, + ACTIONS(10773), 2, sym__ws, sym_comment, - STATE(2016), 2, - sym_list_lit, - sym_unquoting_lit, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3050), 3, + STATE(2857), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171720] = 15, + [173025] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10339), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - ACTIONS(10618), 1, + ACTIONS(10687), 1, anon_sym_POUND_, - STATE(1970), 1, + STATE(2003), 1, sym_unquoting_lit, - STATE(1982), 1, + STATE(2004), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10692), 2, + ACTIONS(10689), 2, sym__ws, sym_comment, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2814), 3, + STATE(3075), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171771] = 15, + [173076] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10695), 1, + anon_sym_POUND_, + ACTIONS(10775), 2, + sym__ws, + sym_comment, + ACTIONS(10777), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(2850), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10779), 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, + [173109] = 14, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10339), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - ACTIONS(10618), 1, + ACTIONS(10687), 1, anon_sym_POUND_, - STATE(1981), 1, - sym_list_lit, - STATE(1985), 1, - sym_unquoting_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10620), 2, + ACTIONS(10689), 2, sym__ws, sym_comment, - STATE(1793), 3, + STATE(2016), 2, + sym_list_lit, + sym_unquoting_lit, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3050), 3, + STATE(3075), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171822] = 15, + [173158] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10339), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - ACTIONS(10618), 1, + ACTIONS(10687), 1, anon_sym_POUND_, - STATE(2002), 1, + STATE(2025), 1, sym_unquoting_lit, - STATE(2008), 1, + STATE(2026), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10694), 2, + ACTIONS(10781), 2, sym__ws, sym_comment, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2837), 3, + STATE(2838), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171873] = 15, + [173209] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10339), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - ACTIONS(10618), 1, + ACTIONS(10687), 1, anon_sym_POUND_, - STATE(1975), 1, + STATE(1997), 1, sym_unquoting_lit, - STATE(1980), 1, + STATE(2034), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10696), 2, + ACTIONS(10783), 2, sym__ws, sym_comment, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2838), 3, + STATE(2848), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171924] = 15, + [173260] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10339), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - ACTIONS(10618), 1, + ACTIONS(10687), 1, anon_sym_POUND_, - STATE(1994), 1, - sym_list_lit, - STATE(1998), 1, + STATE(2001), 1, sym_unquoting_lit, - STATE(2867), 1, + STATE(2002), 1, + sym_list_lit, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10620), 2, + ACTIONS(10689), 2, sym__ws, sym_comment, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3050), 3, + STATE(3075), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171975] = 15, + [173311] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10339), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - ACTIONS(10618), 1, + ACTIONS(10687), 1, anon_sym_POUND_, - STATE(1967), 1, + STATE(2036), 1, sym_list_lit, - STATE(1973), 1, + STATE(2037), 1, sym_unquoting_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10620), 2, + ACTIONS(10785), 2, sym__ws, sym_comment, - STATE(1793), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(3050), 3, + STATE(2862), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172026] = 5, + [173362] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10698), 1, + ACTIONS(10787), 1, anon_sym_COLON, - ACTIONS(10700), 1, + ACTIONS(10789), 1, anon_sym_COLON_COLON, - ACTIONS(7628), 2, + ACTIONS(7706), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(7626), 14, + ACTIONS(7704), 14, sym__ws, sym_comment, anon_sym_POUND_, @@ -184189,17 +185877,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [172056] = 5, + [173392] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10698), 1, + ACTIONS(10787), 1, anon_sym_COLON, - ACTIONS(10700), 1, + ACTIONS(10789), 1, anon_sym_COLON_COLON, - ACTIONS(7374), 2, + ACTIONS(7431), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(7372), 14, + ACTIONS(7429), 14, sym__ws, sym_comment, anon_sym_POUND_, @@ -184214,17 +185902,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [172086] = 5, + [173422] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10698), 1, + ACTIONS(10787), 1, anon_sym_COLON, - ACTIONS(10700), 1, + ACTIONS(10789), 1, anon_sym_COLON_COLON, - ACTIONS(7395), 2, + ACTIONS(7668), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(7393), 14, + ACTIONS(7666), 14, sym__ws, sym_comment, anon_sym_POUND_, @@ -184239,13 +185927,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [172116] = 3, + [173452] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10704), 2, + ACTIONS(10793), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(10702), 15, + ACTIONS(10791), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -184261,20 +185949,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [172141] = 3, + [173477] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10708), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(10706), 15, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(10797), 1, anon_sym_CARET, + ACTIONS(10800), 1, anon_sym_POUND_CARET, + STATE(2840), 1, + sym_meta_lit, + STATE(2858), 1, + sym_old_meta_lit, + STATE(2868), 1, + aux_sym_list_lit_repeat1, + STATE(2892), 1, + sym__metadata_lit, + ACTIONS(10795), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(10803), 9, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, @@ -184283,13 +185977,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [172166] = 3, + [173514] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10712), 2, + ACTIONS(10807), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(10710), 15, + ACTIONS(10805), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -184305,20 +185999,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [172191] = 3, + [173539] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10731), 1, + anon_sym_being, + ACTIONS(10733), 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, + [173564] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10701), 1, + anon_sym_being, + ACTIONS(10703), 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, + [173589] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10716), 2, + ACTIONS(10809), 1, + aux_sym_num_lit_token2, + ACTIONS(7421), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(10714), 15, + ACTIONS(7419), 14, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, @@ -184327,13 +186066,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [172216] = 3, + [173616] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10720), 2, + ACTIONS(10813), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(10718), 15, + ACTIONS(10811), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -184349,21 +186088,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [172241] = 4, + [173641] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10722), 1, - aux_sym_num_lit_token2, - ACTIONS(7352), 2, + ACTIONS(10817), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(7350), 14, + ACTIONS(10815), 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, @@ -184372,48 +186110,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [172268] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10672), 1, - anon_sym_being, - ACTIONS(10674), 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, - [172293] = 9, + [173666] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10726), 1, - anon_sym_CARET, - ACTIONS(10729), 1, - anon_sym_POUND_CARET, - STATE(2815), 1, - sym_meta_lit, - STATE(2816), 1, - sym_old_meta_lit, - STATE(2849), 1, - aux_sym_list_lit_repeat1, - STATE(2867), 1, - sym__metadata_lit, - ACTIONS(10724), 2, + ACTIONS(10821), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(10732), 9, + ACTIONS(10819), 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, @@ -184422,35 +186132,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [172330] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10686), 1, - anon_sym_being, - ACTIONS(10688), 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, - [172355] = 3, + [173691] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10736), 2, + ACTIONS(10825), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(10734), 15, + ACTIONS(10823), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -184466,13 +186154,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [172380] = 3, + [173716] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10740), 2, + ACTIONS(10829), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(10738), 15, + ACTIONS(10827), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -184488,13 +186176,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [172405] = 3, + [173741] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10744), 2, + ACTIONS(10833), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(10742), 15, + ACTIONS(10831), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -184510,691 +186198,466 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [172430] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10746), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(10748), 1, - anon_sym_with, - ACTIONS(10750), 1, - anon_sym_do, - ACTIONS(10754), 1, - anon_sym_repeat, - ACTIONS(10758), 1, - anon_sym_else, - ACTIONS(10752), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(10760), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - ACTIONS(10756), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - [172466] = 14, + [173766] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5588), 1, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(7264), 1, + ACTIONS(7297), 1, aux_sym_char_lit_token1, - ACTIONS(7266), 1, + ACTIONS(7299), 1, anon_sym_LBRACE, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10762), 1, + ACTIONS(10835), 1, aux_sym__form_token1, - STATE(1088), 1, - sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(2989), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(2927), 1, + sym_list_lit, + STATE(3003), 1, sym_array_dimension, - STATE(3062), 1, + STATE(3087), 1, aux_sym_list_lit_repeat1, - STATE(1015), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [172511] = 14, + [173811] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5436), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(7240), 1, + ACTIONS(7273), 1, aux_sym_char_lit_token1, - ACTIONS(7242), 1, + ACTIONS(7275), 1, anon_sym_LBRACE, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10764), 1, + ACTIONS(10837), 1, aux_sym__form_token1, - STATE(1686), 1, + STATE(1943), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3006), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3009), 1, sym_array_dimension, - STATE(3065), 1, + STATE(3076), 1, aux_sym_list_lit_repeat1, - STATE(1650), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [172556] = 14, - ACTIONS(29), 1, - anon_sym_LPAREN, + [173856] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7280), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(7285), 1, aux_sym_char_lit_token1, - ACTIONS(7282), 1, + ACTIONS(7287), 1, anon_sym_LBRACE, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10766), 1, + ACTIONS(10839), 1, aux_sym__form_token1, - STATE(1843), 1, + STATE(2593), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3011), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3025), 1, sym_array_dimension, - STATE(3070), 1, + STATE(3084), 1, aux_sym_list_lit_repeat1, - STATE(1793), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [172601] = 14, + [173901] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2326), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(7204), 1, + ACTIONS(7261), 1, aux_sym_char_lit_token1, - ACTIONS(7206), 1, + ACTIONS(7263), 1, anon_sym_LBRACE, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10768), 1, + ACTIONS(10841), 1, aux_sym__form_token1, - STATE(1953), 1, + STATE(1461), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(2976), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3039), 1, sym_array_dimension, - STATE(3051), 1, + STATE(3073), 1, aux_sym_list_lit_repeat1, - STATE(1926), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [172646] = 14, + [173946] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4714), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(7204), 1, + ACTIONS(7325), 1, aux_sym_char_lit_token1, - ACTIONS(7206), 1, + ACTIONS(7327), 1, anon_sym_LBRACE, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10770), 1, + ACTIONS(10843), 1, aux_sym__form_token1, - STATE(1953), 1, + STATE(1024), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3022), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3049), 1, sym_array_dimension, - STATE(3033), 1, + STATE(3058), 1, aux_sym_list_lit_repeat1, - STATE(1926), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [172691] = 14, + [173991] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(7292), 1, + ACTIONS(7369), 1, aux_sym_char_lit_token1, - ACTIONS(7294), 1, + ACTIONS(7371), 1, anon_sym_LBRACE, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10772), 1, + ACTIONS(10845), 1, aux_sym__form_token1, - STATE(2602), 1, + STATE(1709), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3002), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3030), 1, sym_array_dimension, - STATE(3028), 1, + STATE(3078), 1, aux_sym_list_lit_repeat1, - STATE(2536), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [172736] = 14, + [174036] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4355), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(7216), 1, + ACTIONS(7313), 1, aux_sym_char_lit_token1, - ACTIONS(7218), 1, + ACTIONS(7315), 1, anon_sym_LBRACE, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10774), 1, + ACTIONS(10847), 1, aux_sym__form_token1, - STATE(1169), 1, + STATE(1156), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(2974), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3018), 1, sym_array_dimension, - STATE(3040), 1, + STATE(3091), 1, aux_sym_list_lit_repeat1, - STATE(1135), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [172781] = 14, + [174081] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(7228), 1, + ACTIONS(7297), 1, aux_sym_char_lit_token1, - ACTIONS(7230), 1, + ACTIONS(7299), 1, anon_sym_LBRACE, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10776), 1, + ACTIONS(10849), 1, aux_sym__form_token1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(2935), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(2927), 1, sym_list_lit, - STATE(2997), 1, + STATE(3031), 1, sym_array_dimension, - STATE(3068), 1, + STATE(3059), 1, aux_sym_list_lit_repeat1, - STATE(2918), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [172826] = 14, + [174126] = 14, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(7192), 1, + ACTIONS(7353), 1, aux_sym_char_lit_token1, - ACTIONS(7194), 1, + ACTIONS(7355), 1, anon_sym_LBRACE, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10778), 1, + ACTIONS(10851), 1, aux_sym__form_token1, - STATE(1295), 1, + STATE(1804), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3025), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3016), 1, sym_array_dimension, - STATE(3056), 1, + STATE(3089), 1, aux_sym_list_lit_repeat1, - STATE(1320), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [172871] = 14, + [174171] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5654), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(7228), 1, + ACTIONS(7297), 1, aux_sym_char_lit_token1, - ACTIONS(7230), 1, + ACTIONS(7299), 1, anon_sym_LBRACE, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10780), 1, + ACTIONS(10853), 1, aux_sym__form_token1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(2935), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(2927), 1, sym_list_lit, - STATE(2996), 1, + STATE(3001), 1, sym_array_dimension, - STATE(3029), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - STATE(2918), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [172916] = 14, + [174216] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4714), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(7228), 1, + ACTIONS(7337), 1, aux_sym_char_lit_token1, - ACTIONS(7230), 1, + ACTIONS(7339), 1, anon_sym_LBRACE, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10782), 1, + ACTIONS(10855), 1, aux_sym__form_token1, - STATE(2867), 1, + STATE(1514), 1, + sym_list_lit, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(2935), 1, - sym_list_lit, - STATE(3012), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3027), 1, sym_array_dimension, - STATE(3035), 1, + STATE(3077), 1, aux_sym_list_lit_repeat1, - STATE(2918), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [172961] = 14, + [174261] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4894), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(7252), 1, + ACTIONS(7273), 1, aux_sym_char_lit_token1, - ACTIONS(7254), 1, + ACTIONS(7275), 1, anon_sym_LBRACE, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10784), 1, + ACTIONS(10857), 1, aux_sym__form_token1, - STATE(1509), 1, + STATE(1943), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(2990), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3014), 1, sym_array_dimension, - STATE(3063), 1, + STATE(3083), 1, aux_sym_list_lit_repeat1, - STATE(1489), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [173006] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10786), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(10788), 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, - [173028] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10793), 1, - anon_sym_POUND_, - ACTIONS(10790), 2, - sym__ws, - sym_comment, - STATE(2868), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(7314), 8, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - anon_sym_POUNDC, - anon_sym_POUNDc, - [173054] = 6, + [174306] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7312), 1, + ACTIONS(7381), 1, anon_sym_COLON, - ACTIONS(10799), 1, + ACTIONS(10862), 1, anon_sym_POUND_, - ACTIONS(10796), 2, + ACTIONS(10859), 2, sym__ws, sym_comment, - STATE(2869), 3, + STATE(2891), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(7314), 7, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - [173082] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10802), 1, - aux_sym_num_lit_token2, - ACTIONS(7352), 2, - anon_sym_COLON, - aux_sym_sym_lit_token1, - ACTIONS(7350), 11, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - [173106] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7608), 1, - anon_sym_COLON, - ACTIONS(7606), 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, - [173127] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7657), 1, - anon_sym_COLON, - ACTIONS(7655), 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, - [173148] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7497), 1, - anon_sym_COLON, - ACTIONS(7495), 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, - [173169] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7509), 1, - anon_sym_COLON, - ACTIONS(7507), 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, - [173190] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7370), 1, - anon_sym_COLON, - ACTIONS(7368), 12, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(7383), 7, anon_sym_COLON_COLON, anon_sym_DQUOTE, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - anon_sym_COMMA, - [173211] = 3, + [174334] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7768), 1, - anon_sym_COLON, - ACTIONS(7766), 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, + ACTIONS(10865), 2, + anon_sym_POUND, anon_sym_POUND_QMARK, - anon_sym_COMMA, - [173232] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7620), 1, - anon_sym_COLON, - ACTIONS(7618), 12, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, + ACTIONS(10867), 12, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - [173253] = 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, + [174356] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7700), 1, + ACTIONS(10869), 1, + aux_sym_num_lit_token2, + ACTIONS(7421), 2, anon_sym_COLON, - ACTIONS(7698), 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, - [173274] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7544), 1, - anon_sym_COLON, - ACTIONS(7542), 12, + ACTIONS(7419), 11, sym__ws, sym_comment, anon_sym_POUND_, anon_sym_COLON_COLON, anon_sym_DQUOTE, - aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173295] = 3, + [174380] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7540), 1, - anon_sym_COLON, - ACTIONS(7538), 12, - sym__ws, - sym_comment, + ACTIONS(10874), 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, - [173316] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7552), 1, - anon_sym_COLON, - ACTIONS(7550), 12, + ACTIONS(10871), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, + STATE(2894), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7383), 8, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - anon_sym_COMMA, - [173337] = 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + [174406] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7528), 1, + ACTIONS(7816), 1, anon_sym_COLON, - ACTIONS(7526), 12, + ACTIONS(7814), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185207,12 +186670,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173358] = 3, + [174427] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7556), 1, + ACTIONS(7773), 1, anon_sym_COLON, - ACTIONS(7554), 12, + ACTIONS(7771), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185225,12 +186688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173379] = 3, + [174448] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7465), 1, + ACTIONS(7668), 1, anon_sym_COLON, - ACTIONS(7463), 12, + ACTIONS(7666), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185243,12 +186706,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173400] = 3, + [174469] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7685), 1, + ACTIONS(7674), 1, anon_sym_COLON, - ACTIONS(7683), 12, + ACTIONS(7672), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185261,12 +186724,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173421] = 3, + [174490] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7513), 1, + ACTIONS(7540), 1, anon_sym_COLON, - ACTIONS(7511), 12, + ACTIONS(7538), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185279,12 +186742,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173442] = 3, + [174511] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7640), 1, + ACTIONS(7656), 1, anon_sym_COLON, - ACTIONS(7638), 12, + ACTIONS(7654), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185297,12 +186760,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173463] = 3, + [174532] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7636), 1, + ACTIONS(7540), 1, anon_sym_COLON, - ACTIONS(7634), 12, + ACTIONS(7538), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185315,12 +186778,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173484] = 3, + [174553] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7560), 1, + ACTIONS(7624), 1, anon_sym_COLON, - ACTIONS(7558), 12, + ACTIONS(7622), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185333,12 +186796,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173505] = 3, + [174574] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7632), 1, + ACTIONS(10879), 2, anon_sym_COLON, - ACTIONS(7630), 12, + anon_sym_AT, + ACTIONS(10877), 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, + [174595] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7381), 1, + anon_sym_COLON, + ACTIONS(10884), 1, + anon_sym_POUND_, + ACTIONS(10881), 2, + sym__ws, + sym_comment, + STATE(2904), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7383), 6, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_COMMA, + [174622] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7612), 1, + anon_sym_COLON, + ACTIONS(7610), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185351,12 +186853,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173526] = 3, + [174643] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7604), 1, + ACTIONS(7600), 1, anon_sym_COLON, - ACTIONS(7602), 12, + ACTIONS(7598), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185369,12 +186871,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173547] = 3, + [174664] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7477), 1, + ACTIONS(10889), 1, + anon_sym_POUND_, + ACTIONS(10887), 2, + sym__ws, + sym_comment, + STATE(2913), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10699), 7, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + anon_sym_POUNDC, + anon_sym_POUNDc, + [174689] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7592), 1, anon_sym_COLON, - ACTIONS(7475), 12, + ACTIONS(7590), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185387,12 +186909,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173568] = 3, + [174710] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7513), 1, + ACTIONS(7757), 1, anon_sym_COLON, - ACTIONS(7511), 12, + ACTIONS(7755), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185405,12 +186927,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173589] = 3, + [174731] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7564), 1, + ACTIONS(7580), 1, anon_sym_COLON, - ACTIONS(7562), 12, + ACTIONS(7578), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185423,12 +186945,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173610] = 3, + [174752] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7596), 1, + ACTIONS(10897), 1, + anon_sym_STAR, + ACTIONS(10893), 2, anon_sym_COLON, - ACTIONS(7594), 12, + anon_sym_AT, + ACTIONS(10895), 4, + anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(10891), 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, + [174777] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7568), 1, + anon_sym_COLON, + ACTIONS(7566), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185441,12 +186983,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173631] = 3, + [174798] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7572), 1, + ACTIONS(10889), 1, + anon_sym_POUND_, + ACTIONS(10899), 2, + sym__ws, + sym_comment, + STATE(2894), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10743), 7, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + anon_sym_POUNDC, + anon_sym_POUNDc, + [174823] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10889), 1, + anon_sym_POUND_, + ACTIONS(10899), 2, + sym__ws, + sym_comment, + STATE(2894), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10739), 7, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + anon_sym_POUNDC, + anon_sym_POUNDc, + [174848] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10889), 1, + anon_sym_POUND_, + ACTIONS(10901), 2, + sym__ws, + sym_comment, + STATE(2914), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10779), 7, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + anon_sym_POUNDC, + anon_sym_POUNDc, + [174873] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7753), 1, anon_sym_COLON, - ACTIONS(7570), 12, + ACTIONS(7751), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185459,12 +187061,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173652] = 3, + [174894] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7564), 1, + ACTIONS(7777), 1, anon_sym_COLON, - ACTIONS(7562), 12, + ACTIONS(7775), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185477,7 +187079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173673] = 3, + [174915] = 3, ACTIONS(47), 1, sym_block_comment, ACTIONS(7548), 1, @@ -185495,12 +187097,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173694] = 3, + [174936] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7757), 1, + anon_sym_COLON, + ACTIONS(7755), 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, + [174957] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10905), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(10903), 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, + [174978] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7411), 1, + ACTIONS(7816), 1, anon_sym_COLON, - ACTIONS(7409), 12, + ACTIONS(7814), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185513,12 +187151,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173715] = 3, + [174999] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7453), 1, + ACTIONS(7812), 1, anon_sym_COLON, - ACTIONS(7451), 12, + ACTIONS(7810), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185531,12 +187169,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173736] = 3, + [175020] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7445), 1, + ACTIONS(7808), 1, anon_sym_COLON, - ACTIONS(7443), 12, + ACTIONS(7806), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185549,12 +187187,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173757] = 3, + [175041] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7395), 1, + ACTIONS(7804), 1, anon_sym_COLON, - ACTIONS(7393), 12, + ACTIONS(7802), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185567,12 +187205,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173778] = 3, + [175062] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7568), 1, + ACTIONS(7804), 1, anon_sym_COLON, - ACTIONS(7566), 12, + ACTIONS(7802), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185585,12 +187223,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173799] = 3, + [175083] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7568), 1, + ACTIONS(7812), 1, anon_sym_COLON, - ACTIONS(7566), 12, + ACTIONS(7810), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185603,12 +187241,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173820] = 3, + [175104] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7584), 1, + ACTIONS(7540), 1, anon_sym_COLON, - ACTIONS(7582), 12, + ACTIONS(7538), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185621,12 +187259,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173841] = 3, + [175125] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7592), 1, + ACTIONS(7536), 1, anon_sym_COLON, - ACTIONS(7590), 12, + ACTIONS(7534), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185639,33 +187277,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173862] = 6, + [175146] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7312), 1, + ACTIONS(7808), 1, anon_sym_COLON, - ACTIONS(10807), 1, + ACTIONS(7806), 12, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(10804), 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, + [175167] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7804), 1, + anon_sym_COLON, + ACTIONS(7802), 12, sym__ws, sym_comment, - STATE(2907), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(7314), 6, + anon_sym_POUND_, anon_sym_COLON_COLON, + anon_sym_DQUOTE, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, anon_sym_COMMA, - [173889] = 3, + [175188] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7612), 1, + ACTIONS(7532), 1, anon_sym_COLON, - ACTIONS(7610), 12, + ACTIONS(7530), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185678,12 +187331,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173910] = 3, + [175209] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7712), 1, + ACTIONS(7528), 1, anon_sym_COLON, - ACTIONS(7710), 12, + ACTIONS(7526), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185696,12 +187349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173931] = 3, + [175230] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7616), 1, + ACTIONS(7804), 1, anon_sym_COLON, - ACTIONS(7614), 12, + ACTIONS(7802), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185714,12 +187367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173952] = 3, + [175251] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7415), 1, + ACTIONS(7800), 1, anon_sym_COLON, - ACTIONS(7413), 12, + ACTIONS(7798), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185732,12 +187385,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173973] = 3, + [175272] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7509), 1, + ACTIONS(7785), 1, anon_sym_COLON, - ACTIONS(7507), 12, + ACTIONS(7783), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185750,12 +187403,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173994] = 3, + [175293] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 1, + ACTIONS(7698), 1, anon_sym_COLON, - ACTIONS(7622), 12, + ACTIONS(7696), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185768,12 +187421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174015] = 3, + [175314] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7505), 1, + ACTIONS(7504), 1, anon_sym_COLON, - ACTIONS(7503), 12, + ACTIONS(7502), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185786,12 +187439,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174036] = 3, + [175335] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7657), 1, + ACTIONS(7781), 1, anon_sym_COLON, - ACTIONS(7655), 12, + ACTIONS(7779), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185804,12 +187457,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174057] = 3, + [175356] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7657), 1, + ACTIONS(7777), 1, anon_sym_COLON, - ACTIONS(7655), 12, + ACTIONS(7775), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185822,12 +187475,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174078] = 3, + [175377] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7616), 1, + ACTIONS(7500), 1, anon_sym_COLON, - ACTIONS(7614), 12, + ACTIONS(7498), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185840,12 +187493,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174099] = 3, + [175398] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7461), 1, + ACTIONS(7496), 1, anon_sym_COLON, - ACTIONS(7459), 12, + ACTIONS(7494), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185858,32 +187511,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174120] = 5, + [175419] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(7781), 1, + anon_sym_COLON, + ACTIONS(7779), 12, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(10810), 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, + [175440] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7492), 1, + anon_sym_COLON, + ACTIONS(7490), 12, sym__ws, sym_comment, - STATE(2954), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(10634), 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, - [174145] = 3, + anon_sym_COMMA, + [175461] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7497), 1, + ACTIONS(7488), 1, anon_sym_COLON, - ACTIONS(7495), 12, + ACTIONS(7486), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185896,12 +187565,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174166] = 3, + [175482] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7624), 1, + ACTIONS(7734), 1, anon_sym_COLON, - ACTIONS(7622), 12, + ACTIONS(7732), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185914,12 +187583,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174187] = 3, + [175503] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7576), 1, + ACTIONS(7749), 1, anon_sym_COLON, - ACTIONS(7574), 12, + ACTIONS(7747), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185932,32 +187601,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174208] = 5, + [175524] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(7694), 1, + anon_sym_COLON, + ACTIONS(7692), 12, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(10814), 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, + [175545] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7785), 1, + anon_sym_COLON, + ACTIONS(7783), 12, sym__ws, sym_comment, - STATE(2950), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(10628), 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, - [174233] = 3, + anon_sym_COMMA, + [175566] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7484), 1, + anon_sym_COLON, + ACTIONS(7482), 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, + [175587] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7480), 1, + anon_sym_COLON, + ACTIONS(7478), 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, + [175608] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7657), 1, + ACTIONS(7781), 1, anon_sym_COLON, - ACTIONS(7655), 12, + ACTIONS(7779), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185970,12 +187691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174254] = 3, + [175629] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7661), 1, + ACTIONS(7777), 1, anon_sym_COLON, - ACTIONS(7659), 12, + ACTIONS(7775), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -185988,12 +187709,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174275] = 3, + [175650] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7677), 1, + ACTIONS(7781), 1, anon_sym_COLON, - ACTIONS(7675), 12, + ACTIONS(7779), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186006,12 +187727,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174296] = 3, + [175671] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7681), 1, + ACTIONS(7476), 1, anon_sym_COLON, - ACTIONS(7679), 12, + ACTIONS(7474), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186024,12 +187745,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174317] = 3, + [175692] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7689), 1, + ACTIONS(7468), 1, anon_sym_COLON, - ACTIONS(7687), 12, + ACTIONS(7466), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186042,12 +187763,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174338] = 3, + [175713] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7493), 1, + ACTIONS(7464), 1, anon_sym_COLON, - ACTIONS(7491), 12, + ACTIONS(7462), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186060,12 +187781,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174359] = 3, + [175734] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7366), 1, + ACTIONS(7460), 1, anon_sym_COLON, - ACTIONS(7364), 12, + ACTIONS(7458), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186078,12 +187799,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174380] = 3, + [175755] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7407), 1, + ACTIONS(7456), 1, anon_sym_COLON, - ACTIONS(7405), 12, + ACTIONS(7454), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186096,12 +187817,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174401] = 3, + [175776] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7588), 1, + ACTIONS(7777), 1, anon_sym_COLON, - ACTIONS(7586), 12, + ACTIONS(7775), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186114,12 +187835,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174422] = 3, + [175797] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7693), 1, + ACTIONS(7773), 1, anon_sym_COLON, - ACTIONS(7691), 12, + ACTIONS(7771), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186132,12 +187853,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174443] = 3, + [175818] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 1, + ACTIONS(7452), 1, anon_sym_COLON, - ACTIONS(7706), 12, + ACTIONS(7450), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186150,12 +187871,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174464] = 3, + [175839] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7513), 1, + ACTIONS(7769), 1, anon_sym_COLON, - ACTIONS(7511), 12, + ACTIONS(7767), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186168,12 +187889,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174485] = 3, + [175860] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7693), 1, + ACTIONS(7448), 1, anon_sym_COLON, - ACTIONS(7691), 12, + ACTIONS(7446), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186186,12 +187907,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174506] = 3, + [175881] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 1, + ACTIONS(7564), 1, anon_sym_COLON, - ACTIONS(7706), 12, + ACTIONS(7562), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186204,30 +187925,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174527] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10818), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(10816), 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, - [174548] = 3, + [175902] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7728), 1, + ACTIONS(7572), 1, anon_sym_COLON, - ACTIONS(7726), 12, + ACTIONS(7570), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186240,12 +187943,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174569] = 3, + [175923] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7772), 1, + ACTIONS(7620), 1, anon_sym_COLON, - ACTIONS(7770), 12, + ACTIONS(7618), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186258,12 +187961,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174590] = 3, + [175944] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7689), 1, + ACTIONS(7588), 1, anon_sym_COLON, - ACTIONS(7687), 12, + ACTIONS(7586), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186276,12 +187979,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174611] = 3, + [175965] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7693), 1, + ACTIONS(7556), 1, anon_sym_COLON, - ACTIONS(7691), 12, + ACTIONS(7554), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186294,12 +187997,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174632] = 3, + [175986] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7489), 1, + ACTIONS(7427), 1, anon_sym_COLON, - ACTIONS(7487), 12, + ACTIONS(7425), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186312,12 +188015,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174653] = 3, + [176007] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7600), 1, + ACTIONS(7596), 1, anon_sym_COLON, - ACTIONS(7598), 12, + ACTIONS(7594), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186330,12 +188033,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174674] = 3, + [176028] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 1, + ACTIONS(7765), 1, anon_sym_COLON, - ACTIONS(7706), 12, + ACTIONS(7763), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186348,12 +188051,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174695] = 3, + [176049] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7693), 1, + ACTIONS(7596), 1, anon_sym_COLON, - ACTIONS(7691), 12, + ACTIONS(7594), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186366,12 +188069,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174716] = 3, + [176070] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7387), 1, + ACTIONS(7632), 1, anon_sym_COLON, - ACTIONS(7385), 12, + ACTIONS(7630), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186384,12 +188087,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174737] = 3, + [176091] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7362), 1, + ACTIONS(7648), 1, anon_sym_COLON, - ACTIONS(7360), 12, + ACTIONS(7646), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186402,12 +188105,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174758] = 3, + [176112] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7708), 1, + ACTIONS(7660), 1, anon_sym_COLON, - ACTIONS(7706), 12, + ACTIONS(7658), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186420,32 +188123,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174779] = 5, + [176133] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(10820), 2, + ACTIONS(7664), 1, + anon_sym_COLON, + ACTIONS(7662), 12, sym__ws, sym_comment, - STATE(2868), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(10648), 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, - [174804] = 3, + anon_sym_COMMA, + [176154] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7728), 1, + ACTIONS(7761), 1, anon_sym_COLON, - ACTIONS(7726), 12, + ACTIONS(7759), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186458,30 +188159,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174825] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10824), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(10822), 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, - [174846] = 3, + [176175] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7358), 1, + ACTIONS(7757), 1, anon_sym_COLON, - ACTIONS(7356), 12, + ACTIONS(7755), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186494,32 +188177,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174867] = 5, + [176196] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(10820), 2, + ACTIONS(7660), 1, + anon_sym_COLON, + ACTIONS(7658), 12, sym__ws, sym_comment, - STATE(2868), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(10640), 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, - [174892] = 3, + anon_sym_COMMA, + [176217] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 1, + ACTIONS(7664), 1, anon_sym_COLON, - ACTIONS(7740), 12, + ACTIONS(7662), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186532,12 +188213,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174913] = 3, + [176238] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 1, + ACTIONS(7690), 1, anon_sym_COLON, - ACTIONS(7740), 12, + ACTIONS(7688), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186550,12 +188231,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174934] = 3, + [176259] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7665), 1, + ACTIONS(7702), 1, anon_sym_COLON, - ACTIONS(7663), 12, + ACTIONS(7700), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186568,12 +188249,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174955] = 3, + [176280] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7704), 1, + ACTIONS(7710), 1, anon_sym_COLON, - ACTIONS(7702), 12, + ACTIONS(7708), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186586,12 +188267,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174976] = 3, + [176301] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 1, + ACTIONS(7714), 1, anon_sym_COLON, - ACTIONS(7748), 12, + ACTIONS(7712), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186604,12 +188285,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [174997] = 3, + [176322] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7362), 1, + ACTIONS(7757), 1, anon_sym_COLON, - ACTIONS(7360), 12, + ACTIONS(7755), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186622,12 +188303,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175018] = 3, + [176343] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7758), 1, + ACTIONS(7753), 1, anon_sym_COLON, - ACTIONS(7756), 12, + ACTIONS(7751), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186640,12 +188321,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175039] = 3, + [176364] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7750), 1, + ACTIONS(7714), 1, anon_sym_COLON, - ACTIONS(7748), 12, + ACTIONS(7712), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186658,12 +188339,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175060] = 3, + [176385] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7669), 1, + ACTIONS(7718), 1, anon_sym_COLON, - ACTIONS(7667), 12, + ACTIONS(7716), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186676,12 +188357,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175081] = 3, + [176406] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7391), 1, + ACTIONS(7718), 1, anon_sym_COLON, - ACTIONS(7389), 12, + ACTIONS(7716), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186694,12 +188375,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175102] = 3, + [176427] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7391), 1, + ACTIONS(7726), 1, anon_sym_COLON, - ACTIONS(7389), 12, + ACTIONS(7724), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186712,12 +188393,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175123] = 3, + [176448] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7383), 1, + ACTIONS(7730), 1, anon_sym_COLON, - ACTIONS(7381), 12, + ACTIONS(7728), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186730,12 +188411,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175144] = 3, + [176469] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7742), 1, + ACTIONS(7584), 1, anon_sym_COLON, - ACTIONS(7740), 12, + ACTIONS(7582), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186748,32 +188429,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175165] = 5, + [176490] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10832), 1, - anon_sym_STAR, - ACTIONS(10828), 2, + ACTIONS(7745), 1, anon_sym_COLON, - anon_sym_AT, - ACTIONS(10830), 4, - anon_sym_TILDE, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(10826), 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, - [175190] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7742), 1, - anon_sym_COLON, - ACTIONS(7740), 12, + ACTIONS(7743), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186786,12 +188447,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175211] = 3, + [176511] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7716), 1, + ACTIONS(7749), 1, anon_sym_COLON, - ACTIONS(7714), 12, + ACTIONS(7747), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186804,12 +188465,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175232] = 3, + [176532] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7758), 1, + ACTIONS(7552), 1, anon_sym_COLON, - ACTIONS(7756), 12, + ACTIONS(7550), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -186822,12 +188483,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [175253] = 3, + [176553] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10834), 1, + ACTIONS(10907), 1, aux_sym_num_lit_token2, - ACTIONS(7350), 11, + ACTIONS(7419), 11, sym__ws, sym_comment, anon_sym_POUND_, @@ -186839,1163 +188500,1254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_POUNDC, anon_sym_POUNDc, - [175273] = 8, + [176573] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1232), 1, - sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3040), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(2961), 1, + sym_list_lit, + STATE(3059), 1, aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(10909), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1135), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [175302] = 10, + [176602] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - STATE(1194), 1, - sym_list_lit, - STATE(2867), 1, + ACTIONS(10911), 1, + aux_sym_num_lit_token1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3040), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3107), 1, aux_sym_list_lit_repeat1, - STATE(1135), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [175335] = 8, + ACTIONS(5161), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(1686), 2, + sym_num_lit, + sym_complex_num_lit, + [176635] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(1952), 1, - sym_list_lit, - STATE(2867), 1, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(10913), 1, + aux_sym_num_lit_token1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, sym_old_meta_lit, - STATE(2923), 1, + STATE(3104), 1, + aux_sym_list_lit_repeat1, + ACTIONS(2728), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(1473), 2, + sym_num_lit, + sym_complex_num_lit, + [176668] = 8, + ACTIONS(47), 1, + sym_block_comment, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, sym_meta_lit, - STATE(3051), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(2928), 1, + sym_list_lit, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(10909), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1926), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [175364] = 10, + [176697] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2326), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - STATE(1941), 1, - sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3051), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(2932), 1, + sym_list_lit, + STATE(3060), 1, aux_sym_list_lit_repeat1, - STATE(1926), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [175397] = 8, + [176730] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1890), 1, - sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3051), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(2961), 1, + sym_list_lit, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(10909), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1926), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [175426] = 8, + [176759] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10838), 1, - anon_sym_CARET, - ACTIONS(10841), 1, - anon_sym_POUND_CARET, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(2978), 1, - aux_sym_list_lit_repeat1, - ACTIONS(10732), 5, + ACTIONS(5803), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - anon_sym_POUNDC, - anon_sym_POUNDc, - [175455] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10844), 1, - aux_sym_num_lit_token1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3385), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(2932), 1, + sym_list_lit, + STATE(3087), 1, aux_sym_list_lit_repeat1, - ACTIONS(285), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(2566), 2, - sym_num_lit, - sym_complex_num_lit, - [175488] = 8, + STATE(2936), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [176792] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1842), 1, - sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(2961), 1, + sym_list_lit, + STATE(3087), 1, aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(10909), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1793), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [175517] = 10, + [176821] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10846), 1, + ACTIONS(10915), 1, aux_sym_num_lit_token1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3388), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3103), 1, aux_sym_list_lit_repeat1, - ACTIONS(2356), 2, + ACTIONS(272), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1935), 2, + STATE(1050), 2, sym_num_lit, sym_complex_num_lit, - [175550] = 10, + [176854] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(10917), 1, + anon_sym_COLON, + ACTIONS(10919), 1, + anon_sym_COLON_COLON, + ACTIONS(7429), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(10848), 1, - aux_sym_num_lit_token1, - STATE(2867), 1, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + [176875] = 8, + ACTIONS(47), 1, + sym_block_comment, + STATE(1942), 1, + sym_list_lit, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3238), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3076), 1, aux_sym_list_lit_repeat1, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(1855), 2, - sym_num_lit, - sym_complex_num_lit, - [175583] = 8, + ACTIONS(10909), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [176904] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1808), 1, + STATE(1178), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3091), 1, aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(10909), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1793), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [175612] = 10, + [176933] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10850), 1, - aux_sym_num_lit_token1, - STATE(2867), 1, + STATE(1940), 1, + sym_list_lit, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3322), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3076), 1, aux_sym_list_lit_repeat1, - ACTIONS(4920), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(1495), 2, - sym_num_lit, - sym_complex_num_lit, - [175645] = 8, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [176966] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1294), 1, + STATE(1942), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3056), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3083), 1, aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(10909), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1320), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [175674] = 8, + [176995] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10917), 1, + anon_sym_COLON, + ACTIONS(10919), 1, + anon_sym_COLON_COLON, + ACTIONS(7666), 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, + [177016] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1510), 1, + STATE(1925), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3063), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3076), 1, aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(10909), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1489), 3, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [175703] = 8, + [177045] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(1191), 1, - sym_list_lit, - STATE(2867), 1, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(10921), 1, + aux_sym_num_lit_token1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3040), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3102), 1, aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(209), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(1143), 2, + sym_num_lit, + sym_complex_num_lit, + [177078] = 10, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(2959), 1, + anon_sym_LPAREN, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1135), 3, + STATE(1940), 1, + sym_list_lit, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3083), 1, + aux_sym_list_lit_repeat1, + STATE(1967), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [175732] = 8, + [177111] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(2867), 1, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(10923), 1, + aux_sym_num_lit_token1, + STATE(2892), 1, sym__metadata_lit, - STATE(2900), 1, - sym_list_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3029), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3105), 1, aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(2633), 2, + sym_num_lit, + sym_complex_num_lit, + [177144] = 10, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(2918), 3, + STATE(1800), 1, + sym_list_lit, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, + aux_sym_list_lit_repeat1, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [175761] = 10, + [177177] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10917), 1, + anon_sym_COLON, + ACTIONS(10919), 1, + anon_sym_COLON_COLON, + ACTIONS(7704), 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, + [177198] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5588), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - STATE(1092), 1, + STATE(1159), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3062), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3091), 1, aux_sym_list_lit_repeat1, - STATE(1015), 3, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [175794] = 10, + [177231] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4894), 1, - anon_sym_LPAREN, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - STATE(1512), 1, + STATE(1157), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3063), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3091), 1, aux_sym_list_lit_repeat1, - STATE(1489), 3, + ACTIONS(10909), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1192), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [175827] = 10, + [177260] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10852), 1, + ACTIONS(10925), 1, aux_sym_num_lit_token1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3385), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3108), 1, aux_sym_list_lit_repeat1, - ACTIONS(285), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(2566), 2, + STATE(2901), 2, sym_num_lit, sym_complex_num_lit, - [175860] = 10, + [177293] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + STATE(1925), 1, + sym_list_lit, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3083), 1, + aux_sym_list_lit_repeat1, + ACTIONS(10909), 3, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - ACTIONS(10854), 1, + anon_sym_LPAREN, + STATE(1967), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [177322] = 10, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(10927), 1, aux_sym_num_lit_token1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3304), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3101), 1, aux_sym_list_lit_repeat1, - ACTIONS(861), 2, + ACTIONS(5003), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1211), 2, + STATE(1503), 2, sym_num_lit, sym_complex_num_lit, - [175893] = 8, + [177355] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1534), 1, + STATE(2589), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3063), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(10909), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1489), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [175922] = 8, + [177384] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2867), 1, - sym__metadata_lit, - STATE(2900), 1, + STATE(1831), 1, sym_list_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, sym_meta_lit, - STATE(3068), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(10909), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2918), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [175951] = 8, + [177413] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(1013), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + STATE(2587), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, sym_old_meta_lit, - STATE(2923), 1, + STATE(3084), 1, + aux_sym_list_lit_repeat1, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [177446] = 8, + ACTIONS(47), 1, + sym_block_comment, + STATE(1515), 1, + sym_list_lit, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, sym_meta_lit, - STATE(3062), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3077), 1, aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(10909), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1015), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [175980] = 10, + [177475] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5654), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - STATE(2867), 1, + STATE(1517), 1, + sym_list_lit, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(2970), 1, - sym_list_lit, - STATE(3029), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3077), 1, aux_sym_list_lit_repeat1, - STATE(2918), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [176013] = 10, + [177508] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - STATE(2867), 1, + STATE(1710), 1, + sym_list_lit, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(2970), 1, - sym_list_lit, - STATE(3068), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3078), 1, aux_sym_list_lit_repeat1, - STATE(2918), 3, + ACTIONS(10909), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [176046] = 8, + [177537] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2867), 1, + STATE(2562), 1, + sym_list_lit, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(2958), 1, - sym_list_lit, - STATE(3068), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3084), 1, aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(10909), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2918), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [176075] = 8, + [177566] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(2867), 1, + ACTIONS(5135), 1, + anon_sym_LPAREN, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + STATE(1712), 1, + sym_list_lit, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(2958), 1, - sym_list_lit, - STATE(3029), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3078), 1, aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + STATE(1673), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [177599] = 10, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(2918), 3, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(2932), 1, + sym_list_lit, + STATE(3059), 1, + aux_sym_list_lit_repeat1, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [176104] = 8, + [177632] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(1890), 1, - sym_list_lit, - STATE(2867), 1, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(10929), 1, + aux_sym_num_lit_token1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, sym_old_meta_lit, - STATE(2923), 1, + STATE(3108), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(2901), 2, + sym_num_lit, + sym_complex_num_lit, + [177665] = 8, + ACTIONS(47), 1, + sym_block_comment, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, sym_meta_lit, - STATE(3033), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(2928), 1, + sym_list_lit, + STATE(3059), 1, aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(10909), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1926), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [176133] = 8, + [177694] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2617), 1, + STATE(1543), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3028), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3077), 1, aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(10909), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2536), 3, + STATE(1496), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [176162] = 10, + [177723] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - STATE(2626), 1, + STATE(1460), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3028), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3073), 1, aux_sym_list_lit_repeat1, - STATE(2536), 3, + ACTIONS(10909), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [176195] = 10, + [177752] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(10931), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(10934), 1, anon_sym_POUND_CARET, - ACTIONS(10856), 1, - aux_sym_num_lit_token1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3388), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, aux_sym_list_lit_repeat1, - ACTIONS(2356), 2, + ACTIONS(10803), 5, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1935), 2, - sym_num_lit, - sym_complex_num_lit, - [176228] = 8, + [177781] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1687), 1, + STATE(1862), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3065), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3089), 1, aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(10909), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1650), 3, + STATE(1780), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [176257] = 10, + [177810] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10858), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3359), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3105), 1, aux_sym_list_lit_repeat1, - ACTIONS(2703), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1308), 2, + STATE(2633), 2, sym_num_lit, sym_complex_num_lit, - [176290] = 10, + [177843] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5436), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - STATE(1689), 1, + STATE(1458), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3065), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3073), 1, aux_sym_list_lit_repeat1, - STATE(1650), 3, + STATE(1485), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [176323] = 4, + [177876] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10860), 1, - anon_sym_COLON, - ACTIONS(10862), 1, - anon_sym_COLON_COLON, - ACTIONS(7393), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, + STATE(1439), 1, + sym_list_lit, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3073), 1, + aux_sym_list_lit_repeat1, + ACTIONS(10909), 3, anon_sym_CARET, anon_sym_POUND_CARET, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - [176344] = 10, + anon_sym_LPAREN, + STATE(1485), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [177905] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10864), 1, + ACTIONS(10939), 1, aux_sym_num_lit_token1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3383), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3106), 1, aux_sym_list_lit_repeat1, - ACTIONS(5462), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1663), 2, + STATE(1960), 2, sym_num_lit, sym_complex_num_lit, - [176377] = 8, + [177938] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(2958), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(2928), 1, sym_list_lit, - STATE(3035), 1, + STATE(3087), 1, aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(10909), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2918), 3, + STATE(2936), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [176406] = 10, + [177967] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10866), 1, + ACTIONS(10941), 1, aux_sym_num_lit_token1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3391), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3106), 1, aux_sym_list_lit_repeat1, - ACTIONS(4862), 2, + ACTIONS(2989), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(2886), 2, + STATE(1960), 2, sym_num_lit, sym_complex_num_lit, - [176439] = 10, - ACTIONS(29), 1, - anon_sym_LPAREN, + [178000] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - STATE(1840), 1, + STATE(1738), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3070), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3078), 1, aux_sym_list_lit_repeat1, - STATE(1793), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [176472] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(8006), 1, + ACTIONS(10909), 3, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(2970), 1, - sym_list_lit, - STATE(3035), 1, - aux_sym_list_lit_repeat1, - STATE(2918), 3, + anon_sym_LPAREN, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [176505] = 10, + [178029] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10868), 1, + ACTIONS(10943), 1, aux_sym_num_lit_token1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3355), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3414), 1, aux_sym_list_lit_repeat1, - ACTIONS(120), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1030), 2, + STATE(1769), 2, sym_num_lit, sym_complex_num_lit, - [176538] = 10, + [178062] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3238), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3414), 1, aux_sym_list_lit_repeat1, ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1855), 2, + STATE(1769), 2, sym_num_lit, sym_complex_num_lit, - [176571] = 10, + [178095] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(10872), 1, - aux_sym_num_lit_token1, - STATE(2867), 1, + STATE(1002), 1, + sym_list_lit, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3391), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3058), 1, aux_sym_list_lit_repeat1, - ACTIONS(4862), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(2886), 2, - sym_num_lit, - sym_complex_num_lit, - [176604] = 8, + ACTIONS(10909), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1070), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178124] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1273), 1, + STATE(1023), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3056), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3058), 1, aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(10909), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1320), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [176633] = 8, + [178153] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(1089), 1, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + STATE(1021), 1, sym_list_lit, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(3062), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3058), 1, aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1015), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [176662] = 4, + [178186] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10860), 1, + ACTIONS(7608), 1, anon_sym_COLON, - ACTIONS(10862), 1, - anon_sym_COLON_COLON, - ACTIONS(7372), 9, + ACTIONS(7606), 9, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_DQUOTE, + anon_sym_COLON_COLON, aux_sym_sym_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - [176683] = 4, + anon_sym_LPAREN, + anon_sym_COMMA, + [178204] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10860), 1, + ACTIONS(10947), 1, anon_sym_COLON, - ACTIONS(10862), 1, + ACTIONS(10949), 1, anon_sym_COLON_COLON, - ACTIONS(7626), 9, + ACTIONS(7429), 8, 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, - [176704] = 8, - ACTIONS(47), 1, - sym_block_comment, - STATE(1715), 1, - sym_list_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3065), 1, - aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1650), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [176733] = 8, + anon_sym_COMMA, + [178224] = 3, ACTIONS(47), 1, sym_block_comment, - STATE(1952), 1, - sym_list_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3033), 1, - aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(7682), 1, + anon_sym_COLON, + ACTIONS(7680), 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, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [176762] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - STATE(1941), 1, - sym_list_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3033), 1, - aux_sym_list_lit_repeat1, - STATE(1926), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [176795] = 8, + anon_sym_COMMA, + [178242] = 3, ACTIONS(47), 1, sym_block_comment, - STATE(2619), 1, - sym_list_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3028), 1, - aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(7722), 1, + anon_sym_COLON, + ACTIONS(7720), 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, - STATE(2536), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [176824] = 8, + anon_sym_COMMA, + [178260] = 3, ACTIONS(47), 1, sym_block_comment, - STATE(2867), 1, - sym__metadata_lit, - STATE(2900), 1, - sym_list_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3035), 1, - aux_sym_list_lit_repeat1, - ACTIONS(10836), 3, + ACTIONS(7738), 1, + anon_sym_COLON, + ACTIONS(7736), 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, - STATE(2918), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [176853] = 10, + anon_sym_COMMA, + [178278] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(8006), 1, + ACTIONS(7678), 1, + anon_sym_COLON, + ACTIONS(7676), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - STATE(1292), 1, - sym_list_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(3056), 1, - aux_sym_list_lit_repeat1, - STATE(1320), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [176886] = 3, + anon_sym_LPAREN, + anon_sym_COMMA, + [178296] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7738), 1, + ACTIONS(7686), 1, anon_sym_COLON, - ACTIONS(7736), 9, + ACTIONS(7684), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -188005,12 +189757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [176904] = 3, + [178314] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7419), 1, + ACTIONS(7440), 1, anon_sym_COLON, - ACTIONS(7417), 9, + ACTIONS(7438), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -188020,54 +189772,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [176922] = 9, + [178332] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(2978), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, aux_sym_list_lit_repeat1, - STATE(2598), 3, + STATE(1027), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [176952] = 9, + [178362] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5654), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, sym_old_meta_lit, - STATE(2923), 1, + STATE(3036), 1, + aux_sym_list_lit_repeat1, + STATE(2995), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178392] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, sym_meta_lit, - STATE(2978), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, aux_sym_list_lit_repeat1, - STATE(2957), 3, + STATE(2995), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [176982] = 3, + [178422] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7580), 1, + ACTIONS(7616), 1, anon_sym_COLON, - ACTIONS(7578), 9, + ACTIONS(7614), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -188077,12 +189850,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [177000] = 3, + [178440] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7430), 1, + ACTIONS(7644), 1, anon_sym_COLON, - ACTIONS(7428), 9, + ACTIONS(7642), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -188092,12 +189865,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [177018] = 3, + [178458] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7532), 1, + ACTIONS(7640), 1, anon_sym_COLON, - ACTIONS(7530), 9, + ACTIONS(7638), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -188107,33 +189880,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [177036] = 9, + [178476] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(2978), 1, - aux_sym_list_lit_repeat1, - STATE(1957), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [177066] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7521), 1, + ACTIONS(7628), 1, anon_sym_COLON, - ACTIONS(7519), 9, + ACTIONS(7626), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -188143,33 +189895,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [177084] = 9, + [178494] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4714), 1, - anon_sym_LPAREN, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(2978), 1, - aux_sym_list_lit_repeat1, - STATE(2957), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [177114] = 3, + ACTIONS(8412), 1, + aux_sym_num_lit_token1, + ACTIONS(8420), 1, + anon_sym_SQUOTE, + ACTIONS(10953), 1, + anon_sym_COMMA, + ACTIONS(10957), 1, + aux_sym_format_directive_type_token11, + ACTIONS(10951), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(10955), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + STATE(3094), 2, + sym__format_token, + aux_sym_format_modifiers_repeat1, + [178522] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7473), 1, + ACTIONS(7524), 1, anon_sym_COLON, - ACTIONS(7471), 9, + ACTIONS(7522), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -188179,12 +189930,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [177132] = 3, + [178540] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7724), 1, + ACTIONS(7508), 1, anon_sym_COLON, - ACTIONS(7722), 9, + ACTIONS(7506), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -188194,12 +189945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [177150] = 3, + [178558] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7401), 1, + ACTIONS(7652), 1, anon_sym_COLON, - ACTIONS(7399), 9, + ACTIONS(7650), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -188209,12 +189960,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [177168] = 3, + [178576] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7481), 1, + ACTIONS(7444), 1, anon_sym_COLON, - ACTIONS(7479), 9, + ACTIONS(7442), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -188224,33 +189975,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [177186] = 9, + [178594] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4355), 1, - anon_sym_LPAREN, - ACTIONS(8006), 1, + ACTIONS(7576), 1, + anon_sym_COLON, + ACTIONS(7574), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(8008), 1, anon_sym_POUND_CARET, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(2978), 1, - aux_sym_list_lit_repeat1, - STATE(1145), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [177216] = 3, + anon_sym_LPAREN, + anon_sym_COMMA, + [178612] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7485), 1, + ACTIONS(7616), 1, anon_sym_COLON, - ACTIONS(7483), 9, + ACTIONS(7614), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -188260,12 +190005,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [177234] = 3, + [178630] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7473), 1, + ACTIONS(7472), 1, anon_sym_COLON, - ACTIONS(7471), 9, + ACTIONS(7470), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -188275,12 +190020,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [177252] = 3, + [178648] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7469), 1, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, + aux_sym_list_lit_repeat1, + STATE(1464), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178678] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7544), 1, anon_sym_COLON, - ACTIONS(7467), 9, + ACTIONS(7542), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -188290,29 +190056,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [177270] = 5, + [178696] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10877), 1, + ACTIONS(10962), 1, anon_sym_POUND_, - ACTIONS(10874), 2, + ACTIONS(10959), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3075), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(7314), 4, - aux_sym_num_lit_token1, - anon_sym_COLON, - anon_sym_cl, - anon_sym_into, - [177292] = 3, + ACTIONS(7383), 4, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_COMMA, + [178718] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, + aux_sym_list_lit_repeat1, + STATE(1945), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178748] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4977), 1, + anon_sym_LPAREN, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, + aux_sym_list_lit_repeat1, + STATE(1512), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178778] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7501), 1, + ACTIONS(5135), 1, + anon_sym_LPAREN, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, + aux_sym_list_lit_repeat1, + STATE(1705), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178808] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7560), 1, anon_sym_COLON, - ACTIONS(7499), 9, + ACTIONS(7558), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -188322,12 +190151,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [177310] = 3, + [178826] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7673), 1, + ACTIONS(7604), 1, anon_sym_COLON, - ACTIONS(7671), 9, + ACTIONS(7602), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -188337,12 +190166,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [177328] = 3, + [178844] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7457), 1, + ACTIONS(7841), 1, anon_sym_COLON, - ACTIONS(7455), 9, + ACTIONS(7839), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -188352,12 +190181,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [177346] = 3, + [178862] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7449), 1, + ACTIONS(7636), 1, anon_sym_COLON, - ACTIONS(7447), 9, + ACTIONS(7634), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -188367,114 +190196,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [177364] = 3, + [178880] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7517), 1, + ACTIONS(2959), 1, + anon_sym_LPAREN, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, + aux_sym_list_lit_repeat1, + STATE(1945), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178910] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, + aux_sym_list_lit_repeat1, + STATE(2603), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178940] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10947), 1, anon_sym_COLON, - ACTIONS(7515), 9, + ACTIONS(10949), 1, + anon_sym_COLON_COLON, + ACTIONS(7666), 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, - [177382] = 5, + [178960] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10883), 1, + ACTIONS(10968), 1, anon_sym_POUND_, - ACTIONS(10880), 2, + ACTIONS(10965), 2, sym__ws, sym_comment, - STATE(3050), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(7314), 4, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [177404] = 9, + ACTIONS(7383), 4, + aux_sym_num_lit_token1, + anon_sym_COLON, + anon_sym_cl, + anon_sym_into, + [178982] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2326), 1, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(2978), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, aux_sym_list_lit_repeat1, - STATE(1957), 3, + STATE(2995), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [177434] = 3, + [179012] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7426), 1, + ACTIONS(10947), 1, anon_sym_COLON, - ACTIONS(7424), 9, + ACTIONS(10949), 1, + anon_sym_COLON_COLON, + ACTIONS(7704), 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, - [177452] = 3, + [179032] = 9, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7441), 1, - anon_sym_COLON, - ACTIONS(7439), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [177470] = 7, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10886), 1, - aux_sym_num_lit_token1, - ACTIONS(10891), 1, - anon_sym_SQUOTE, - ACTIONS(10894), 1, - anon_sym_COMMA, - ACTIONS(10889), 2, - anon_sym_COLON, - anon_sym_AT, - STATE(3054), 2, - sym__format_token, - aux_sym_format_modifiers_repeat1, - ACTIONS(10897), 3, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - aux_sym_format_directive_type_token11, - [177496] = 3, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, + aux_sym_list_lit_repeat1, + STATE(1813), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [179062] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7434), 1, + ACTIONS(7512), 1, anon_sym_COLON, - ACTIONS(7432), 9, + ACTIONS(7510), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -188484,33 +190344,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [177514] = 9, + [179080] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4786), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - STATE(2867), 1, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(2978), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, aux_sym_list_lit_repeat1, - STATE(1298), 3, + STATE(1153), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [177544] = 3, + [179110] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7720), 1, + ACTIONS(7516), 1, anon_sym_COLON, - ACTIONS(7718), 9, + ACTIONS(7514), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -188520,12 +190380,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [177562] = 3, + [179128] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7746), 1, + ACTIONS(7520), 1, anon_sym_COLON, - ACTIONS(7744), 9, + ACTIONS(7518), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -188535,4829 +190395,4898 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [177580] = 8, + [179146] = 7, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8343), 1, + ACTIONS(10971), 1, aux_sym_num_lit_token1, - ACTIONS(8351), 1, + ACTIONS(10976), 1, anon_sym_SQUOTE, - ACTIONS(10901), 1, + ACTIONS(10979), 1, anon_sym_COMMA, - ACTIONS(10905), 1, - aux_sym_format_directive_type_token11, - ACTIONS(10899), 2, + ACTIONS(10974), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(10903), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - STATE(3054), 2, + STATE(3094), 2, sym__format_token, aux_sym_format_modifiers_repeat1, - [177608] = 3, + ACTIONS(10982), 3, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + aux_sym_format_directive_type_token11, + [179172] = 7, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7754), 1, - anon_sym_COLON, - ACTIONS(7752), 9, - sym__ws, - sym_comment, + ACTIONS(10986), 1, 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, - [177626] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7536), 1, + ACTIONS(10988), 1, anon_sym_COLON, - ACTIONS(7534), 9, + ACTIONS(10990), 1, + anon_sym_cl, + ACTIONS(10992), 1, + anon_sym_into, + ACTIONS(10984), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [177644] = 9, + STATE(3086), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [179197] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5588), 1, - anon_sym_LPAREN, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - STATE(2867), 1, + ACTIONS(10408), 1, + anon_sym_LBRACE, + ACTIONS(10994), 1, + anon_sym_POUND_QMARK, + STATE(2877), 1, + sym__bare_map_lit, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(2978), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, aux_sym_list_lit_repeat1, - STATE(1078), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [177674] = 9, + [179228] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4894), 1, - anon_sym_LPAREN, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - STATE(2867), 1, + ACTIONS(10408), 1, + anon_sym_LBRACE, + ACTIONS(10996), 1, + anon_sym_POUND_QMARK, + STATE(2877), 1, + sym__bare_map_lit, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(2978), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, aux_sym_list_lit_repeat1, - STATE(1507), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [177704] = 4, + [179259] = 7, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10907), 1, + ACTIONS(10986), 1, + anon_sym_POUND_, + ACTIONS(10998), 1, anon_sym_COLON, - ACTIONS(10909), 1, - anon_sym_COLON_COLON, - ACTIONS(7393), 8, + ACTIONS(11000), 1, + anon_sym_cl, + ACTIONS(11002), 1, + anon_sym_into, + ACTIONS(10984), 2, sym__ws, sym_comment, + STATE(3086), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [179284] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10945), 1, + aux_sym_num_lit_token1, + ACTIONS(10986), 1, anon_sym_POUND_, - aux_sym_sym_lit_token1, + STATE(3602), 1, + sym_num_lit, + ACTIONS(11004), 2, + sym__ws, + sym_comment, + STATE(3346), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [179306] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(11006), 1, + aux_sym_num_lit_token2, + ACTIONS(7419), 7, + sym__ws, + sym_comment, + anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, + anon_sym_cl, + anon_sym_into, + [179322] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [177724] = 9, + ACTIONS(10541), 1, + anon_sym_POUNDC, + ACTIONS(10543), 1, + anon_sym_POUNDc, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, + aux_sym_list_lit_repeat1, + [179350] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5436), 1, - anon_sym_LPAREN, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - STATE(2867), 1, + ACTIONS(10575), 1, + anon_sym_POUNDC, + ACTIONS(10577), 1, + anon_sym_POUNDc, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(2978), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, aux_sym_list_lit_repeat1, - STATE(1682), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [177754] = 4, + [179378] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10907), 1, - anon_sym_COLON, - ACTIONS(10909), 1, - anon_sym_COLON_COLON, - ACTIONS(7626), 8, - sym__ws, - sym_comment, - anon_sym_POUND_, - aux_sym_sym_lit_token1, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [177774] = 4, + ACTIONS(10461), 1, + anon_sym_POUNDC, + ACTIONS(10463), 1, + anon_sym_POUNDc, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, + aux_sym_list_lit_repeat1, + [179406] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10907), 1, - anon_sym_COLON, - ACTIONS(10909), 1, - anon_sym_COLON_COLON, - ACTIONS(7372), 8, - sym__ws, - sym_comment, - anon_sym_POUND_, - aux_sym_sym_lit_token1, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [177794] = 9, + ACTIONS(10649), 1, + anon_sym_POUNDC, + ACTIONS(10651), 1, + anon_sym_POUNDc, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, + aux_sym_list_lit_repeat1, + [179434] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - STATE(2867), 1, + ACTIONS(10501), 1, + anon_sym_POUNDC, + ACTIONS(10503), 1, + anon_sym_POUNDc, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, + STATE(2907), 1, sym_meta_lit, - STATE(2978), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, aux_sym_list_lit_repeat1, - STATE(2957), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [177824] = 3, + [179462] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7650), 1, - anon_sym_COLON, - ACTIONS(7648), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, + ACTIONS(8075), 1, anon_sym_CARET, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [177842] = 9, - ACTIONS(29), 1, - anon_sym_LPAREN, + ACTIONS(10481), 1, + anon_sym_POUNDC, + ACTIONS(10483), 1, + anon_sym_POUNDc, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, + aux_sym_list_lit_repeat1, + [179490] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(8075), 1, anon_sym_CARET, - ACTIONS(8008), 1, + ACTIONS(8077), 1, anon_sym_POUND_CARET, - STATE(2867), 1, + ACTIONS(10681), 1, + anon_sym_POUNDC, + ACTIONS(10683), 1, + anon_sym_POUNDc, + STATE(2892), 1, sym__metadata_lit, - STATE(2919), 1, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, sym_old_meta_lit, - STATE(2923), 1, + STATE(3036), 1, + aux_sym_list_lit_repeat1, + [179518] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(10521), 1, + anon_sym_POUNDC, + ACTIONS(10523), 1, + anon_sym_POUNDc, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, sym_meta_lit, - STATE(2978), 1, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, aux_sym_list_lit_repeat1, - STATE(1846), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [177872] = 7, + [179546] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10913), 1, + ACTIONS(10937), 1, + aux_sym_num_lit_token1, + ACTIONS(10986), 1, anon_sym_POUND_, - ACTIONS(10915), 1, - anon_sym_COLON, - ACTIONS(10917), 1, - anon_sym_cl, - ACTIONS(10919), 1, - anon_sym_into, - ACTIONS(10911), 2, + STATE(3214), 1, + sym_num_lit, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177897] = 10, + [179568] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(10347), 1, - anon_sym_LBRACE, - ACTIONS(10921), 1, - anon_sym_POUND_QMARK, - STATE(2845), 1, - sym__bare_map_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(2978), 1, - aux_sym_list_lit_repeat1, - [177928] = 10, + ACTIONS(10937), 1, + aux_sym_num_lit_token1, + ACTIONS(10986), 1, + anon_sym_POUND_, + STATE(3217), 1, + sym_num_lit, + ACTIONS(10984), 2, + sym__ws, + sym_comment, + STATE(3086), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [179590] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(10347), 1, - anon_sym_LBRACE, - ACTIONS(10923), 1, - anon_sym_POUND_QMARK, - STATE(2845), 1, - sym__bare_map_lit, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(2978), 1, - aux_sym_list_lit_repeat1, - [177959] = 7, + ACTIONS(10937), 1, + aux_sym_num_lit_token1, + ACTIONS(10986), 1, + anon_sym_POUND_, + STATE(3221), 1, + sym_num_lit, + ACTIONS(11008), 2, + sym__ws, + sym_comment, + STATE(3109), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [179612] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10913), 1, + ACTIONS(10937), 1, + aux_sym_num_lit_token1, + ACTIONS(10986), 1, anon_sym_POUND_, - ACTIONS(10925), 1, - anon_sym_COLON, - ACTIONS(10927), 1, - anon_sym_cl, - ACTIONS(10929), 1, - anon_sym_into, - ACTIONS(10911), 2, + STATE(3222), 1, + sym_num_lit, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177984] = 6, + [179634] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3205), 1, + STATE(3224), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11010), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3110), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178006] = 6, + [179656] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3520), 1, + STATE(3225), 1, sym_num_lit, - ACTIONS(10931), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3123), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178028] = 6, + [179678] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3559), 1, + STATE(3227), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178050] = 6, + [179700] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3568), 1, + STATE(3229), 1, sym_num_lit, - ACTIONS(10933), 2, + ACTIONS(11012), 2, sym__ws, sym_comment, - STATE(3128), 3, + STATE(3112), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178072] = 6, + [179722] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3569), 1, + STATE(3230), 1, sym_num_lit, - ACTIONS(10935), 2, + ACTIONS(11014), 2, sym__ws, sym_comment, - STATE(3134), 3, + STATE(3114), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178094] = 6, + [179744] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3570), 1, + STATE(3231), 1, sym_num_lit, - ACTIONS(10937), 2, + ACTIONS(11016), 2, sym__ws, sym_comment, - STATE(3077), 3, + STATE(3115), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178116] = 6, + [179766] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3571), 1, + STATE(3231), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178138] = 6, + [179788] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3434), 1, + STATE(3233), 1, sym_num_lit, - ACTIONS(10939), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(3180), 3, + STATE(3119), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178160] = 6, + [179810] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3574), 1, + STATE(3237), 1, sym_num_lit, - ACTIONS(10941), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3081), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178182] = 6, + [179832] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3433), 1, + STATE(3240), 1, sym_num_lit, - ACTIONS(10943), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3179), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178204] = 6, + [179854] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3682), 1, + STATE(3245), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11020), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3121), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178226] = 6, + [179876] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3432), 1, + STATE(3247), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178248] = 6, + [179898] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3691), 1, + STATE(3249), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11022), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3122), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178270] = 6, + [179920] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3430), 1, + STATE(3250), 1, sym_num_lit, - ACTIONS(10945), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3156), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178292] = 6, + [179942] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3697), 1, + STATE(3252), 1, sym_num_lit, - ACTIONS(10947), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3085), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178314] = 6, + [179964] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3699), 1, + STATE(3254), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11024), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3124), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178336] = 6, + [179986] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3703), 1, + STATE(3760), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178358] = 6, + [180008] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3429), 1, + STATE(3255), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11026), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3126), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178380] = 6, + [180030] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3706), 1, + STATE(3256), 1, sym_num_lit, - ACTIONS(10949), 2, + ACTIONS(11028), 2, sym__ws, sym_comment, - STATE(3087), 3, + STATE(3127), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178402] = 6, + [180052] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, + anon_sym_POUND_, + STATE(3256), 1, + sym_num_lit, + ACTIONS(10984), 2, + sym__ws, + sym_comment, + STATE(3086), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [180074] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10937), 1, + aux_sym_num_lit_token1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3714), 1, + STATE(3258), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11030), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3132), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178424] = 6, + [180096] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3718), 1, + STATE(3262), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178446] = 6, + [180118] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3426), 1, + STATE(3265), 1, sym_num_lit, - ACTIONS(10951), 2, + ACTIONS(10984), 2, + sym__ws, + sym_comment, + STATE(3086), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [180140] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10937), 1, + aux_sym_num_lit_token1, + ACTIONS(10986), 1, + anon_sym_POUND_, + STATE(3269), 1, + sym_num_lit, + ACTIONS(11032), 2, sym__ws, sym_comment, - STATE(3104), 3, + STATE(3134), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178468] = 6, + [180162] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3425), 1, + STATE(3270), 1, sym_num_lit, - ACTIONS(10953), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178490] = 6, + [180184] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3424), 1, + STATE(3272), 1, sym_num_lit, - ACTIONS(10955), 2, + ACTIONS(11034), 2, sym__ws, sym_comment, - STATE(3092), 3, + STATE(3135), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178512] = 6, + [180206] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3423), 1, + STATE(3273), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178534] = 6, + [180228] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3721), 1, + STATE(3275), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178556] = 6, + [180250] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3418), 1, + STATE(3277), 1, sym_num_lit, - ACTIONS(10957), 2, + ACTIONS(11036), 2, sym__ws, sym_comment, - STATE(3099), 3, + STATE(3137), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178578] = 6, + [180272] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3725), 1, + STATE(3278), 1, sym_num_lit, - ACTIONS(10959), 2, + ACTIONS(11038), 2, sym__ws, sym_comment, - STATE(3090), 3, + STATE(3139), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178600] = 6, + [180294] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3726), 1, + STATE(3776), 1, sym_num_lit, - ACTIONS(10961), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3091), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178622] = 6, + [180316] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3436), 1, + STATE(3279), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11040), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3140), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178644] = 6, + [180338] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3727), 1, + STATE(3279), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178666] = 6, + [180360] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3397), 1, + STATE(3281), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11042), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3145), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178688] = 6, + [180382] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3733), 1, + STATE(3411), 1, sym_num_lit, - ACTIONS(10963), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178710] = 6, + [180404] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3734), 1, + STATE(3284), 1, sym_num_lit, - ACTIONS(10965), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3095), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178732] = 6, + [180426] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3739), 1, + STATE(3287), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178754] = 6, + [180448] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3741), 1, + STATE(3291), 1, sym_num_lit, - ACTIONS(10967), 2, + ACTIONS(11044), 2, sym__ws, sym_comment, - STATE(3100), 3, + STATE(3148), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178776] = 6, + [180470] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3743), 1, + STATE(3292), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178798] = 6, + [180492] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3750), 1, + STATE(3294), 1, sym_num_lit, - ACTIONS(10969), 2, + ACTIONS(11046), 2, sym__ws, sym_comment, - STATE(3105), 3, + STATE(3149), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178820] = 6, + [180514] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3701), 1, + STATE(3295), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178842] = 6, + [180536] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3475), 1, + STATE(3297), 1, sym_num_lit, - ACTIONS(10971), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3106), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178864] = 6, + [180558] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3476), 1, + STATE(3299), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11048), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3151), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178886] = 6, + [180580] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3478), 1, + STATE(3300), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11050), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3153), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178908] = 6, + [180602] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3751), 1, + STATE(3301), 1, sym_num_lit, - ACTIONS(10973), 2, + ACTIONS(11052), 2, sym__ws, sym_comment, - STATE(3109), 3, + STATE(3154), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178930] = 6, + [180624] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3482), 1, + STATE(3301), 1, sym_num_lit, - ACTIONS(10975), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3113), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178952] = 6, + [180646] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3487), 1, + STATE(3303), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11054), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3158), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178974] = 6, + [180668] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3752), 1, + STATE(3538), 1, sym_num_lit, - ACTIONS(10977), 2, + ACTIONS(11056), 2, sym__ws, sym_comment, - STATE(3111), 3, + STATE(3410), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178996] = 6, + [180690] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3465), 1, + STATE(3307), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179018] = 6, + [180712] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3753), 1, + STATE(3311), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179040] = 6, + [180734] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3495), 1, + STATE(3316), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11058), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3161), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179062] = 6, + [180756] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3756), 1, + STATE(3317), 1, sym_num_lit, - ACTIONS(10979), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3122), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179084] = 6, + [180778] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3499), 1, + STATE(3320), 1, sym_num_lit, - ACTIONS(10981), 2, + ACTIONS(11060), 2, sym__ws, sym_comment, - STATE(3115), 3, + STATE(3162), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179106] = 6, + [180800] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3500), 1, + STATE(3321), 1, sym_num_lit, - ACTIONS(10983), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3116), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179128] = 6, + [180822] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3787), 1, + STATE(3322), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179150] = 6, + [180844] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3501), 1, + STATE(3324), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11062), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3164), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179172] = 6, + [180866] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3791), 1, + STATE(3325), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11064), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3166), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179194] = 6, + [180888] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3505), 1, + STATE(3326), 1, sym_num_lit, - ACTIONS(10985), 2, + ACTIONS(11066), 2, sym__ws, sym_comment, - STATE(3119), 3, + STATE(3167), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179216] = 6, + [180910] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3506), 1, + STATE(3326), 1, sym_num_lit, - ACTIONS(10987), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3121), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179238] = 6, + [180932] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3796), 1, + STATE(3328), 1, sym_num_lit, - ACTIONS(10989), 2, + ACTIONS(11068), 2, sym__ws, sym_comment, - STATE(3127), 3, + STATE(3171), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179260] = 6, + [180954] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3797), 1, + STATE(3598), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11070), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3415), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179282] = 6, + [180976] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3507), 1, + STATE(3332), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179304] = 6, + [180998] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3437), 1, + STATE(3335), 1, sym_num_lit, - ACTIONS(10991), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3183), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179326] = 6, + [181020] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3799), 1, + STATE(3339), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11072), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3174), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179348] = 6, + [181042] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3802), 1, + STATE(3340), 1, sym_num_lit, - ACTIONS(10993), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3129), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179370] = 6, + [181064] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3803), 1, + STATE(3342), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11074), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3175), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179392] = 6, + [181086] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3805), 1, + STATE(3343), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179414] = 6, + [181108] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3808), 1, + STATE(3345), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179436] = 6, + [181130] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3813), 1, + STATE(3347), 1, sym_num_lit, - ACTIONS(10995), 2, + ACTIONS(11076), 2, sym__ws, sym_comment, - STATE(3133), 3, + STATE(3177), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179458] = 6, + [181152] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3225), 1, + STATE(3348), 1, sym_num_lit, - ACTIONS(10997), 2, + ACTIONS(11078), 2, sym__ws, sym_comment, - STATE(3265), 3, + STATE(3179), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179480] = 6, + [181174] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3814), 1, + STATE(3099), 1, sym_num_lit, - ACTIONS(10999), 2, + ACTIONS(11080), 2, sym__ws, sym_comment, - STATE(3136), 3, + STATE(3180), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179502] = 6, + [181196] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3815), 1, + STATE(3099), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179524] = 6, + [181218] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3817), 1, + STATE(3350), 1, sym_num_lit, - ACTIONS(11001), 2, + ACTIONS(11082), 2, sym__ws, sym_comment, - STATE(3138), 3, + STATE(3184), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179546] = 6, + [181240] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3818), 1, + STATE(3600), 1, sym_num_lit, - ACTIONS(11003), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3139), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179568] = 6, + [181262] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3819), 1, + STATE(3354), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179590] = 6, + [181284] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3821), 1, + STATE(3357), 1, sym_num_lit, - ACTIONS(11005), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3140), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179612] = 6, + [181306] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3822), 1, + STATE(3361), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11084), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3187), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179634] = 6, + [181328] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3825), 1, + STATE(3362), 1, sym_num_lit, - ACTIONS(11007), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3144), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179656] = 6, + [181350] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3826), 1, + STATE(3364), 1, sym_num_lit, - ACTIONS(11009), 2, + ACTIONS(11086), 2, sym__ws, sym_comment, - STATE(3147), 3, + STATE(3188), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179678] = 6, + [181372] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3827), 1, + STATE(3365), 1, sym_num_lit, - ACTIONS(11011), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3149), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179700] = 6, + [181394] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3828), 1, + STATE(3367), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179722] = 6, + [181416] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3831), 1, + STATE(3369), 1, sym_num_lit, - ACTIONS(11013), 2, + ACTIONS(11088), 2, sym__ws, sym_comment, - STATE(3153), 3, + STATE(3190), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179744] = 6, + [181438] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3438), 1, + STATE(3370), 1, sym_num_lit, - ACTIONS(11015), 2, + ACTIONS(11090), 2, sym__ws, sym_comment, - STATE(3184), 3, + STATE(3192), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179766] = 6, + [181460] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3441), 1, + STATE(3371), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11092), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3193), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179788] = 6, + [181482] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3847), 1, + STATE(3371), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179810] = 6, + [181504] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3844), 1, + STATE(3373), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11094), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3197), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179832] = 6, + [181526] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3839), 1, + STATE(3377), 1, sym_num_lit, - ACTIONS(11017), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3157), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179854] = 6, + [181548] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3838), 1, + STATE(3380), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179876] = 6, + [181570] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3836), 1, + STATE(3384), 1, + sym_num_lit, + ACTIONS(11096), 2, + sym__ws, + sym_comment, + STATE(3199), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [181592] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10937), 1, + aux_sym_num_lit_token1, + ACTIONS(10986), 1, + anon_sym_POUND_, + STATE(3385), 1, + sym_num_lit, + ACTIONS(10984), 2, + sym__ws, + sym_comment, + STATE(3086), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [181614] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10937), 1, + aux_sym_num_lit_token1, + ACTIONS(10986), 1, + anon_sym_POUND_, + STATE(3387), 1, + sym_num_lit, + ACTIONS(11098), 2, + sym__ws, + sym_comment, + STATE(3200), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [181636] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10937), 1, + aux_sym_num_lit_token1, + ACTIONS(10986), 1, + anon_sym_POUND_, + STATE(3388), 1, + sym_num_lit, + ACTIONS(10984), 2, + sym__ws, + sym_comment, + STATE(3086), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [181658] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10937), 1, + aux_sym_num_lit_token1, + ACTIONS(10986), 1, + anon_sym_POUND_, + STATE(3390), 1, + sym_num_lit, + ACTIONS(10984), 2, + sym__ws, + sym_comment, + STATE(3086), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [181680] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10937), 1, + aux_sym_num_lit_token1, + ACTIONS(10986), 1, + anon_sym_POUND_, + STATE(3392), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11100), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3202), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179898] = 6, + [181702] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3832), 1, + STATE(3393), 1, sym_num_lit, - ACTIONS(11019), 2, + ACTIONS(11102), 2, sym__ws, sym_comment, - STATE(3158), 3, + STATE(3204), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179920] = 6, + [181724] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3830), 1, + STATE(3394), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11104), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3205), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179942] = 6, + [181746] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3786), 1, + STATE(3394), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179964] = 6, + [181768] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3779), 1, + STATE(3396), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11106), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3209), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179986] = 6, + [181790] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3775), 1, + STATE(3407), 1, sym_num_lit, - ACTIONS(11021), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3160), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180008] = 6, + [181812] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3774), 1, + STATE(3674), 1, sym_num_lit, - ACTIONS(11023), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3161), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180030] = 6, + [181834] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3833), 1, + STATE(3670), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180052] = 6, + [181856] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3772), 1, + STATE(3665), 1, sym_num_lit, - ACTIONS(11025), 2, + ACTIONS(11108), 2, sym__ws, sym_comment, - STATE(3163), 3, + STATE(3212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180074] = 6, + [181878] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3771), 1, + STATE(3664), 1, sym_num_lit, - ACTIONS(11027), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3164), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180096] = 6, + [181900] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3770), 1, + STATE(3662), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180118] = 6, + [181922] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3768), 1, + STATE(3659), 1, sym_num_lit, - ACTIONS(11029), 2, + ACTIONS(11110), 2, sym__ws, sym_comment, - STATE(3165), 3, + STATE(3213), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180140] = 6, + [181944] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3767), 1, + STATE(3658), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180162] = 6, + [181966] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3763), 1, + STATE(3656), 1, sym_num_lit, - ACTIONS(11031), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3168), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180184] = 6, + [181988] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3759), 1, + STATE(3653), 1, sym_num_lit, - ACTIONS(11033), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3171), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180206] = 6, + [182010] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3748), 1, + STATE(3650), 1, sym_num_lit, - ACTIONS(11035), 2, + ACTIONS(11112), 2, sym__ws, sym_comment, - STATE(3173), 3, + STATE(3215), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180228] = 6, + [182032] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3746), 1, + STATE(3649), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11114), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3216), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180250] = 6, + [182054] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3736), 1, + STATE(3648), 1, sym_num_lit, - ACTIONS(11037), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3177), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180272] = 6, + [182076] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3444), 1, + STATE(3646), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11116), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3218), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180294] = 6, + [182098] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3446), 1, + STATE(3417), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11118), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3219), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180316] = 6, + [182120] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3447), 1, + STATE(3644), 1, sym_num_lit, - ACTIONS(11039), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3191), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180338] = 6, + [182142] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3700), 1, + STATE(3642), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11120), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3220), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180360] = 6, + [182164] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3450), 1, + STATE(3641), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180382] = 6, + [182186] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3452), 1, + STATE(3637), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11122), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3223), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180404] = 6, + [182208] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3686), 1, + STATE(3636), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11124), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3226), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180426] = 6, + [182230] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3675), 1, + STATE(3635), 1, sym_num_lit, - ACTIONS(11041), 2, + ACTIONS(11126), 2, sym__ws, sym_comment, - STATE(3182), 3, + STATE(3228), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180448] = 6, + [182252] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3453), 1, + STATE(3634), 1, sym_num_lit, - ACTIONS(11043), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3192), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180470] = 6, + [182274] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3674), 1, + STATE(3629), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11128), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3232), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180492] = 6, + [182296] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3672), 1, + STATE(3733), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11130), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3405), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180514] = 6, + [182318] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3667), 1, + STATE(3580), 1, sym_num_lit, - ACTIONS(11045), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3185), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180536] = 6, + [182340] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3458), 1, + STATE(3576), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180558] = 6, + [182362] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3462), 1, + STATE(3571), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11132), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3235), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180580] = 6, + [182384] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3511), 1, + STATE(3570), 1, sym_num_lit, - ACTIONS(11047), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3194), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180602] = 6, + [182406] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3516), 1, + STATE(3568), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180624] = 6, + [182428] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3587), 1, + STATE(3565), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11134), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3236), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180646] = 6, + [182450] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3517), 1, + STATE(3564), 1, sym_num_lit, - ACTIONS(11049), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3200), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180668] = 6, + [182472] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3518), 1, + STATE(3401), 1, sym_num_lit, - ACTIONS(11051), 2, + ACTIONS(11136), 2, sym__ws, sym_comment, - STATE(3208), 3, + STATE(3400), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180690] = 6, + [182494] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3666), 1, + STATE(3562), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180712] = 6, + [182516] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3519), 1, + STATE(3559), 1, sym_num_lit, - ACTIONS(11053), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3214), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180734] = 6, + [182538] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3523), 1, + STATE(3556), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11138), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3238), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180756] = 6, + [182560] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3663), 1, + STATE(3404), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11140), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3403), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180778] = 6, + [182582] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3658), 1, + STATE(3555), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11142), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3239), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180800] = 6, + [182604] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3655), 1, + STATE(3554), 1, sym_num_lit, - ACTIONS(11055), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3188), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180822] = 6, + [182626] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3524), 1, + STATE(3552), 1, sym_num_lit, - ACTIONS(11057), 2, + ACTIONS(11144), 2, sym__ws, sym_comment, - STATE(3230), 3, + STATE(3241), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180844] = 6, + [182648] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3653), 1, + STATE(3551), 1, sym_num_lit, - ACTIONS(11059), 2, + ACTIONS(11146), 2, sym__ws, sym_comment, - STATE(3189), 3, + STATE(3243), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180866] = 6, + [182670] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3614), 1, + STATE(3550), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180888] = 6, + [182692] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3607), 1, + STATE(3548), 1, sym_num_lit, - ACTIONS(11061), 2, + ACTIONS(11148), 2, sym__ws, sym_comment, - STATE(3198), 3, + STATE(3244), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180910] = 6, + [182714] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3526), 1, + STATE(3547), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180932] = 6, + [182736] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3606), 1, + STATE(3543), 1, sym_num_lit, - ACTIONS(11063), 2, + ACTIONS(11150), 2, sym__ws, sym_comment, - STATE(3201), 3, + STATE(3248), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180954] = 6, + [182758] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3527), 1, + STATE(3542), 1, sym_num_lit, - ACTIONS(11065), 2, + ACTIONS(11152), 2, sym__ws, sym_comment, - STATE(3232), 3, + STATE(3251), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180976] = 6, + [182780] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3528), 1, + STATE(3541), 1, sym_num_lit, - ACTIONS(11067), 2, + ACTIONS(11154), 2, sym__ws, sym_comment, - STATE(3233), 3, + STATE(3253), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180998] = 6, + [182802] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3603), 1, + STATE(3540), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181020] = 6, + [182824] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3582), 1, + STATE(3535), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11156), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3257), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181042] = 6, + [182846] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3530), 1, + STATE(3736), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181064] = 6, + [182868] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3601), 1, + STATE(3486), 1, sym_num_lit, - ACTIONS(11069), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3202), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181086] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(11071), 1, - aux_sym_num_lit_token2, - ACTIONS(7350), 7, - sym__ws, - sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, - anon_sym_COLON, - anon_sym_cl, - anon_sym_into, - [181102] = 6, + [182890] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3600), 1, + STATE(3482), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181124] = 6, + [182912] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3710), 1, + STATE(3477), 1, sym_num_lit, - ACTIONS(11073), 2, + ACTIONS(11158), 2, sym__ws, sym_comment, - STATE(3213), 3, + STATE(3260), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181146] = 6, + [182934] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3596), 1, + STATE(3476), 1, sym_num_lit, - ACTIONS(11075), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3206), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181168] = 6, + [182956] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3595), 1, + STATE(3474), 1, sym_num_lit, - ACTIONS(11077), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3212), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181190] = 6, + [182978] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3711), 1, + STATE(3471), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11160), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3261), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181212] = 6, + [183000] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3594), 1, + STATE(3470), 1, sym_num_lit, - ACTIONS(11079), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3217), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181234] = 6, + [183022] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3713), 1, + STATE(3468), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181256] = 6, + [183044] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3593), 1, + STATE(3465), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181278] = 6, + [183066] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3591), 1, + STATE(3462), 1, sym_num_lit, - ACTIONS(11081), 2, + ACTIONS(11162), 2, sym__ws, sym_comment, - STATE(3224), 3, + STATE(3263), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181300] = 6, + [183088] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3531), 1, + STATE(3461), 1, sym_num_lit, - ACTIONS(11083), 2, + ACTIONS(11164), 2, sym__ws, sym_comment, - STATE(3235), 3, + STATE(3264), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181322] = 6, + [183110] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3722), 1, + STATE(3460), 1, sym_num_lit, - ACTIONS(11085), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3195), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181344] = 6, + [183132] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3532), 1, + STATE(3458), 1, sym_num_lit, - ACTIONS(11087), 2, + ACTIONS(11166), 2, sym__ws, sym_comment, - STATE(3236), 3, + STATE(3266), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181366] = 6, + [183154] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3728), 1, + STATE(3457), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11168), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3267), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181388] = 6, + [183176] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3535), 1, + STATE(3456), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181410] = 6, + [183198] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3737), 1, + STATE(3454), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11170), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3268), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181432] = 6, + [183220] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3538), 1, + STATE(3453), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181454] = 6, + [183242] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3540), 1, + STATE(3449), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11172), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3271), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181476] = 6, + [183264] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3541), 1, + STATE(3448), 1, sym_num_lit, - ACTIONS(11089), 2, + ACTIONS(11174), 2, sym__ws, sym_comment, - STATE(3240), 3, + STATE(3274), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181498] = 6, + [183286] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3544), 1, + STATE(3447), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11176), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3276), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181520] = 6, + [183308] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3546), 1, + STATE(3446), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181542] = 6, + [183330] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3547), 1, + STATE(3441), 1, sym_num_lit, - ACTIONS(11091), 2, + ACTIONS(11178), 2, sym__ws, sym_comment, - STATE(3241), 3, + STATE(3280), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181564] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(10572), 1, - anon_sym_POUNDC, - ACTIONS(10574), 1, - anon_sym_POUNDc, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(2978), 1, - aux_sym_list_lit_repeat1, - [181592] = 6, + [183352] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3273), 1, + STATE(3788), 1, sym_num_lit, - ACTIONS(11093), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3274), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181614] = 6, + [183374] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3552), 1, + STATE(3792), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181636] = 6, + [183396] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3556), 1, + STATE(3797), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11180), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3282), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181658] = 6, + [183418] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3605), 1, + STATE(3798), 1, sym_num_lit, - ACTIONS(11095), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3243), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181680] = 6, + [183440] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3610), 1, + STATE(3800), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181702] = 6, + [183462] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3611), 1, + STATE(3803), 1, sym_num_lit, - ACTIONS(11097), 2, + ACTIONS(11182), 2, sym__ws, sym_comment, - STATE(3247), 3, + STATE(3283), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181724] = 6, + [183484] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3612), 1, + STATE(3804), 1, sym_num_lit, - ACTIONS(11099), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3249), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181746] = 6, + [183506] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3613), 1, + STATE(3809), 1, sym_num_lit, - ACTIONS(11101), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3252), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181768] = 6, + [183528] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3617), 1, + STATE(3813), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181790] = 6, + [183550] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3618), 1, + STATE(3816), 1, sym_num_lit, - ACTIONS(11103), 2, + ACTIONS(11184), 2, sym__ws, sym_comment, - STATE(3255), 3, + STATE(3285), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181812] = 6, + [183572] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3620), 1, + STATE(3817), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11186), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3286), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181834] = 6, + [183594] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3621), 1, + STATE(3818), 1, sym_num_lit, - ACTIONS(11105), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3256), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181856] = 6, + [183616] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3622), 1, + STATE(3416), 1, sym_num_lit, - ACTIONS(11107), 2, + ACTIONS(11188), 2, sym__ws, sym_comment, - STATE(3257), 3, + STATE(3288), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181878] = 6, + [183638] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3624), 1, + STATE(3821), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11190), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3289), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181900] = 6, + [183660] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3625), 1, + STATE(3822), 1, sym_num_lit, - ACTIONS(11109), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3259), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181922] = 6, + [183682] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3626), 1, + STATE(3824), 1, sym_num_lit, - ACTIONS(11111), 2, + ACTIONS(11192), 2, sym__ws, sym_comment, - STATE(3260), 3, + STATE(3290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181944] = 6, + [183704] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3629), 1, + STATE(3825), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181966] = 6, + [183726] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3632), 1, + STATE(3829), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11194), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3293), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181988] = 6, + [183748] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3634), 1, + STATE(3830), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11196), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3296), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182010] = 6, + [183770] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3635), 1, + STATE(3831), 1, sym_num_lit, - ACTIONS(11113), 2, + ACTIONS(11198), 2, sym__ws, sym_comment, - STATE(3262), 3, + STATE(3298), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182032] = 6, + [183792] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3638), 1, + STATE(3832), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182054] = 6, + [183814] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3640), 1, + STATE(3841), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11200), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3302), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182076] = 6, + [183836] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3641), 1, + STATE(3807), 1, sym_num_lit, - ACTIONS(11115), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3263), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182098] = 6, + [183858] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3646), 1, + STATE(3868), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182120] = 6, + [183880] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3650), 1, + STATE(3873), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182142] = 6, + [183902] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3132), 1, + STATE(3861), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11202), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3305), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182164] = 6, + [183924] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3222), 1, + STATE(3857), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182186] = 6, + [183946] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3222), 1, + STATE(3855), 1, sym_num_lit, - ACTIONS(11117), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3269), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182208] = 6, + [183968] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3220), 1, + STATE(3412), 1, sym_num_lit, - ACTIONS(11119), 2, + ACTIONS(11204), 2, sym__ws, sym_comment, - STATE(3270), 3, + STATE(3409), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182230] = 6, + [183990] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3219), 1, + STATE(3850), 1, sym_num_lit, - ACTIONS(11121), 2, + ACTIONS(11206), 2, sym__ws, sym_comment, - STATE(3075), 3, + STATE(3306), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182252] = 6, + [184012] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3215), 1, + STATE(3849), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182274] = 6, + [184034] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3209), 1, + STATE(3847), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182296] = 6, + [184056] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3207), 1, + STATE(3412), 1, sym_num_lit, - ACTIONS(11123), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3275), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182318] = 6, + [184078] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3203), 1, + STATE(3844), 1, sym_num_lit, - ACTIONS(11125), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3276), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182340] = 6, + [184100] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3564), 1, + STATE(3838), 1, sym_num_lit, - ACTIONS(11127), 2, + ACTIONS(11208), 2, sym__ws, sym_comment, - STATE(3318), 3, + STATE(3308), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182362] = 6, + [184122] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3321), 1, + STATE(3837), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11210), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3309), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182384] = 6, + [184144] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3190), 1, + STATE(3836), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182406] = 6, + [184166] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3186), 1, + STATE(3528), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11212), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3413), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182428] = 6, + [184188] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3178), 1, + STATE(3828), 1, sym_num_lit, - ACTIONS(11129), 2, + ACTIONS(11214), 2, sym__ws, sym_comment, - STATE(3281), 3, + STATE(3312), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182450] = 6, + [184210] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3321), 1, + STATE(3810), 1, sym_num_lit, - ACTIONS(11131), 2, + ACTIONS(11216), 2, sym__ws, sym_comment, - STATE(3324), 3, + STATE(3313), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182472] = 6, + [184232] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3330), 1, + STATE(3783), 1, sym_num_lit, - ACTIONS(11133), 2, + ACTIONS(11218), 2, sym__ws, sym_comment, - STATE(3362), 3, + STATE(3315), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182494] = 6, + [184254] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3333), 1, + STATE(3780), 1, sym_num_lit, - ACTIONS(11135), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3335), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182516] = 6, + [184276] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3176), 1, + STATE(3773), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11220), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3318), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182538] = 6, + [184298] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3764), 1, + STATE(3771), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11222), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3304), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182560] = 6, + [184320] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3176), 1, + STATE(3770), 1, sym_num_lit, - ACTIONS(11137), 2, + ACTIONS(11224), 2, sym__ws, sym_comment, - STATE(3286), 3, + STATE(3323), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182582] = 6, + [184342] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3175), 1, + STATE(3769), 1, sym_num_lit, - ACTIONS(11139), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3287), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182604] = 6, + [184364] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3174), 1, + STATE(3763), 1, sym_num_lit, - ACTIONS(11141), 2, + ACTIONS(11226), 2, sym__ws, sym_comment, - STATE(3289), 3, + STATE(3327), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182626] = 6, + [184386] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3172), 1, + STATE(3718), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11228), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3406), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182648] = 6, + [184408] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3170), 1, + STATE(3737), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182670] = 6, + [184430] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3169), 1, + STATE(3730), 1, sym_num_lit, - ACTIONS(11143), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3291), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182692] = 6, + [184452] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3167), 1, + STATE(3725), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11230), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3330), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182714] = 6, + [184474] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3166), 1, + STATE(3724), 1, sym_num_lit, - ACTIONS(11145), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3292), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182736] = 6, + [184496] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3162), 1, + STATE(3722), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182758] = 6, + [184518] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3159), 1, + STATE(3716), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11232), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3331), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182780] = 6, + [184540] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3154), 1, + STATE(3715), 1, sym_num_lit, - ACTIONS(11147), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3294), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182802] = 6, + [184562] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3152), 1, + STATE(3709), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182824] = 6, + [184584] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3152), 1, + STATE(3696), 1, sym_num_lit, - ACTIONS(11149), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3298), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182846] = 6, + [184606] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3151), 1, + STATE(3690), 1, sym_num_lit, - ACTIONS(11151), 2, + ACTIONS(11234), 2, sym__ws, sym_comment, - STATE(3299), 3, + STATE(3333), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182868] = 6, + [184628] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3150), 1, + STATE(3683), 1, sym_num_lit, - ACTIONS(11153), 2, + ACTIONS(11236), 2, sym__ws, sym_comment, - STATE(3301), 3, + STATE(3334), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182890] = 6, + [184650] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3148), 1, + STATE(3682), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182912] = 6, + [184672] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3146), 1, + STATE(3745), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11238), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182934] = 6, + [184694] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3145), 1, + STATE(3628), 1, sym_num_lit, - ACTIONS(11155), 2, + ACTIONS(11240), 2, sym__ws, sym_comment, - STATE(3303), 3, + STATE(3337), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182956] = 6, + [184716] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3143), 1, + STATE(3626), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182978] = 6, + [184738] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3141), 1, + STATE(3620), 1, sym_num_lit, - ACTIONS(11157), 2, + ACTIONS(11242), 2, sym__ws, sym_comment, - STATE(3264), 3, + STATE(3338), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183000] = 6, + [184760] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3137), 1, + STATE(3613), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183022] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(10524), 1, - anon_sym_POUNDC, - ACTIONS(10526), 1, - anon_sym_POUNDc, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(2978), 1, - aux_sym_list_lit_repeat1, - [183050] = 6, + [184782] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3124), 1, + STATE(3604), 1, sym_num_lit, - ACTIONS(11159), 2, + ACTIONS(11244), 2, sym__ws, sym_comment, - STATE(3306), 3, + STATE(3341), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183072] = 6, + [184804] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3120), 1, + STATE(3603), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11246), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3344), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183094] = 6, + [184826] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3120), 1, + STATE(3601), 1, sym_num_lit, - ACTIONS(11161), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3310), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183116] = 6, + [184848] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3117), 1, + STATE(3597), 1, sym_num_lit, - ACTIONS(11163), 2, + ACTIONS(11248), 2, sym__ws, sym_comment, - STATE(3311), 3, + STATE(3349), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183138] = 6, + [184870] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3112), 1, + STATE(3756), 1, sym_num_lit, - ACTIONS(11165), 2, + ACTIONS(11250), 2, sym__ws, sym_comment, - STATE(3313), 3, + STATE(3398), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183160] = 6, + [184892] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3110), 1, + STATE(3531), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183182] = 6, + [184914] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3108), 1, + STATE(3422), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183204] = 6, + [184936] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3107), 1, + STATE(3679), 1, sym_num_lit, - ACTIONS(11167), 2, + ACTIONS(11252), 2, sym__ws, sym_comment, - STATE(3315), 3, + STATE(3352), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183226] = 6, + [184958] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3103), 1, + STATE(3820), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183248] = 6, + [184980] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3102), 1, + STATE(3596), 1, sym_num_lit, - ACTIONS(11169), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3316), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183270] = 6, + [185002] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3093), 1, + STATE(3743), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11254), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3353), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183292] = 6, + [185024] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3089), 1, + STATE(3744), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183314] = 6, + [185046] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3083), 1, + STATE(3747), 1, sym_num_lit, - ACTIONS(11171), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3319), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183336] = 6, + [185068] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3420), 1, + STATE(3865), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183358] = 6, + [185090] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3080), 1, + STATE(3875), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11256), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3355), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183380] = 6, + [185112] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3080), 1, + STATE(3860), 1, sym_num_lit, - ACTIONS(11173), 2, + ACTIONS(11258), 2, sym__ws, sym_comment, - STATE(3326), 3, + STATE(3356), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183402] = 6, + [185134] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3419), 1, + STATE(3858), 1, sym_num_lit, - ACTIONS(11175), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3365), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183424] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(10492), 1, - anon_sym_POUNDC, - ACTIONS(10494), 1, - anon_sym_POUNDc, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(2978), 1, - aux_sym_list_lit_repeat1, - [183452] = 6, + [185156] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3079), 1, + STATE(3720), 1, sym_num_lit, - ACTIONS(11177), 2, + ACTIONS(11260), 2, sym__ws, sym_comment, - STATE(3327), 3, + STATE(3358), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183474] = 6, + [185178] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3369), 1, + STATE(3521), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11262), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3359), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183496] = 6, + [185200] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3078), 1, + STATE(3611), 1, sym_num_lit, - ACTIONS(11179), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3329), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183518] = 6, + [185222] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3076), 1, + STATE(3424), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11264), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3360), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183540] = 6, + [185244] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3131), 1, + STATE(3425), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183562] = 6, + [185266] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3130), 1, + STATE(3431), 1, sym_num_lit, - ACTIONS(11181), 2, + ACTIONS(11266), 2, sym__ws, sym_comment, - STATE(3334), 3, + STATE(3363), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183584] = 6, + [185288] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3126), 1, + STATE(3434), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11268), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3366), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183606] = 6, + [185310] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3417), 1, + STATE(3436), 1, sym_num_lit, - ACTIONS(11183), 2, + ACTIONS(11270), 2, sym__ws, sym_comment, - STATE(3375), 3, + STATE(3368), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183628] = 6, + [185332] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3367), 1, + STATE(3437), 1, sym_num_lit, - ACTIONS(11185), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3366), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183650] = 6, + [185354] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3125), 1, + STATE(3785), 1, sym_num_lit, - ACTIONS(11187), 2, + ACTIONS(11272), 2, sym__ws, sym_comment, - STATE(3337), 3, + STATE(3372), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183672] = 6, + [185376] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3414), 1, + STATE(3757), 1, sym_num_lit, - ACTIONS(11189), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3387), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183694] = 6, + [185398] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3118), 1, + STATE(3612), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183716] = 6, + [185420] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3379), 1, + STATE(3617), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183738] = 6, + [185442] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3378), 1, + STATE(3624), 1, sym_num_lit, - ACTIONS(11191), 2, + ACTIONS(11274), 2, sym__ws, sym_comment, - STATE(3377), 3, + STATE(3375), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183760] = 6, + [185464] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3114), 1, + STATE(3625), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183782] = 6, + [185486] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3101), 1, + STATE(3630), 1, sym_num_lit, - ACTIONS(11193), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3339), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183804] = 6, + [185508] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3098), 1, + STATE(3638), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11276), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3376), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183826] = 6, + [185530] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3098), 1, + STATE(3677), 1, sym_num_lit, - ACTIONS(11195), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3343), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183848] = 6, + [185552] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3097), 1, + STATE(3681), 1, sym_num_lit, - ACTIONS(11197), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3344), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183870] = 6, + [185574] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3096), 1, + STATE(3686), 1, sym_num_lit, - ACTIONS(11199), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3346), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183892] = 6, + [185596] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3088), 1, + STATE(3689), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11278), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183914] = 6, + [185618] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3084), 1, + STATE(3691), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11280), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183936] = 6, + [185640] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3082), 1, + STATE(3692), 1, sym_num_lit, - ACTIONS(11201), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3348), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183958] = 6, + [185662] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3135), 1, + STATE(3699), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11282), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3381), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183980] = 6, + [185684] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3155), 1, + STATE(3700), 1, sym_num_lit, - ACTIONS(11203), 2, + ACTIONS(11284), 2, sym__ws, sym_comment, - STATE(3349), 3, + STATE(3382), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184002] = 6, + [185706] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3181), 1, + STATE(3701), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184024] = 6, + [185728] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3187), 1, + STATE(3703), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11286), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3383), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184046] = 6, + [185750] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3193), 1, + STATE(3704), 1, sym_num_lit, - ACTIONS(11205), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3351), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184068] = 6, + [185772] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3196), 1, + STATE(3708), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11288), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3386), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184090] = 6, + [185794] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3196), 1, + STATE(3711), 1, sym_num_lit, - ACTIONS(11207), 2, + ACTIONS(11290), 2, sym__ws, sym_comment, - STATE(3358), 3, + STATE(3389), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184112] = 6, + [185816] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3197), 1, + STATE(3712), 1, sym_num_lit, - ACTIONS(11209), 2, + ACTIONS(11292), 2, sym__ws, sym_comment, - STATE(3360), 3, + STATE(3391), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184134] = 6, + [185838] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3251), 1, + STATE(3713), 1, sym_num_lit, - ACTIONS(11211), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3389), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184156] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(10392), 1, - anon_sym_POUNDC, - ACTIONS(10394), 1, - anon_sym_POUNDc, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(2978), 1, - aux_sym_list_lit_repeat1, - [184184] = 6, + [185860] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3199), 1, + STATE(3719), 1, sym_num_lit, - ACTIONS(11213), 2, + ACTIONS(11294), 2, sym__ws, sym_comment, - STATE(3363), 3, + STATE(3395), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184206] = 3, + [185882] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(11215), 1, + ACTIONS(11296), 1, aux_sym_num_lit_token2, - ACTIONS(7350), 7, + ACTIONS(7419), 7, sym__ws, sym_comment, anon_sym_POUND_, @@ -193365,13502 +195294,13251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [184222] = 6, + [185898] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3204), 1, + STATE(3534), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184244] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(10592), 1, - anon_sym_POUNDC, - ACTIONS(10594), 1, - anon_sym_POUNDc, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(2978), 1, - aux_sym_list_lit_repeat1, - [184272] = 6, + [185920] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3210), 1, + STATE(3160), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11298), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3147), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184294] = 6, + [185942] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3211), 1, + STATE(3173), 1, sym_num_lit, - ACTIONS(11217), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3368), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184316] = 6, + [185964] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3374), 1, + STATE(3732), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11300), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3186), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184338] = 6, + [185986] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3226), 1, + STATE(3329), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11302), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3211), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184360] = 6, + [186008] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3228), 1, + STATE(3234), 1, sym_num_lit, - ACTIONS(11219), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3370), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184382] = 6, + [186030] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3586), 1, + STATE(3852), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11304), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3259), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184404] = 6, + [186052] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3227), 1, + STATE(3606), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184426] = 6, + [186074] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3755), 1, + STATE(3583), 1, sym_num_lit, - ACTIONS(11221), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3229), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184448] = 6, + [186096] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3234), 1, + STATE(3586), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11306), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3129), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184470] = 6, + [186118] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3661), 1, + STATE(3319), 1, sym_num_lit, - ACTIONS(11223), 2, + ACTIONS(11308), 2, sym__ws, sym_comment, - STATE(3282), 3, + STATE(3314), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184492] = 6, + [186140] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10937), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3237), 1, + STATE(3351), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184514] = 6, + [186162] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3242), 1, + STATE(3594), 1, sym_num_lit, - ACTIONS(11225), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3372), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184536] = 6, + [186184] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3244), 1, + STATE(3595), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11310), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3143), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184558] = 6, + [186206] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3244), 1, + STATE(3779), 1, sym_num_lit, - ACTIONS(11227), 2, + ACTIONS(11312), 2, sym__ws, sym_comment, - STATE(3381), 3, + STATE(3374), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184580] = 6, + [186228] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3749), 1, + STATE(3775), 1, sym_num_lit, - ACTIONS(11229), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3231), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184602] = 6, + [186250] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8075), 1, + anon_sym_CARET, + ACTIONS(8077), 1, + anon_sym_POUND_CARET, + ACTIONS(10605), 1, + anon_sym_POUNDC, + ACTIONS(10607), 1, + anon_sym_POUNDc, + STATE(2892), 1, + sym__metadata_lit, + STATE(2907), 1, + sym_meta_lit, + STATE(2915), 1, + sym_old_meta_lit, + STATE(3036), 1, + aux_sym_list_lit_repeat1, + [186278] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, + ACTIONS(10945), 1, aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10986), 1, anon_sym_POUND_, - STATE(3677), 1, + STATE(3589), 1, sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(10984), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184624] = 6, + [186300] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, - aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - STATE(3245), 1, - sym_num_lit, - ACTIONS(11231), 2, + ACTIONS(11316), 1, + anon_sym_RPAREN, + ACTIONS(11314), 2, sym__ws, sym_comment, - STATE(3382), 3, + STATE(3806), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184646] = 6, + [186319] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, - aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - STATE(3218), 1, - sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11320), 1, + anon_sym_RPAREN, + ACTIONS(11318), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3655), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184668] = 6, + [186338] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, - aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - STATE(3762), 1, - sym_num_lit, - ACTIONS(11233), 2, + ACTIONS(11322), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3221), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184690] = 6, + [186357] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, - aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - STATE(3761), 1, - sym_num_lit, - ACTIONS(11235), 2, + ACTIONS(11324), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3223), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184712] = 6, + [186376] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, - aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - STATE(3246), 1, - sym_num_lit, - ACTIONS(11237), 2, + ACTIONS(11326), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3384), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184734] = 6, + [186395] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, - aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - STATE(3248), 1, - sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11328), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184756] = 6, + [186414] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, - aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - STATE(3250), 1, - sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11332), 1, + anon_sym_RPAREN, + ACTIONS(11330), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3532), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184778] = 9, + [186433] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(10472), 1, - anon_sym_POUNDC, - ACTIONS(10474), 1, - anon_sym_POUNDc, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(2978), 1, - aux_sym_list_lit_repeat1, - [184806] = 6, + ACTIONS(10889), 1, + anon_sym_POUND_, + ACTIONS(11334), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, + sym__ws, + sym_comment, + STATE(2894), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [186452] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, - aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - STATE(3253), 1, - sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11338), 1, + anon_sym_RPAREN, + ACTIONS(11336), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3863), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184828] = 9, + [186471] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(10452), 1, - anon_sym_POUNDC, - ACTIONS(10454), 1, - anon_sym_POUNDc, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(2978), 1, - aux_sym_list_lit_repeat1, - [184856] = 6, + ACTIONS(10889), 1, + anon_sym_POUND_, + ACTIONS(11342), 1, + anon_sym_RPAREN, + ACTIONS(11340), 2, + sym__ws, + sym_comment, + STATE(3645), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [186490] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, - aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - STATE(3254), 1, - sym_num_lit, - ACTIONS(11239), 2, + ACTIONS(11344), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3390), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184878] = 6, + [186509] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10870), 1, - aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - STATE(3760), 1, - sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11346), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184900] = 9, + [186528] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(10412), 1, - anon_sym_POUNDC, - ACTIONS(10414), 1, - anon_sym_POUNDc, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(2978), 1, - aux_sym_list_lit_repeat1, - [184928] = 6, + ACTIONS(10889), 1, + anon_sym_POUND_, + ACTIONS(11348), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, + sym__ws, + sym_comment, + STATE(2894), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [186547] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, - aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - STATE(3258), 1, - sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11350), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184950] = 6, + [186566] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10844), 1, - aux_sym_num_lit_token1, - ACTIONS(10913), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - STATE(3261), 1, - sym_num_lit, - ACTIONS(10911), 2, + ACTIONS(11352), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184972] = 9, + [186585] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, - anon_sym_CARET, - ACTIONS(8008), 1, - anon_sym_POUND_CARET, - ACTIONS(10432), 1, - anon_sym_POUNDC, - ACTIONS(10434), 1, - anon_sym_POUNDc, - STATE(2867), 1, - sym__metadata_lit, - STATE(2919), 1, - sym_old_meta_lit, - STATE(2923), 1, - sym_meta_lit, - STATE(2978), 1, - aux_sym_list_lit_repeat1, - [185000] = 5, + ACTIONS(10889), 1, + anon_sym_POUND_, + ACTIONS(11356), 1, + anon_sym_RPAREN, + ACTIONS(11354), 2, + sym__ws, + sym_comment, + STATE(3740), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [186604] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11241), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11358), 1, + anon_sym_LPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185019] = 5, + [186623] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11243), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11360), 1, + anon_sym_LPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185038] = 5, + [186642] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11245), 1, + ACTIONS(11364), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11362), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3609), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185057] = 5, + [186661] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11247), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11368), 1, + anon_sym_LPAREN, + ACTIONS(11366), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3432), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185076] = 5, + [186680] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11249), 1, + ACTIONS(11372), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11370), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3427), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185095] = 5, + [186699] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11253), 1, + ACTIONS(11376), 1, anon_sym_RPAREN, - ACTIONS(11251), 2, + ACTIONS(11374), 2, sym__ws, sym_comment, - STATE(3399), 3, + STATE(3429), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185114] = 5, + [186718] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11255), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11380), 1, + anon_sym_LPAREN, + ACTIONS(11378), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3433), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185133] = 5, + [186737] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11257), 1, + ACTIONS(11382), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185152] = 5, + [186756] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11259), 1, + ACTIONS(11384), 1, anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185171] = 5, + [186775] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11261), 1, - anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(11388), 1, + anon_sym_RPAREN, + ACTIONS(11386), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3445), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185190] = 5, + [186794] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11265), 1, + ACTIONS(11392), 1, anon_sym_LPAREN, - ACTIONS(11263), 2, + ACTIONS(11390), 2, sym__ws, sym_comment, - STATE(3400), 3, + STATE(3440), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185209] = 5, + [186813] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11269), 1, + ACTIONS(11394), 1, anon_sym_LPAREN, - ACTIONS(11267), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3401), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185228] = 5, + [186832] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11271), 1, + ACTIONS(11396), 1, anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185247] = 5, + [186851] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11275), 1, - anon_sym_LPAREN, - ACTIONS(11273), 2, + ACTIONS(11398), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3404), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185266] = 5, + [186870] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11277), 1, - anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(11402), 1, + anon_sym_RPAREN, + ACTIONS(11400), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3451), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185285] = 5, + [186889] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11279), 1, - anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(11406), 1, + anon_sym_RPAREN, + ACTIONS(11404), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3452), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185304] = 5, + [186908] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11283), 1, - anon_sym_LPAREN, - ACTIONS(11281), 2, + ACTIONS(11410), 1, + anon_sym_RPAREN, + ACTIONS(11408), 2, sym__ws, sym_comment, - STATE(3406), 3, + STATE(3455), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185323] = 5, + [186927] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11287), 1, - anon_sym_LPAREN, - ACTIONS(11285), 2, + ACTIONS(11414), 1, + anon_sym_RPAREN, + ACTIONS(11412), 2, sym__ws, sym_comment, - STATE(3407), 3, + STATE(3459), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185342] = 5, + [186946] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11289), 1, + ACTIONS(11418), 1, anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(11416), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3443), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185361] = 5, + [186965] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11293), 1, - anon_sym_LPAREN, - ACTIONS(11291), 2, + ACTIONS(11420), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3410), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185380] = 5, + [186984] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11295), 1, - anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(11422), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185399] = 5, + [187003] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11297), 1, - anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(11426), 1, + anon_sym_RPAREN, + ACTIONS(11424), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3463), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185418] = 5, + [187022] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11301), 1, + ACTIONS(11430), 1, anon_sym_RPAREN, - ACTIONS(11299), 2, + ACTIONS(11428), 2, sym__ws, sym_comment, - STATE(3758), 3, + STATE(3464), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185437] = 5, + [187041] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11305), 1, - anon_sym_LPAREN, - ACTIONS(11303), 2, + ACTIONS(11432), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3412), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185456] = 5, + [187060] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11309), 1, - anon_sym_LPAREN, - ACTIONS(11307), 2, + ACTIONS(11436), 1, + anon_sym_RPAREN, + ACTIONS(11434), 2, sym__ws, sym_comment, - STATE(3413), 3, + STATE(3466), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185475] = 5, + [187079] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11313), 1, + ACTIONS(11440), 1, anon_sym_RPAREN, - ACTIONS(11311), 2, + ACTIONS(11438), 2, sym__ws, sym_comment, - STATE(3676), 3, + STATE(3467), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185494] = 5, + [187098] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11317), 1, + ACTIONS(11444), 1, anon_sym_RPAREN, - ACTIONS(11315), 2, + ACTIONS(11442), 2, sym__ws, sym_comment, - STATE(3422), 3, + STATE(3469), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185513] = 5, + [187117] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11321), 1, + ACTIONS(11446), 1, anon_sym_RPAREN, - ACTIONS(11319), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3604), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185532] = 5, + [187136] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11325), 1, + ACTIONS(11450), 1, anon_sym_RPAREN, - ACTIONS(11323), 2, + ACTIONS(11448), 2, sym__ws, sym_comment, - STATE(3599), 3, + STATE(3472), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185551] = 5, + [187155] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11327), 1, + ACTIONS(11454), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11452), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3473), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185570] = 5, + [187174] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11329), 1, + ACTIONS(11458), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11456), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3475), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185589] = 5, + [187193] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11333), 1, + ACTIONS(11460), 1, anon_sym_RPAREN, - ACTIONS(11331), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3427), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185608] = 5, + [187212] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11337), 1, + ACTIONS(11462), 1, anon_sym_RPAREN, - ACTIONS(11335), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3428), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185627] = 5, + [187231] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11341), 1, + ACTIONS(11466), 1, anon_sym_RPAREN, - ACTIONS(11339), 2, + ACTIONS(11464), 2, sym__ws, sym_comment, - STATE(3431), 3, + STATE(3478), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185646] = 5, + [187250] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11345), 1, + ACTIONS(11468), 1, anon_sym_RPAREN, - ACTIONS(11343), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3435), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185665] = 5, + [187269] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11347), 1, + ACTIONS(11470), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185684] = 5, + [187288] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11349), 1, + ACTIONS(11474), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11472), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3479), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185703] = 5, + [187307] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11353), 1, + ACTIONS(11476), 1, anon_sym_RPAREN, - ACTIONS(11351), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3439), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185722] = 5, + [187326] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11357), 1, + ACTIONS(11480), 1, anon_sym_RPAREN, - ACTIONS(11355), 2, + ACTIONS(11478), 2, sym__ws, sym_comment, - STATE(3440), 3, + STATE(3480), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185741] = 5, + [187345] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11359), 1, + ACTIONS(11484), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11482), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3481), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185760] = 5, + [187364] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11363), 1, + ACTIONS(11486), 1, anon_sym_RPAREN, - ACTIONS(11361), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3442), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185779] = 5, + [187383] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11367), 1, + ACTIONS(11488), 1, anon_sym_RPAREN, - ACTIONS(11365), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3443), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185798] = 5, + [187402] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11371), 1, + ACTIONS(11492), 1, anon_sym_RPAREN, - ACTIONS(11369), 2, + ACTIONS(11490), 2, sym__ws, sym_comment, - STATE(3445), 3, + STATE(3483), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185817] = 5, + [187421] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11373), 1, + ACTIONS(11494), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185836] = 5, + [187440] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11377), 1, + ACTIONS(11498), 1, anon_sym_RPAREN, - ACTIONS(11375), 2, + ACTIONS(11496), 2, sym__ws, sym_comment, - STATE(3448), 3, + STATE(3484), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185855] = 5, + [187459] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11381), 1, + ACTIONS(11502), 1, anon_sym_RPAREN, - ACTIONS(11379), 2, + ACTIONS(11500), 2, sym__ws, sym_comment, - STATE(3449), 3, + STATE(3485), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185874] = 5, + [187478] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11385), 1, + ACTIONS(11504), 1, anon_sym_RPAREN, - ACTIONS(11383), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3451), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185893] = 5, + [187497] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11387), 1, + ACTIONS(11506), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185912] = 5, + [187516] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11389), 1, + ACTIONS(11508), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185931] = 5, + [187535] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11393), 1, + ACTIONS(11510), 1, anon_sym_RPAREN, - ACTIONS(11391), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3454), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185950] = 5, + [187554] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11395), 1, + ACTIONS(11514), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11512), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3487), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185969] = 5, + [187573] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11397), 1, + ACTIONS(11516), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185988] = 5, + [187592] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11401), 1, + ACTIONS(11518), 1, anon_sym_RPAREN, - ACTIONS(11399), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3455), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186007] = 5, + [187611] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11403), 1, + ACTIONS(11520), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186026] = 5, + [187630] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11407), 1, + ACTIONS(11524), 1, anon_sym_RPAREN, - ACTIONS(11405), 2, + ACTIONS(11522), 2, sym__ws, sym_comment, - STATE(3456), 3, + STATE(3488), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186045] = 5, + [187649] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11411), 1, + ACTIONS(11526), 1, anon_sym_RPAREN, - ACTIONS(11409), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3457), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186064] = 5, + [187668] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11413), 1, + ACTIONS(11528), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186083] = 5, + [187687] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11415), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11532), 1, + anon_sym_LPAREN, + ACTIONS(11530), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3444), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186102] = 5, + [187706] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11419), 1, - anon_sym_RPAREN, - ACTIONS(11417), 2, + ACTIONS(11534), 1, + anon_sym_LPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3459), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186121] = 5, + [187725] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11421), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11538), 1, + anon_sym_LPAREN, + ACTIONS(11536), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3490), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186140] = 5, + [187744] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11425), 1, - anon_sym_RPAREN, - ACTIONS(11423), 2, + ACTIONS(11540), 1, + anon_sym_LPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3460), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186159] = 5, + [187763] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11429), 1, - anon_sym_RPAREN, - ACTIONS(11427), 2, + ACTIONS(11542), 1, + anon_sym_LPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3461), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186178] = 5, + [187782] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11431), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11546), 1, + anon_sym_LPAREN, + ACTIONS(11544), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3492), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186197] = 5, + [187801] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11433), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11550), 1, + anon_sym_LPAREN, + ACTIONS(11548), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3493), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186216] = 5, + [187820] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11435), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11552), 1, + anon_sym_LPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186235] = 5, + [187839] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11437), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11556), 1, + anon_sym_LPAREN, + ACTIONS(11554), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3496), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186254] = 5, + [187858] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11441), 1, - anon_sym_RPAREN, - ACTIONS(11439), 2, + ACTIONS(11558), 1, + anon_sym_LPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3463), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186273] = 5, + [187877] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11443), 1, + ACTIONS(11560), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186292] = 5, + [187896] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11445), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11562), 1, + anon_sym_LPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186311] = 5, + [187915] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11447), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11566), 1, + anon_sym_LPAREN, + ACTIONS(11564), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3498), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186330] = 5, + [187934] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11451), 1, - anon_sym_RPAREN, - ACTIONS(11449), 2, + ACTIONS(11570), 1, + anon_sym_LPAREN, + ACTIONS(11568), 2, sym__ws, sym_comment, - STATE(3464), 3, + STATE(3500), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186349] = 5, + [187953] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11453), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11572), 1, + anon_sym_LPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186368] = 5, + [187972] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11455), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11576), 1, + anon_sym_LPAREN, + ACTIONS(11574), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3503), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186387] = 5, + [187991] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11459), 1, - anon_sym_RPAREN, - ACTIONS(11457), 2, + ACTIONS(11578), 1, + anon_sym_LPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3470), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186406] = 5, + [188010] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11461), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11580), 1, + anon_sym_LPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186425] = 5, + [188029] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11463), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11584), 1, + anon_sym_LPAREN, + ACTIONS(11582), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3505), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186444] = 5, + [188048] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11465), 1, + ACTIONS(11588), 1, anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(11586), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3506), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186463] = 5, + [188067] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11469), 1, + ACTIONS(11590), 1, anon_sym_LPAREN, - ACTIONS(11467), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3468), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186482] = 5, + [188086] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11471), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11594), 1, + anon_sym_LPAREN, + ACTIONS(11592), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3509), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186501] = 5, + [188105] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11473), 1, + ACTIONS(11596), 1, anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186520] = 5, + [188124] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11475), 1, + ACTIONS(11598), 1, anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186539] = 5, + [188143] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11479), 1, + ACTIONS(11602), 1, anon_sym_LPAREN, - ACTIONS(11477), 2, + ACTIONS(11600), 2, sym__ws, sym_comment, - STATE(3471), 3, + STATE(3511), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186558] = 5, + [188162] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11481), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11606), 1, + anon_sym_LPAREN, + ACTIONS(11604), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3512), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186577] = 5, + [188181] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11485), 1, - anon_sym_RPAREN, - ACTIONS(11483), 2, + ACTIONS(11608), 1, + anon_sym_LPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3396), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186596] = 5, + [188200] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11489), 1, - anon_sym_RPAREN, - ACTIONS(11487), 2, + ACTIONS(11612), 1, + anon_sym_LPAREN, + ACTIONS(11610), 2, sym__ws, sym_comment, - STATE(3395), 3, + STATE(3515), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186615] = 5, + [188219] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11491), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11614), 1, + anon_sym_LPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186634] = 5, + [188238] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11495), 1, - anon_sym_RPAREN, - ACTIONS(11493), 2, + ACTIONS(11616), 1, + anon_sym_LPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3394), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186653] = 5, + [188257] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11497), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11620), 1, + anon_sym_LPAREN, + ACTIONS(11618), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3517), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186672] = 5, + [188276] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11499), 1, + ACTIONS(11624), 1, + anon_sym_LPAREN, + ACTIONS(11622), 2, + sym__ws, + sym_comment, + STATE(3518), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [188295] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10889), 1, + anon_sym_POUND_, + ACTIONS(11628), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11626), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3749), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186691] = 5, + [188314] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11503), 1, + ACTIONS(11630), 1, anon_sym_LPAREN, - ACTIONS(11501), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3472), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186710] = 5, + [188333] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11507), 1, - anon_sym_RPAREN, - ACTIONS(11505), 2, + ACTIONS(11634), 1, + anon_sym_LPAREN, + ACTIONS(11632), 2, sym__ws, sym_comment, - STATE(3466), 3, + STATE(3522), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186729] = 5, + [188352] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11509), 1, + ACTIONS(11636), 1, anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186748] = 5, + [188371] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11513), 1, + ACTIONS(11638), 1, anon_sym_LPAREN, - ACTIONS(11511), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3483), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186767] = 5, + [188390] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11515), 1, + ACTIONS(11642), 1, anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(11640), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3524), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186786] = 5, + [188409] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11517), 1, + ACTIONS(11646), 1, anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(11644), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3525), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186805] = 5, + [188428] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11521), 1, + ACTIONS(11650), 1, anon_sym_RPAREN, - ACTIONS(11519), 2, + ACTIONS(11648), 2, sym__ws, sym_comment, - STATE(3467), 3, + STATE(3774), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186824] = 5, + [188447] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11525), 1, + ACTIONS(11652), 1, anon_sym_LPAREN, - ACTIONS(11523), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3485), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186843] = 5, + [188466] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11529), 1, + ACTIONS(11656), 1, anon_sym_LPAREN, - ACTIONS(11527), 2, + ACTIONS(11654), 2, sym__ws, sym_comment, - STATE(3486), 3, + STATE(3529), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186862] = 5, + [188485] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11531), 1, - anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(11660), 1, + anon_sym_RPAREN, + ACTIONS(11658), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3533), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186881] = 5, + [188504] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11533), 1, + ACTIONS(11662), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186900] = 5, + [188523] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11537), 1, - anon_sym_LPAREN, - ACTIONS(11535), 2, + ACTIONS(11664), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3490), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186919] = 5, + [188542] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11539), 1, + ACTIONS(11668), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11666), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3751), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186938] = 5, + [188561] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11541), 1, + ACTIONS(11672), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11670), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3539), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186957] = 5, + [188580] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11545), 1, + ACTIONS(11674), 1, anon_sym_RPAREN, - ACTIONS(11543), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3474), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186976] = 5, + [188599] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11547), 1, - anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(11676), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186995] = 5, + [188618] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11549), 1, + ACTIONS(11680), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11678), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3590), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187014] = 5, + [188637] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11551), 1, + ACTIONS(11682), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187033] = 5, + [188656] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11555), 1, + ACTIONS(11686), 1, anon_sym_RPAREN, - ACTIONS(11553), 2, + ACTIONS(11684), 2, sym__ws, sym_comment, - STATE(3477), 3, + STATE(3545), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187052] = 5, + [188675] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11559), 1, + ACTIONS(11690), 1, anon_sym_RPAREN, - ACTIONS(11557), 2, + ACTIONS(11688), 2, sym__ws, sym_comment, - STATE(3479), 3, + STATE(3546), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187071] = 5, + [188694] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11563), 1, + ACTIONS(11694), 1, anon_sym_RPAREN, - ACTIONS(11561), 2, + ACTIONS(11692), 2, sym__ws, sym_comment, - STATE(3480), 3, + STATE(3549), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187090] = 5, + [188713] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11565), 1, - anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(11698), 1, + anon_sym_RPAREN, + ACTIONS(11696), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3553), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187109] = 5, + [188732] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11569), 1, - anon_sym_LPAREN, - ACTIONS(11567), 2, + ACTIONS(11700), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3496), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187128] = 5, + [188751] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11571), 1, + ACTIONS(11702), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187147] = 5, + [188770] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11575), 1, + ACTIONS(11704), 1, anon_sym_RPAREN, - ACTIONS(11573), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3491), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187166] = 5, + [188789] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11579), 1, + ACTIONS(11708), 1, anon_sym_RPAREN, - ACTIONS(11577), 2, + ACTIONS(11706), 2, sym__ws, sym_comment, - STATE(3493), 3, + STATE(3557), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187185] = 5, + [188808] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11583), 1, + ACTIONS(11712), 1, anon_sym_RPAREN, - ACTIONS(11581), 2, + ACTIONS(11710), 2, sym__ws, sym_comment, - STATE(3494), 3, + STATE(3558), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187204] = 5, + [188827] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11587), 1, - anon_sym_LPAREN, - ACTIONS(11585), 2, + ACTIONS(11714), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3502), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187223] = 5, + [188846] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11589), 1, - anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(11718), 1, + anon_sym_RPAREN, + ACTIONS(11716), 2, + sym__ws, + sym_comment, + STATE(3560), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [188865] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10889), 1, + anon_sym_POUND_, + ACTIONS(11722), 1, + anon_sym_RPAREN, + ACTIONS(11720), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3561), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187242] = 5, + [188884] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11593), 1, - anon_sym_LPAREN, - ACTIONS(11591), 2, + ACTIONS(11726), 1, + anon_sym_RPAREN, + ACTIONS(11724), 2, sym__ws, sym_comment, - STATE(3509), 3, + STATE(3563), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187261] = 5, + [188903] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11597), 1, + ACTIONS(11728), 1, anon_sym_RPAREN, - ACTIONS(11595), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3515), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187280] = 5, + [188922] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11599), 1, - anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(11732), 1, + anon_sym_RPAREN, + ACTIONS(11730), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3566), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187299] = 5, + [188941] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11601), 1, - anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(11736), 1, + anon_sym_RPAREN, + ACTIONS(11734), 2, + sym__ws, + sym_comment, + STATE(3567), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [188960] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10889), 1, + anon_sym_POUND_, + ACTIONS(11740), 1, + anon_sym_RPAREN, + ACTIONS(11738), 2, + sym__ws, + sym_comment, + STATE(3569), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [188979] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10889), 1, + anon_sym_POUND_, + ACTIONS(11742), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, + sym__ws, + sym_comment, + STATE(2894), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [188998] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10889), 1, + anon_sym_POUND_, + ACTIONS(11744), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, + sym__ws, + sym_comment, + STATE(2894), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [189017] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10889), 1, + anon_sym_POUND_, + ACTIONS(11748), 1, + anon_sym_RPAREN, + ACTIONS(11746), 2, + sym__ws, + sym_comment, + STATE(3572), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [189036] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10889), 1, + anon_sym_POUND_, + ACTIONS(11750), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, + sym__ws, + sym_comment, + STATE(2894), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [189055] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10889), 1, + anon_sym_POUND_, + ACTIONS(11752), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, + sym__ws, + sym_comment, + STATE(2894), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [189074] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10889), 1, + anon_sym_POUND_, + ACTIONS(11756), 1, + anon_sym_RPAREN, + ACTIONS(11754), 2, + sym__ws, + sym_comment, + STATE(3573), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [189093] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10889), 1, + anon_sym_POUND_, + ACTIONS(11758), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187318] = 5, + [189112] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11603), 1, + ACTIONS(11762), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11760), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3574), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187337] = 5, + [189131] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11605), 1, + ACTIONS(11766), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11764), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3575), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187356] = 5, + [189150] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11609), 1, + ACTIONS(11768), 1, anon_sym_RPAREN, - ACTIONS(11607), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3521), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187375] = 5, + [189169] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11613), 1, + ACTIONS(11770), 1, anon_sym_RPAREN, - ACTIONS(11611), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3522), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187394] = 5, + [189188] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11617), 1, + ACTIONS(11774), 1, anon_sym_RPAREN, - ACTIONS(11615), 2, + ACTIONS(11772), 2, sym__ws, sym_comment, - STATE(3525), 3, + STATE(3577), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187413] = 5, + [189207] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11621), 1, + ACTIONS(11776), 1, anon_sym_RPAREN, - ACTIONS(11619), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3529), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187432] = 5, + [189226] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11625), 1, + ACTIONS(11780), 1, anon_sym_RPAREN, - ACTIONS(11623), 2, + ACTIONS(11778), 2, sym__ws, sym_comment, - STATE(3497), 3, + STATE(3578), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187451] = 5, + [189245] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11627), 1, + ACTIONS(11784), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11782), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3579), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187470] = 5, + [189264] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11629), 1, + ACTIONS(11786), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187489] = 5, + [189283] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11633), 1, + ACTIONS(11788), 1, anon_sym_RPAREN, - ACTIONS(11631), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3533), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187508] = 5, + [189302] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11637), 1, + ACTIONS(11790), 1, anon_sym_RPAREN, - ACTIONS(11635), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3534), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187527] = 5, + [189321] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11639), 1, + ACTIONS(11792), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187546] = 5, + [189340] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11643), 1, + ACTIONS(11796), 1, anon_sym_RPAREN, - ACTIONS(11641), 2, + ACTIONS(11794), 2, sym__ws, sym_comment, - STATE(3536), 3, + STATE(3581), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187565] = 5, + [189359] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11647), 1, + ACTIONS(11798), 1, anon_sym_RPAREN, - ACTIONS(11645), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3537), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187584] = 5, + [189378] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11651), 1, + ACTIONS(11800), 1, anon_sym_RPAREN, - ACTIONS(11649), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3539), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187603] = 5, + [189397] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11653), 1, + ACTIONS(11802), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187622] = 5, + [189416] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11657), 1, + ACTIONS(11806), 1, anon_sym_RPAREN, - ACTIONS(11655), 2, + ACTIONS(11804), 2, sym__ws, sym_comment, - STATE(3542), 3, + STATE(3582), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187641] = 5, + [189435] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11661), 1, + ACTIONS(11808), 1, anon_sym_RPAREN, - ACTIONS(11659), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3543), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187660] = 5, + [189454] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11665), 1, + ACTIONS(11810), 1, anon_sym_RPAREN, - ACTIONS(11663), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3545), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187679] = 5, + [189473] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11667), 1, + ACTIONS(11814), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11812), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3758), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187698] = 5, + [189492] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11669), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11818), 1, + anon_sym_LPAREN, + ACTIONS(11816), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3752), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187717] = 5, + [189511] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11673), 1, - anon_sym_RPAREN, - ACTIONS(11671), 2, + ACTIONS(11822), 1, + anon_sym_LPAREN, + ACTIONS(11820), 2, sym__ws, sym_comment, - STATE(3548), 3, + STATE(3754), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187736] = 5, + [189530] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11675), 1, + ACTIONS(11826), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11824), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3759), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187755] = 5, + [189549] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11677), 1, + ACTIONS(11828), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187774] = 5, + [189568] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11681), 1, + ACTIONS(11830), 1, anon_sym_RPAREN, - ACTIONS(11679), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3549), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187793] = 5, + [189587] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11683), 1, + ACTIONS(11834), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11832), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3761), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187812] = 5, + [189606] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11687), 1, + ACTIONS(11836), 1, anon_sym_RPAREN, - ACTIONS(11685), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3550), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187831] = 5, + [189625] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11691), 1, + ACTIONS(11838), 1, anon_sym_RPAREN, - ACTIONS(11689), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3551), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187850] = 5, + [189644] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11693), 1, + ACTIONS(11840), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187869] = 5, + [189663] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11695), 1, + ACTIONS(11842), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187888] = 5, + [189682] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11699), 1, + ACTIONS(11846), 1, anon_sym_RPAREN, - ACTIONS(11697), 2, + ACTIONS(11844), 2, sym__ws, sym_comment, - STATE(3553), 3, + STATE(3764), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187907] = 5, + [189701] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11701), 1, + ACTIONS(11850), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11848), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3766), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187926] = 5, + [189720] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11705), 1, + ACTIONS(11854), 1, anon_sym_RPAREN, - ACTIONS(11703), 2, + ACTIONS(11852), 2, sym__ws, sym_comment, - STATE(3554), 3, + STATE(3423), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187945] = 5, + [189739] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11709), 1, + ACTIONS(11858), 1, anon_sym_RPAREN, - ACTIONS(11707), 2, + ACTIONS(11856), 2, sym__ws, sym_comment, - STATE(3555), 3, + STATE(3599), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187964] = 5, + [189758] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11711), 1, + ACTIONS(11862), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11860), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3588), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187983] = 5, + [189777] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11713), 1, + ACTIONS(11864), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188002] = 5, + [189796] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11715), 1, + ACTIONS(11868), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11866), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3587), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188021] = 5, + [189815] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11717), 1, + ACTIONS(11872), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11870), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3607), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188040] = 5, + [189834] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11721), 1, + ACTIONS(11876), 1, anon_sym_RPAREN, - ACTIONS(11719), 2, + ACTIONS(11874), 2, sym__ws, sym_comment, - STATE(3557), 3, + STATE(3608), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188059] = 5, + [189853] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11723), 1, + ACTIONS(11880), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11878), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3621), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188078] = 5, + [189872] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11725), 1, + ACTIONS(11884), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11882), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3680), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188097] = 5, + [189891] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11727), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11886), 1, + anon_sym_LPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188116] = 5, + [189910] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11731), 1, + ACTIONS(11890), 1, anon_sym_RPAREN, - ACTIONS(11729), 2, + ACTIONS(11888), 2, sym__ws, sym_comment, - STATE(3558), 3, + STATE(3755), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188135] = 5, + [189929] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11733), 1, + ACTIONS(11892), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188154] = 5, + [189948] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11735), 1, + ACTIONS(11894), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188173] = 5, + [189967] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11739), 1, + ACTIONS(11896), 1, anon_sym_RPAREN, - ACTIONS(11737), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3498), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188192] = 5, + [189986] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11741), 1, + ACTIONS(11898), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188211] = 5, + [190005] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11743), 1, + ACTIONS(11902), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, - sym__ws, - sym_comment, - STATE(2868), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [188230] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(11747), 1, - anon_sym_LPAREN, - ACTIONS(11745), 2, + ACTIONS(11900), 2, sym__ws, sym_comment, - STATE(3512), 3, + STATE(3750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188249] = 5, + [190024] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11751), 1, - anon_sym_LPAREN, - ACTIONS(11749), 2, - sym__ws, - sym_comment, - STATE(3513), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [188268] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(11755), 1, + ACTIONS(11906), 1, anon_sym_RPAREN, - ACTIONS(11753), 2, - sym__ws, - sym_comment, - STATE(3421), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [188287] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(11757), 1, - anon_sym_LPAREN, - ACTIONS(10820), 2, - sym__ws, - sym_comment, - STATE(2868), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [188306] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(11761), 1, - anon_sym_LPAREN, - ACTIONS(11759), 2, - sym__ws, - sym_comment, - STATE(3565), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [188325] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(11763), 1, - anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(11904), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3610), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188344] = 5, + [190043] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11767), 1, + ACTIONS(11910), 1, anon_sym_RPAREN, - ACTIONS(11765), 2, + ACTIONS(11908), 2, sym__ws, sym_comment, - STATE(3504), 3, + STATE(3694), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188363] = 5, + [190062] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11771), 1, + ACTIONS(11912), 1, anon_sym_RPAREN, - ACTIONS(11769), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3514), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188382] = 5, + [190081] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11775), 1, + ACTIONS(11914), 1, anon_sym_RPAREN, - ACTIONS(11773), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3560), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188401] = 5, + [190100] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11779), 1, + ACTIONS(11916), 1, anon_sym_RPAREN, - ACTIONS(11777), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3561), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188420] = 5, + [190119] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11781), 1, + ACTIONS(11920), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11918), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3593), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188439] = 5, + [190138] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11783), 1, - anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(11922), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188458] = 5, + [190157] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11787), 1, + ACTIONS(11924), 1, anon_sym_RPAREN, - ACTIONS(11785), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3572), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188477] = 5, + [190176] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11791), 1, - anon_sym_LPAREN, - ACTIONS(11789), 2, + ACTIONS(11928), 1, + anon_sym_RPAREN, + ACTIONS(11926), 2, sym__ws, sym_comment, - STATE(3567), 3, + STATE(3695), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188496] = 5, + [190195] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11795), 1, - anon_sym_LPAREN, - ACTIONS(11793), 2, + ACTIONS(11930), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3573), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188515] = 5, + [190214] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11797), 1, - anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(11932), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188534] = 5, + [190233] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11801), 1, - anon_sym_LPAREN, - ACTIONS(11799), 2, + ACTIONS(11934), 1, + anon_sym_RPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3577), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188553] = 5, + [190252] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11803), 1, + ACTIONS(11938), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11936), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3614), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188572] = 5, + [190271] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11805), 1, + ACTIONS(11942), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11940), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3615), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188591] = 5, + [190290] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11807), 1, + ACTIONS(11946), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11944), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3697), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188610] = 5, + [190309] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11811), 1, + ACTIONS(11948), 1, anon_sym_RPAREN, - ACTIONS(11809), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3579), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188629] = 5, + [190328] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11813), 1, + ACTIONS(11952), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11950), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3698), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188648] = 5, + [190347] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11815), 1, + ACTIONS(11956), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11954), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3633), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188667] = 5, + [190366] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11817), 1, + ACTIONS(11960), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11958), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3616), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188686] = 5, + [190385] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11821), 1, + ACTIONS(11962), 1, anon_sym_RPAREN, - ACTIONS(11819), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3851), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188705] = 5, + [190404] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11825), 1, + ACTIONS(11964), 1, anon_sym_RPAREN, - ACTIONS(11823), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3580), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188724] = 5, + [190423] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11827), 1, + ACTIONS(11966), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188743] = 5, + [190442] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11829), 1, + ACTIONS(11970), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11968), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3639), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188762] = 5, + [190461] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11831), 1, + ACTIONS(11974), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11972), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3640), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188781] = 5, + [190480] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11835), 1, + ACTIONS(11978), 1, anon_sym_RPAREN, - ACTIONS(11833), 2, + ACTIONS(11976), 2, sym__ws, sym_comment, - STATE(3592), 3, + STATE(3643), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188800] = 5, + [190499] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11837), 1, + ACTIONS(11982), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11980), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3647), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188819] = 5, + [190518] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11841), 1, + ACTIONS(11986), 1, anon_sym_RPAREN, - ACTIONS(11839), 2, + ACTIONS(11984), 2, sym__ws, sym_comment, - STATE(3597), 3, + STATE(3618), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188838] = 5, + [190537] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11845), 1, + ACTIONS(11988), 1, anon_sym_RPAREN, - ACTIONS(11843), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3598), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188857] = 5, + [190556] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11849), 1, + ACTIONS(11990), 1, anon_sym_RPAREN, - ACTIONS(11847), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3602), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188876] = 5, + [190575] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11853), 1, + ACTIONS(11994), 1, anon_sym_RPAREN, - ACTIONS(11851), 2, + ACTIONS(11992), 2, sym__ws, sym_comment, - STATE(3608), 3, + STATE(3651), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188895] = 5, + [190594] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11855), 1, + ACTIONS(11998), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(11996), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3652), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188914] = 5, + [190613] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11857), 1, + ACTIONS(12000), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188933] = 5, + [190632] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11859), 1, + ACTIONS(12004), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12002), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3654), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188952] = 5, + [190651] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11863), 1, + ACTIONS(12006), 1, anon_sym_RPAREN, - ACTIONS(11861), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3656), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188971] = 5, + [190670] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11867), 1, + ACTIONS(12010), 1, anon_sym_RPAREN, - ACTIONS(11865), 2, + ACTIONS(12008), 2, sym__ws, sym_comment, STATE(3657), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188990] = 5, + [190689] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11869), 1, + ACTIONS(12012), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189009] = 5, + [190708] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11873), 1, + ACTIONS(12016), 1, anon_sym_RPAREN, - ACTIONS(11871), 2, + ACTIONS(12014), 2, sym__ws, sym_comment, - STATE(3659), 3, + STATE(3660), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189028] = 5, + [190727] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11875), 1, + ACTIONS(12020), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12018), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3661), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189047] = 5, + [190746] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11879), 1, + ACTIONS(12024), 1, anon_sym_RPAREN, - ACTIONS(11877), 2, + ACTIONS(12022), 2, sym__ws, sym_comment, - STATE(3609), 3, + STATE(3663), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189066] = 5, + [190765] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11883), 1, + ACTIONS(12026), 1, anon_sym_RPAREN, - ACTIONS(11881), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3662), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189085] = 5, + [190784] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11887), 1, + ACTIONS(12028), 1, anon_sym_RPAREN, - ACTIONS(11885), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3664), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189104] = 5, + [190803] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11889), 1, + ACTIONS(12032), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12030), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3666), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189123] = 5, + [190822] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11891), 1, + ACTIONS(12034), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189142] = 5, + [190841] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11895), 1, + ACTIONS(12036), 1, anon_sym_RPAREN, - ACTIONS(11893), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3615), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189161] = 5, + [190860] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11899), 1, + ACTIONS(12040), 1, anon_sym_RPAREN, - ACTIONS(11897), 2, + ACTIONS(12038), 2, sym__ws, sym_comment, - STATE(3616), 3, + STATE(3667), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189180] = 5, + [190879] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11903), 1, + ACTIONS(12042), 1, anon_sym_RPAREN, - ACTIONS(11901), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3619), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189199] = 5, + [190898] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11907), 1, + ACTIONS(12046), 1, anon_sym_RPAREN, - ACTIONS(11905), 2, + ACTIONS(12044), 2, sym__ws, sym_comment, - STATE(3623), 3, + STATE(3668), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189218] = 5, + [190917] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11911), 1, + ACTIONS(12050), 1, anon_sym_RPAREN, - ACTIONS(11909), 2, + ACTIONS(12048), 2, sym__ws, sym_comment, STATE(3669), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189237] = 5, + [190936] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11913), 1, + ACTIONS(12052), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189256] = 5, + [190955] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11915), 1, + ACTIONS(12054), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189275] = 5, + [190974] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11919), 1, + ACTIONS(12058), 1, anon_sym_RPAREN, - ACTIONS(11917), 2, + ACTIONS(12056), 2, sym__ws, sym_comment, - STATE(3627), 3, + STATE(3671), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189294] = 5, + [190993] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11923), 1, + ACTIONS(12060), 1, anon_sym_RPAREN, - ACTIONS(11921), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3628), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189313] = 5, + [191012] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11925), 1, + ACTIONS(12064), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12062), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3672), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189332] = 5, + [191031] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11929), 1, + ACTIONS(12068), 1, anon_sym_RPAREN, - ACTIONS(11927), 2, + ACTIONS(12066), 2, sym__ws, sym_comment, - STATE(3630), 3, + STATE(3673), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189351] = 5, + [191050] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11933), 1, + ACTIONS(12070), 1, anon_sym_RPAREN, - ACTIONS(11931), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3631), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189370] = 5, + [191069] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11937), 1, + ACTIONS(12072), 1, anon_sym_RPAREN, - ACTIONS(11935), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3633), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189389] = 5, + [191088] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11939), 1, + ACTIONS(12074), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189408] = 5, + [191107] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11943), 1, + ACTIONS(12076), 1, anon_sym_RPAREN, - ACTIONS(11941), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3636), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189427] = 5, + [191126] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11947), 1, + ACTIONS(12080), 1, anon_sym_RPAREN, - ACTIONS(11945), 2, + ACTIONS(12078), 2, sym__ws, sym_comment, - STATE(3637), 3, + STATE(3675), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189446] = 5, + [191145] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11951), 1, + ACTIONS(12082), 1, anon_sym_RPAREN, - ACTIONS(11949), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3639), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189465] = 5, + [191164] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11953), 1, + ACTIONS(12084), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189484] = 5, + [191183] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11955), 1, + ACTIONS(12086), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189503] = 5, + [191202] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11959), 1, + ACTIONS(12090), 1, anon_sym_RPAREN, - ACTIONS(11957), 2, + ACTIONS(12088), 2, sym__ws, sym_comment, - STATE(3642), 3, + STATE(3676), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189522] = 5, + [191221] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11961), 1, + ACTIONS(12092), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189541] = 5, + [191240] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11963), 1, + ACTIONS(12094), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189560] = 5, + [191259] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11967), 1, + ACTIONS(12098), 1, anon_sym_RPAREN, - ACTIONS(11965), 2, + ACTIONS(12096), 2, sym__ws, sym_comment, - STATE(3643), 3, + STATE(3619), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189579] = 5, + [191278] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11969), 1, + ACTIONS(12100), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189598] = 5, + [191297] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11973), 1, + ACTIONS(12104), 1, anon_sym_RPAREN, - ACTIONS(11971), 2, + ACTIONS(12102), 2, sym__ws, sym_comment, - STATE(3644), 3, + STATE(3428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189617] = 5, + [191316] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11977), 1, + ACTIONS(12106), 1, anon_sym_RPAREN, - ACTIONS(11975), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3645), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189636] = 5, + [191335] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11979), 1, + ACTIONS(12110), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12108), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3622), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189655] = 5, + [191354] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11981), 1, + ACTIONS(12114), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12112), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3717), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189674] = 5, + [191373] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11985), 1, + ACTIONS(12118), 1, anon_sym_RPAREN, - ACTIONS(11983), 2, + ACTIONS(12116), 2, sym__ws, sym_comment, - STATE(3647), 3, + STATE(3721), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189693] = 5, + [191392] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11987), 1, + ACTIONS(12120), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189712] = 5, + [191411] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11991), 1, + ACTIONS(12122), 1, anon_sym_RPAREN, - ACTIONS(11989), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3648), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189731] = 5, + [191430] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11995), 1, + ACTIONS(12126), 1, anon_sym_RPAREN, - ACTIONS(11993), 2, + ACTIONS(12124), 2, sym__ws, sym_comment, - STATE(3649), 3, + STATE(3623), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189750] = 5, + [191449] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11997), 1, + ACTIONS(12128), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189769] = 5, + [191468] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(11999), 1, + ACTIONS(12130), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189788] = 5, + [191487] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12001), 1, + ACTIONS(12134), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12132), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3627), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189807] = 5, + [191506] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12003), 1, + ACTIONS(12138), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12136), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3723), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189826] = 5, + [191525] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12007), 1, + ACTIONS(12142), 1, anon_sym_RPAREN, - ACTIONS(12005), 2, + ACTIONS(12140), 2, sym__ws, sym_comment, - STATE(3651), 3, + STATE(3631), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189845] = 5, + [191544] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12009), 1, + ACTIONS(12146), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12144), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3632), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189864] = 5, + [191563] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12011), 1, + ACTIONS(12148), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189883] = 5, + [191582] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12013), 1, + ACTIONS(12150), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189902] = 5, + [191601] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12017), 1, + ACTIONS(12152), 1, anon_sym_RPAREN, - ACTIONS(12015), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3652), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189921] = 5, + [191620] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12019), 1, + ACTIONS(12156), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12154), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3726), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189940] = 5, + [191639] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12021), 1, + ACTIONS(12158), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189959] = 5, + [191658] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12025), 1, + ACTIONS(12160), 1, anon_sym_RPAREN, - ACTIONS(12023), 2, - sym__ws, - sym_comment, - STATE(3670), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [189978] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12029), 1, - anon_sym_LPAREN, - ACTIONS(12027), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3742), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189997] = 5, + [191677] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12033), 1, + ACTIONS(12164), 1, anon_sym_RPAREN, - ACTIONS(12031), 2, + ACTIONS(12162), 2, sym__ws, sym_comment, - STATE(3673), 3, + STATE(3678), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190016] = 5, + [191696] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12035), 1, + ACTIONS(12168), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12166), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3684), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190035] = 5, + [191715] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12037), 1, + ACTIONS(12172), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12170), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3685), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190054] = 5, + [191734] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12041), 1, + ACTIONS(12174), 1, anon_sym_RPAREN, - ACTIONS(12039), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3678), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190073] = 5, + [191753] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12043), 1, + ACTIONS(12178), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12176), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3687), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190092] = 5, + [191772] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12045), 1, + ACTIONS(12182), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12180), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3688), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190111] = 5, + [191791] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12049), 1, + ACTIONS(12184), 1, anon_sym_RPAREN, - ACTIONS(12047), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3709), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190130] = 5, + [191810] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12051), 1, + ACTIONS(12186), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190149] = 5, + [191829] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12055), 1, + ACTIONS(12188), 1, anon_sym_RPAREN, - ACTIONS(12053), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3681), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190168] = 5, + [191848] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12057), 1, + ACTIONS(12192), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, - sym__ws, - sym_comment, - STATE(2868), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [190187] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12059), 1, - anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(12190), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3693), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190206] = 5, + [191867] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12063), 1, + ACTIONS(12196), 1, anon_sym_RPAREN, - ACTIONS(12061), 2, + ACTIONS(12194), 2, sym__ws, sym_comment, - STATE(3683), 3, + STATE(3727), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190225] = 5, + [191886] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12067), 1, + ACTIONS(12198), 1, anon_sym_RPAREN, - ACTIONS(12065), 2, - sym__ws, - sym_comment, - STATE(3685), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [190244] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12069), 1, - anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190263] = 5, + [191905] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12071), 1, + ACTIONS(12202), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12200), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3702), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190282] = 5, + [191924] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12073), 1, + ACTIONS(12206), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12204), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3705), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190301] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(12075), 1, - anon_sym_loop, - STATE(1818), 1, - sym_sym_lit, - ACTIONS(12077), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [190320] = 5, + [191943] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12081), 1, + ACTIONS(12210), 1, anon_sym_RPAREN, - ACTIONS(12079), 2, + ACTIONS(12208), 2, sym__ws, sym_comment, - STATE(3689), 3, + STATE(3706), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190339] = 5, + [191962] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12083), 1, + ACTIONS(12212), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190358] = 5, + [191981] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12087), 1, + ACTIONS(12216), 1, anon_sym_RPAREN, - ACTIONS(12085), 2, + ACTIONS(12214), 2, sym__ws, sym_comment, - STATE(3696), 3, + STATE(3728), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190377] = 5, + [192000] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12091), 1, + ACTIONS(12220), 1, anon_sym_RPAREN, - ACTIONS(12089), 2, + ACTIONS(12218), 2, sym__ws, sym_comment, - STATE(3698), 3, + STATE(3729), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190396] = 5, + [192019] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12093), 1, + ACTIONS(12222), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190415] = 5, + [192038] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12097), 1, + ACTIONS(12226), 1, anon_sym_RPAREN, - ACTIONS(12095), 2, + ACTIONS(12224), 2, sym__ws, sym_comment, - STATE(3744), 3, + STATE(3544), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190434] = 5, + [192057] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12099), 1, + ACTIONS(12230), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12228), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3714), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190453] = 5, + [192076] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12101), 1, + ACTIONS(12234), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12232), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190472] = 5, + [192095] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12103), 1, + ACTIONS(12236), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190491] = 5, + [192114] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12105), 1, + ACTIONS(12240), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12238), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3731), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190510] = 5, + [192133] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12109), 1, + ACTIONS(12242), 1, anon_sym_RPAREN, - ACTIONS(12107), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3679), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190529] = 5, + [192152] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12111), 1, + ACTIONS(12246), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12244), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3734), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190548] = 5, + [192171] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12113), 1, + ACTIONS(12250), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12248), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3735), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190567] = 5, + [192190] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12115), 1, + ACTIONS(12252), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190586] = 5, + [192209] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12119), 1, + ACTIONS(12254), 1, anon_sym_RPAREN, - ACTIONS(12117), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3393), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190605] = 5, + [192228] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12121), 1, + ACTIONS(12256), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190624] = 5, + [192247] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12123), 1, + ACTIONS(12258), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190643] = 5, + [192266] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12125), 1, + ACTIONS(12262), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12260), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3738), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190662] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(12127), 1, - anon_sym_loop, - STATE(1818), 1, - sym_sym_lit, - ACTIONS(12077), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [190681] = 5, + [192285] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12131), 1, + ACTIONS(12264), 1, anon_sym_RPAREN, - ACTIONS(12129), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3680), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190700] = 5, + [192304] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12133), 1, + ACTIONS(12268), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12266), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3707), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190719] = 5, + [192323] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12135), 1, + ACTIONS(12272), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12270), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3537), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190738] = 5, + [192342] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12137), 1, + ACTIONS(12274), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190757] = 5, + [192361] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12139), 1, + ACTIONS(12276), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190776] = 5, + [192380] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12141), 1, + ACTIONS(12280), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12278), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3536), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190795] = 5, + [192399] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12145), 1, + ACTIONS(12284), 1, anon_sym_RPAREN, - ACTIONS(12143), 2, + ACTIONS(12282), 2, sym__ws, sym_comment, - STATE(3684), 3, + STATE(3739), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190814] = 5, + [192418] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12147), 1, + ACTIONS(12286), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190833] = 5, + [192437] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12151), 1, + ACTIONS(12288), 1, anon_sym_RPAREN, - ACTIONS(12149), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3687), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190852] = 5, + [192456] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12155), 1, + ACTIONS(12290), 1, anon_sym_RPAREN, - ACTIONS(12153), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3707), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190871] = 5, + [192475] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12159), 1, - anon_sym_RPAREN, - ACTIONS(12157), 2, - sym__ws, - sym_comment, - STATE(3398), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [190890] = 5, + ACTIONS(12292), 1, + anon_sym_loop, + STATE(1837), 1, + sym_sym_lit, + ACTIONS(12294), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [192494] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12161), 1, + ACTIONS(12296), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190909] = 5, + [192513] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12165), 1, + ACTIONS(12300), 1, anon_sym_RPAREN, - ACTIONS(12163), 2, + ACTIONS(12298), 2, sym__ws, sym_comment, - STATE(3688), 3, + STATE(3421), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190928] = 5, + [192532] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12167), 1, + ACTIONS(12304), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12302), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3420), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190947] = 5, + [192551] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12169), 1, + ACTIONS(12308), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12306), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3710), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190966] = 5, + [192570] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12173), 1, + ACTIONS(12310), 1, anon_sym_RPAREN, - ACTIONS(12171), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3692), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190985] = 5, + [192589] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12175), 1, + ACTIONS(12314), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12312), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3419), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191004] = 5, + [192608] = 5, ACTIONS(23), 1, aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12177), 1, + ACTIONS(12316), 1, anon_sym_loop, - STATE(1818), 1, + STATE(1837), 1, sym_sym_lit, - ACTIONS(12077), 4, + ACTIONS(12294), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [191023] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12179), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, - sym__ws, - sym_comment, - STATE(2868), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [191042] = 5, + [192627] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12183), 1, + ACTIONS(12318), 1, anon_sym_RPAREN, - ACTIONS(12181), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3583), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191061] = 5, + [192646] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12187), 1, + ACTIONS(12320), 1, anon_sym_RPAREN, - ACTIONS(12185), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3584), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191080] = 5, + [192665] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12189), 1, + ACTIONS(12322), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191099] = 5, + [192684] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12193), 1, - anon_sym_RPAREN, - ACTIONS(12191), 2, + ACTIONS(12324), 1, + anon_sym_LPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3585), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191118] = 5, + [192703] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12197), 1, + ACTIONS(12326), 1, anon_sym_RPAREN, - ACTIONS(12195), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3693), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191137] = 5, + [192722] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12199), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12328), 1, + anon_sym_LPAREN, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191156] = 5, + [192741] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12201), 1, + ACTIONS(12330), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191175] = 5, + [192760] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12203), 1, + ACTIONS(12334), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12332), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3499), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191194] = 5, + [192779] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12207), 1, + ACTIONS(12338), 1, anon_sym_RPAREN, - ACTIONS(12205), 2, + ACTIONS(12336), 2, sym__ws, sym_comment, - STATE(3694), 3, + STATE(3430), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191213] = 5, + [192798] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12209), 1, + ACTIONS(12340), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191232] = 5, + [192817] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12211), 1, + ACTIONS(12342), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191251] = 5, + [192836] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12215), 1, + ACTIONS(12346), 1, anon_sym_RPAREN, - ACTIONS(12213), 2, + ACTIONS(12344), 2, sym__ws, sym_comment, - STATE(3695), 3, + STATE(3843), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191270] = 5, + [192855] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12219), 1, + ACTIONS(12348), 1, anon_sym_RPAREN, - ACTIONS(12217), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3588), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191289] = 5, + [192874] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12221), 1, + ACTIONS(12350), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191308] = 5, + [192893] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12223), 1, + ACTIONS(12354), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12352), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3768), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191327] = 5, + [192912] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12227), 1, + ACTIONS(12356), 1, anon_sym_RPAREN, - ACTIONS(12225), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3702), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191346] = 5, + [192931] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12231), 1, + ACTIONS(12358), 1, anon_sym_RPAREN, - ACTIONS(12229), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3704), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191365] = 5, + [192950] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12235), 1, + ACTIONS(12360), 1, anon_sym_RPAREN, - ACTIONS(12233), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3705), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191384] = 5, + [192969] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12239), 1, - anon_sym_RPAREN, - ACTIONS(12237), 2, + ACTIONS(12364), 1, + anon_sym_LPAREN, + ACTIONS(12362), 2, sym__ws, sym_comment, - STATE(3589), 3, + STATE(3605), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191403] = 5, + [192988] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12241), 1, + ACTIONS(12366), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191422] = 5, + [193007] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12243), 1, + ACTIONS(12370), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, - sym__ws, - sym_comment, - STATE(2868), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [191441] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12247), 1, - anon_sym_LPAREN, - ACTIONS(12245), 2, - sym__ws, - sym_comment, - STATE(3665), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [191460] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12251), 1, - anon_sym_LPAREN, - ACTIONS(12249), 2, + ACTIONS(12368), 2, sym__ws, sym_comment, - STATE(3668), 3, + STATE(3777), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191479] = 5, + [193026] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12255), 1, + ACTIONS(12374), 1, anon_sym_RPAREN, - ACTIONS(12253), 2, + ACTIONS(12372), 2, sym__ws, sym_comment, - STATE(3715), 3, + STATE(3778), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191498] = 5, + [193045] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12259), 1, + ACTIONS(12378), 1, anon_sym_RPAREN, - ACTIONS(12257), 2, + ACTIONS(12376), 2, sym__ws, sym_comment, - STATE(3719), 3, + STATE(3805), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191517] = 5, + [193064] = 5, ACTIONS(23), 1, aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12261), 1, + ACTIONS(12380), 1, anon_sym_loop, - STATE(1818), 1, + STATE(1837), 1, sym_sym_lit, - ACTIONS(12077), 4, + ACTIONS(12294), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [191536] = 5, + [193083] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12265), 1, + ACTIONS(12384), 1, anon_sym_RPAREN, - ACTIONS(12263), 2, + ACTIONS(12382), 2, sym__ws, sym_comment, - STATE(3745), 3, + STATE(3833), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191555] = 5, + [193102] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12269), 1, + ACTIONS(12386), 1, anon_sym_RPAREN, - ACTIONS(12267), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3590), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191574] = 5, + [193121] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12271), 1, + ACTIONS(12390), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12388), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3765), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191593] = 5, + [193140] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12275), 1, + ACTIONS(12394), 1, anon_sym_RPAREN, - ACTIONS(12273), 2, + ACTIONS(12392), 2, sym__ws, sym_comment, - STATE(3720), 3, + STATE(3842), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191612] = 5, + [193159] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12277), 1, + ACTIONS(12396), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191631] = 5, + [193178] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12281), 1, + ACTIONS(12398), 1, anon_sym_RPAREN, - ACTIONS(12279), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3723), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191650] = 5, + [193197] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12283), 1, - anon_sym_LPAREN, - ACTIONS(10820), 2, + ACTIONS(12402), 1, + anon_sym_RPAREN, + ACTIONS(12400), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3762), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191669] = 5, + [193216] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12287), 1, + ACTIONS(12406), 1, anon_sym_RPAREN, - ACTIONS(12285), 2, + ACTIONS(12404), 2, sym__ws, sym_comment, - STATE(3724), 3, + STATE(3839), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191688] = 5, + [193235] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12289), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, - sym__ws, - sym_comment, - STATE(2868), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [191707] = 5, + ACTIONS(12408), 1, + anon_sym_loop, + STATE(1837), 1, + sym_sym_lit, + ACTIONS(12294), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [193254] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12291), 1, + ACTIONS(12410), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191726] = 5, + [193273] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12295), 1, + ACTIONS(12414), 1, anon_sym_RPAREN, - ACTIONS(12293), 2, + ACTIONS(12412), 2, sym__ws, sym_comment, - STATE(3765), 3, + STATE(3840), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191745] = 5, + [193292] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12297), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, - sym__ws, - sym_comment, - STATE(2868), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [191764] = 5, + ACTIONS(12416), 1, + anon_sym_loop, + STATE(1837), 1, + sym_sym_lit, + ACTIONS(12294), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [193311] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12301), 1, + ACTIONS(12420), 1, anon_sym_RPAREN, - ACTIONS(12299), 2, + ACTIONS(12418), 2, sym__ws, sym_comment, - STATE(3766), 3, + STATE(3439), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191783] = 5, + [193330] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12305), 1, + ACTIONS(12422), 1, anon_sym_RPAREN, - ACTIONS(12303), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3738), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191802] = 5, + [193349] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12309), 1, + ACTIONS(12424), 1, anon_sym_RPAREN, - ACTIONS(12307), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3729), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191821] = 5, + [193368] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12313), 1, + ACTIONS(12428), 1, anon_sym_RPAREN, - ACTIONS(12311), 2, + ACTIONS(12426), 2, sym__ws, sym_comment, - STATE(3740), 3, + STATE(3786), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191840] = 5, + [193387] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12317), 1, + ACTIONS(12430), 1, anon_sym_RPAREN, - ACTIONS(12315), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3747), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191859] = 5, + [193406] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12321), 1, + ACTIONS(12432), 1, anon_sym_RPAREN, - ACTIONS(12319), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3660), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191878] = 5, + [193425] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12323), 1, + ACTIONS(12434), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191897] = 5, + [193444] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12327), 1, + ACTIONS(12438), 1, anon_sym_RPAREN, - ACTIONS(12325), 2, + ACTIONS(12436), 2, sym__ws, sym_comment, - STATE(3730), 3, + STATE(3787), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191916] = 5, + [193463] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12331), 1, + ACTIONS(12440), 1, anon_sym_RPAREN, - ACTIONS(12329), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3754), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191935] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(12333), 1, - anon_sym_loop, - STATE(1818), 1, - sym_sym_lit, - ACTIONS(12077), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [191954] = 5, + [193482] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12335), 1, + ACTIONS(12442), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191973] = 5, + [193501] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12339), 1, + ACTIONS(12444), 1, anon_sym_RPAREN, - ACTIONS(12337), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3769), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191992] = 5, + [193520] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12343), 1, + ACTIONS(12446), 1, anon_sym_RPAREN, - ACTIONS(12341), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3717), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192011] = 5, + [193539] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12347), 1, + ACTIONS(12450), 1, anon_sym_RPAREN, - ACTIONS(12345), 2, + ACTIONS(12448), 2, sym__ws, sym_comment, - STATE(3716), 3, + STATE(3789), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192030] = 5, + [193558] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12351), 1, + ACTIONS(12454), 1, anon_sym_RPAREN, - ACTIONS(12349), 2, + ACTIONS(12452), 2, sym__ws, sym_comment, - STATE(3712), 3, + STATE(3790), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192049] = 5, + [193577] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12355), 1, + ACTIONS(12456), 1, anon_sym_RPAREN, - ACTIONS(12353), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3773), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192068] = 5, + [193596] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12359), 1, + ACTIONS(12460), 1, anon_sym_RPAREN, - ACTIONS(12357), 2, + ACTIONS(12458), 2, sym__ws, sym_comment, - STATE(3581), 3, + STATE(3791), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192087] = 5, + [193615] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12361), 1, + ACTIONS(12462), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192106] = 5, + [193634] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12363), 1, + ACTIONS(12464), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192125] = 5, + [193653] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12367), 1, + ACTIONS(12468), 1, anon_sym_RPAREN, - ACTIONS(12365), 2, + ACTIONS(12466), 2, sym__ws, sym_comment, - STATE(3776), 3, + STATE(3793), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192144] = 5, + [193672] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12371), 1, + ACTIONS(12472), 1, anon_sym_RPAREN, - ACTIONS(12369), 2, + ACTIONS(12470), 2, sym__ws, sym_comment, - STATE(3778), 3, + STATE(3794), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192163] = 5, + [193691] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12373), 1, + ACTIONS(12474), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192182] = 5, + [193710] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12377), 1, + ACTIONS(12476), 1, anon_sym_RPAREN, - ACTIONS(12375), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3781), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192201] = 5, + [193729] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12381), 1, + ACTIONS(12480), 1, anon_sym_RPAREN, - ACTIONS(12379), 2, + ACTIONS(12478), 2, sym__ws, sym_comment, - STATE(3783), 3, + STATE(3845), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192220] = 5, + [193748] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12385), 1, - anon_sym_RPAREN, - ACTIONS(12383), 2, - sym__ws, - sym_comment, - STATE(3812), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [192239] = 5, + ACTIONS(12482), 1, + anon_sym_loop, + STATE(1837), 1, + sym_sym_lit, + ACTIONS(12294), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [193767] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12387), 1, + ACTIONS(12486), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12484), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3795), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192258] = 5, + [193786] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12391), 1, + ACTIONS(12490), 1, anon_sym_RPAREN, - ACTIONS(12389), 2, + ACTIONS(12488), 2, sym__ws, sym_comment, - STATE(3834), 3, + STATE(3846), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192277] = 5, + [193805] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12395), 1, + ACTIONS(12492), 1, anon_sym_RPAREN, - ACTIONS(12393), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3837), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192296] = 5, + [193824] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12397), 1, + ACTIONS(12494), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192315] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, + [193843] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12399), 1, - anon_sym_loop, - STATE(1818), 1, - sym_sym_lit, - ACTIONS(12077), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [192334] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12401), 1, + ACTIONS(12498), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12496), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3796), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192353] = 5, + [193862] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12405), 1, + ACTIONS(12500), 1, anon_sym_RPAREN, - ACTIONS(12403), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3840), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192372] = 5, + [193881] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12407), 1, + ACTIONS(12502), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192391] = 5, + [193900] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12409), 1, + ACTIONS(12506), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12504), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3799), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192410] = 5, + [193919] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12411), 1, + ACTIONS(12510), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12508), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3801), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192429] = 5, + [193938] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12413), 1, + ACTIONS(12514), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12512), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3802), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192448] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(12415), 1, - anon_sym_loop, - STATE(1818), 1, - sym_sym_lit, - ACTIONS(12077), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [192467] = 5, + [193957] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12417), 1, + ACTIONS(12516), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192486] = 5, + [193976] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12421), 1, + ACTIONS(12520), 1, anon_sym_RPAREN, - ACTIONS(12419), 2, + ACTIONS(12518), 2, sym__ws, sym_comment, - STATE(3841), 3, + STATE(3426), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192505] = 5, + [193995] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12425), 1, + ACTIONS(12524), 1, anon_sym_RPAREN, - ACTIONS(12423), 2, + ACTIONS(12522), 2, sym__ws, sym_comment, - STATE(3782), 3, + STATE(3811), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192524] = 5, + [194014] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12427), 1, + ACTIONS(12528), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12526), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3812), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192543] = 5, + [194033] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12429), 1, + ACTIONS(12530), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192562] = 5, + [194052] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12431), 1, + ACTIONS(12534), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12532), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3814), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192581] = 5, + [194071] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12435), 1, + ACTIONS(12538), 1, anon_sym_RPAREN, - ACTIONS(12433), 2, + ACTIONS(12536), 2, sym__ws, sym_comment, - STATE(3785), 3, + STATE(3815), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192600] = 5, + [194090] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12437), 1, + ACTIONS(12540), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192619] = 5, + [194109] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12439), 1, + ACTIONS(12542), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192638] = 5, + [194128] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12441), 1, + ACTIONS(12546), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12544), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3848), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192657] = 5, + [194147] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12443), 1, + ACTIONS(12550), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12548), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3819), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192676] = 5, + [194166] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12447), 1, + ACTIONS(12554), 1, anon_sym_RPAREN, - ACTIONS(12445), 2, + ACTIONS(12552), 2, sym__ws, sym_comment, - STATE(3788), 3, + STATE(3823), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192695] = 5, + [194185] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12451), 1, + ACTIONS(12558), 1, anon_sym_RPAREN, - ACTIONS(12449), 2, + ACTIONS(12556), 2, sym__ws, sym_comment, - STATE(3789), 3, + STATE(3826), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192714] = 5, + [194204] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12453), 1, + ACTIONS(12562), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12560), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3782), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192733] = 5, + [194223] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12457), 1, + ACTIONS(12564), 1, anon_sym_RPAREN, - ACTIONS(12455), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3790), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192752] = 5, + [194242] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12566), 1, + anon_sym_loop, + STATE(1837), 1, + sym_sym_lit, + ACTIONS(12294), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [194261] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12459), 1, + ACTIONS(12568), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192771] = 5, + [194280] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12461), 1, + ACTIONS(12572), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12570), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3853), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192790] = 5, + [194299] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12465), 1, + ACTIONS(12576), 1, anon_sym_RPAREN, - ACTIONS(12463), 2, + ACTIONS(12574), 2, sym__ws, sym_comment, - STATE(3792), 3, + STATE(3854), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192809] = 5, + [194318] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12469), 1, + ACTIONS(12580), 1, anon_sym_RPAREN, - ACTIONS(12467), 2, + ACTIONS(12578), 2, sym__ws, sym_comment, - STATE(3793), 3, + STATE(3856), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192828] = 5, + [194337] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12471), 1, + ACTIONS(12582), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192847] = 5, + [194356] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12475), 1, + ACTIONS(12584), 1, anon_sym_RPAREN, - ACTIONS(12473), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3794), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192866] = 5, + [194375] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12477), 1, + ACTIONS(12588), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12586), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3835), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192885] = 5, + [194394] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12479), 1, + ACTIONS(12590), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192904] = 5, + [194413] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12483), 1, + ACTIONS(12592), 1, anon_sym_RPAREN, - ACTIONS(12481), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3795), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192923] = 5, + [194432] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12485), 1, + ACTIONS(12596), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12594), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3862), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192942] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, + [194451] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12487), 1, - anon_sym_loop, - STATE(1818), 1, - sym_sym_lit, - ACTIONS(12077), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [192961] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12489), 1, + ACTIONS(12598), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192980] = 5, + [194470] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12491), 1, + ACTIONS(12600), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [192999] = 5, + [194489] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12495), 1, + ACTIONS(12604), 1, anon_sym_RPAREN, - ACTIONS(12493), 2, + ACTIONS(12602), 2, sym__ws, sym_comment, - STATE(3798), 3, + STATE(3827), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193018] = 5, + [194508] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12499), 1, + ACTIONS(12606), 1, anon_sym_RPAREN, - ACTIONS(12497), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3800), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193037] = 5, + [194527] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12503), 1, + ACTIONS(12610), 1, anon_sym_RPAREN, - ACTIONS(12501), 2, + ACTIONS(12608), 2, sym__ws, sym_comment, - STATE(3801), 3, + STATE(3864), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193056] = 5, + [194546] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12505), 1, + ACTIONS(12614), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12612), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3874), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193075] = 5, + [194565] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12509), 1, - anon_sym_RPAREN, - ACTIONS(12507), 2, - sym__ws, - sym_comment, - STATE(3804), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [193094] = 5, + ACTIONS(12616), 1, + anon_sym_loop, + STATE(1837), 1, + sym_sym_lit, + ACTIONS(12294), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [194584] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12513), 1, + ACTIONS(12620), 1, anon_sym_RPAREN, - ACTIONS(12511), 2, + ACTIONS(12618), 2, sym__ws, sym_comment, - STATE(3806), 3, + STATE(3753), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193113] = 5, + [194603] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12517), 1, + ACTIONS(12622), 1, anon_sym_RPAREN, - ACTIONS(12515), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3807), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193132] = 5, + [194622] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12519), 1, + ACTIONS(12624), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193151] = 5, + [194641] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12523), 1, + ACTIONS(12628), 1, anon_sym_RPAREN, - ACTIONS(12521), 2, + ACTIONS(12626), 2, sym__ws, sym_comment, - STATE(3809), 3, + STATE(3872), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193170] = 5, + [194660] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12527), 1, + ACTIONS(12630), 1, anon_sym_RPAREN, - ACTIONS(12525), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3811), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193189] = 5, + [194679] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12529), 1, + ACTIONS(12634), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12632), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3871), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193208] = 5, + [194698] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12531), 1, + ACTIONS(12638), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12636), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3742), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193227] = 5, + [194717] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(12640), 1, + anon_sym_loop, + STATE(1837), 1, + sym_sym_lit, + ACTIONS(12294), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [194736] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12535), 1, + ACTIONS(12644), 1, anon_sym_RPAREN, - ACTIONS(12533), 2, + ACTIONS(12642), 2, sym__ws, sym_comment, - STATE(3816), 3, + STATE(3591), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193246] = 5, + [194755] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12539), 1, + ACTIONS(12648), 1, anon_sym_RPAREN, - ACTIONS(12537), 2, + ACTIONS(12646), 2, sym__ws, sym_comment, - STATE(3820), 3, + STATE(3869), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193265] = 5, + [194774] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12543), 1, + ACTIONS(12650), 1, anon_sym_RPAREN, - ACTIONS(12541), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3823), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193284] = 5, + [194793] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12547), 1, + ACTIONS(12652), 1, anon_sym_RPAREN, - ACTIONS(12545), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3824), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193303] = 5, + [194812] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12549), 1, + ACTIONS(12654), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193322] = 5, + [194831] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12553), 1, + ACTIONS(12658), 1, anon_sym_RPAREN, - ACTIONS(12551), 2, + ACTIONS(12656), 2, sym__ws, sym_comment, - STATE(3842), 3, + STATE(3418), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193341] = 5, + [194850] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12557), 1, + ACTIONS(12660), 1, anon_sym_RPAREN, - ACTIONS(12555), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3829), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193360] = 5, + [194869] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12561), 1, + ACTIONS(12662), 1, anon_sym_RPAREN, - ACTIONS(12559), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3843), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193379] = 5, + [194888] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12565), 1, + ACTIONS(12666), 1, anon_sym_RPAREN, - ACTIONS(12563), 2, + ACTIONS(12664), 2, sym__ws, sym_comment, - STATE(3780), 3, + STATE(3866), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193398] = 5, + [194907] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12567), 1, + ACTIONS(12668), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193417] = 5, + [194926] = 5, ACTIONS(23), 1, aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12569), 1, + ACTIONS(12670), 1, anon_sym_loop, - STATE(1818), 1, + STATE(1837), 1, sym_sym_lit, - ACTIONS(12077), 4, + ACTIONS(12294), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [193436] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12573), 1, - anon_sym_RPAREN, - ACTIONS(12571), 2, - sym__ws, - sym_comment, - STATE(3845), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [193455] = 5, + [194945] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12575), 1, + ACTIONS(12672), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, - sym__ws, - sym_comment, - STATE(2868), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [193474] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12579), 1, - anon_sym_RPAREN, - ACTIONS(12577), 2, - sym__ws, - sym_comment, - STATE(3846), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [193493] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12583), 1, - anon_sym_RPAREN, - ACTIONS(12581), 2, - sym__ws, - sym_comment, - STATE(3392), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [193512] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12585), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, - sym__ws, - sym_comment, - STATE(2868), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [193531] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12587), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, - sym__ws, - sym_comment, - STATE(2868), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [193550] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12589), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, - sym__ws, - sym_comment, - STATE(2868), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [193569] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12591), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193588] = 5, + [194964] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12595), 1, + ACTIONS(12674), 1, anon_sym_RPAREN, - ACTIONS(12593), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(3848), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193607] = 5, + [194983] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12597), 1, + ACTIONS(12678), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(12676), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(3867), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193626] = 5, + [195002] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12599), 1, + ACTIONS(12680), 1, anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(10899), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2894), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193645] = 5, + [195021] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, + ACTIONS(10889), 1, anon_sym_POUND_, - ACTIONS(12603), 1, + ACTIONS(12684), 1, anon_sym_RPAREN, - ACTIONS(12601), 2, + ACTIONS(12682), 2, sym__ws, sym_comment, - STATE(3850), 3, + STATE(3592), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [193664] = 5, + [195040] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12605), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(12686), 1, sym__ws, - sym_comment, - STATE(2868), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [193683] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(12607), 1, - anon_sym_loop, - STATE(1818), 1, - sym_sym_lit, - ACTIONS(12077), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [193702] = 5, + STATE(4069), 1, + aux_sym_read_cond_lit_repeat1, + STATE(2617), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [195058] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12609), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(12688), 1, sym__ws, - sym_comment, - STATE(2868), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [193721] = 5, + STATE(3959), 1, + aux_sym_read_cond_lit_repeat1, + STATE(2832), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [195076] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10812), 1, - anon_sym_POUND_, - ACTIONS(12611), 1, - anon_sym_RPAREN, - ACTIONS(10820), 2, - sym__ws, - sym_comment, - STATE(2868), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [193740] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(12613), 1, - anon_sym_DQUOTE, - ACTIONS(12617), 1, - anon_sym_TILDE, - ACTIONS(12615), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3930), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [193758] = 5, - ACTIONS(29), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(12619), 1, + ACTIONS(12690), 1, sym__ws, - STATE(4017), 1, + STATE(3913), 1, aux_sym_read_cond_lit_repeat1, - STATE(1869), 3, + STATE(2570), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193776] = 5, + [195094] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5654), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(12621), 1, + ACTIONS(12692), 1, sym__ws, - STATE(3862), 1, + STATE(3912), 1, aux_sym_read_cond_lit_repeat1, - STATE(3049), 3, + STATE(1444), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193794] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(12623), 1, - anon_sym_DQUOTE, - ACTIONS(12627), 1, - anon_sym_TILDE, - ACTIONS(12625), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3860), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [193812] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(12629), 1, - anon_sym_DQUOTE, - ACTIONS(12633), 1, - anon_sym_TILDE, - ACTIONS(12631), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3859), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [193830] = 5, + [195112] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5588), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(12635), 1, + ACTIONS(12694), 1, sym__ws, - STATE(3920), 1, + STATE(3882), 1, aux_sym_read_cond_lit_repeat1, - STATE(1032), 3, + STATE(1007), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193848] = 5, + [195130] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4786), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(12637), 1, + ACTIONS(12696), 1, sym__ws, - STATE(3864), 1, + STATE(3885), 1, aux_sym_read_cond_lit_repeat1, - STATE(1306), 3, + STATE(1443), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193866] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(8397), 1, - anon_sym_DQUOTE, - ACTIONS(12641), 1, - anon_sym_TILDE, - ACTIONS(12639), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3948), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [193884] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(8393), 1, - anon_sym_DQUOTE, - ACTIONS(12643), 1, - anon_sym_TILDE, - ACTIONS(12639), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3948), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [193902] = 5, + [195148] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(3069), 3, + STATE(1033), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193920] = 5, + [195166] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5654), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(3060), 3, + STATE(2581), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193938] = 5, + [195184] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5654), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(2876), 3, + STATE(1453), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193956] = 5, + [195202] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4786), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1286), 3, + STATE(1430), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193974] = 5, + [195220] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(12698), 1, + anon_sym_DQUOTE, + ACTIONS(12703), 1, + anon_sym_TILDE, + ACTIONS(12700), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3886), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [195238] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(8462), 1, + anon_sym_DQUOTE, + ACTIONS(12708), 1, + anon_sym_TILDE, + ACTIONS(12706), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3886), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [195256] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5588), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(12645), 1, + ACTIONS(12686), 1, sym__ws, - STATE(3869), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(997), 3, + STATE(2992), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193992] = 5, + [195274] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(8436), 1, + anon_sym_DQUOTE, + ACTIONS(12710), 1, + anon_sym_TILDE, + ACTIONS(12706), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3886), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [195292] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5654), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(12647), 1, + ACTIONS(12712), 1, sym__ws, - STATE(3871), 1, + STATE(3918), 1, aux_sym_read_cond_lit_repeat1, - STATE(3038), 3, + STATE(1687), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194010] = 5, + [195310] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5654), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(12649), 1, + ACTIONS(12714), 1, sym__ws, - STATE(3872), 1, + STATE(3883), 1, aux_sym_read_cond_lit_repeat1, - STATE(2891), 3, + STATE(2630), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194028] = 5, + [195328] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4786), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(12651), 1, + ACTIONS(12716), 1, sym__ws, - STATE(3870), 1, + STATE(3884), 1, aux_sym_read_cond_lit_repeat1, - STATE(1277), 3, + STATE(1472), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194046] = 5, + [195346] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(12718), 1, + anon_sym_DQUOTE, + ACTIONS(12722), 1, + anon_sym_TILDE, + ACTIONS(12720), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3901), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [195364] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(12724), 1, + anon_sym_DQUOTE, + ACTIONS(12728), 1, + anon_sym_TILDE, + ACTIONS(12726), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3887), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [195382] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5588), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12730), 1, sym__ws, - STATE(4017), 1, + STATE(3929), 1, aux_sym_read_cond_lit_repeat1, - STATE(1068), 3, + STATE(1587), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194064] = 5, + [195400] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4786), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12732), 1, sym__ws, - STATE(4017), 1, + STATE(3956), 1, aux_sym_read_cond_lit_repeat1, - STATE(1325), 3, + STATE(1959), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194082] = 5, + [195418] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5654), 1, - anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(3069), 3, + STATE(1815), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194100] = 5, + [195436] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5654), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12734), 1, sym__ws, - STATE(4017), 1, + STATE(3905), 1, aux_sym_read_cond_lit_repeat1, - STATE(2930), 3, + STATE(1144), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194118] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(12653), 1, - anon_sym_DQUOTE, - ACTIONS(12657), 1, - anon_sym_TILDE, - ACTIONS(12655), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3876), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [194136] = 5, + [195454] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4355), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(12659), 1, + ACTIONS(12736), 1, sym__ws, - STATE(3878), 1, + STATE(3906), 1, aux_sym_read_cond_lit_repeat1, - STATE(1214), 3, + STATE(1047), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194154] = 5, + [195472] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5588), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(12661), 1, + ACTIONS(12686), 1, sym__ws, - STATE(3884), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1016), 3, + STATE(2992), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194172] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(8389), 1, - anon_sym_DQUOTE, - ACTIONS(12663), 1, - anon_sym_TILDE, - ACTIONS(12639), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3948), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [194190] = 5, + [195490] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(8363), 1, + ACTIONS(8446), 1, anon_sym_DQUOTE, - ACTIONS(12665), 1, + ACTIONS(12738), 1, anon_sym_TILDE, - ACTIONS(12639), 2, + ACTIONS(12706), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3948), 2, + STATE(3886), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [194208] = 5, + [195508] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4355), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1208), 3, + STATE(1663), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194226] = 5, + [195526] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4355), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1217), 3, + STATE(2824), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194244] = 5, + [195544] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4786), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1287), 3, + STATE(1702), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194262] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(12667), 1, - anon_sym_DQUOTE, - ACTIONS(12671), 1, - anon_sym_TILDE, - ACTIONS(12669), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3888), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [194280] = 5, + [195562] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(12673), 1, + ACTIONS(12686), 1, sym__ws, - STATE(3891), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(2558), 3, + STATE(1164), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194298] = 5, + [195580] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4714), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(12675), 1, + ACTIONS(12686), 1, sym__ws, - STATE(3892), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1938), 3, + STATE(1015), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194316] = 5, + [195598] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5588), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12740), 1, sym__ws, - STATE(4017), 1, + STATE(3915), 1, aux_sym_read_cond_lit_repeat1, - STATE(1118), 3, + STATE(1173), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194334] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(8383), 1, - anon_sym_DQUOTE, - ACTIONS(12677), 1, - anon_sym_TILDE, - ACTIONS(12639), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3948), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [194352] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(8343), 1, - aux_sym_num_lit_token1, - ACTIONS(8351), 1, - anon_sym_SQUOTE, - ACTIONS(10901), 1, - anon_sym_COMMA, - ACTIONS(10905), 1, - aux_sym_format_directive_type_token11, - STATE(3054), 2, - sym__format_token, - aux_sym_format_modifiers_repeat1, - [194372] = 5, + [195616] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12742), 1, sym__ws, - STATE(4017), 1, + STATE(3916), 1, aux_sym_read_cond_lit_repeat1, - STATE(2632), 3, + STATE(1006), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194390] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(8387), 1, - anon_sym_DQUOTE, - ACTIONS(12679), 1, - anon_sym_TILDE, - ACTIONS(12639), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3948), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [194408] = 5, + [195634] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4355), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(12681), 1, + ACTIONS(12744), 1, sym__ws, - STATE(3897), 1, + STATE(3902), 1, aux_sym_read_cond_lit_repeat1, - STATE(1240), 3, + STATE(1729), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194426] = 5, + [195652] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4894), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(12683), 1, + ACTIONS(12686), 1, sym__ws, - STATE(3916), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1499), 3, + STATE(1016), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194444] = 5, + [195670] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12746), 1, sym__ws, - STATE(4017), 1, + STATE(3969), 1, aux_sym_read_cond_lit_repeat1, - STATE(2550), 3, + STATE(1471), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194462] = 5, + [195688] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4714), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1940), 3, + STATE(1431), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194480] = 5, + [195706] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5588), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(12685), 1, + ACTIONS(12686), 1, sym__ws, - STATE(3898), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1056), 3, + STATE(2555), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194498] = 5, + [195724] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(12687), 1, + ACTIONS(12748), 1, sym__ws, - STATE(3900), 1, + STATE(3904), 1, aux_sym_read_cond_lit_repeat1, - STATE(2533), 3, + STATE(1728), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194516] = 5, + [195742] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4714), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(12689), 1, + ACTIONS(12686), 1, sym__ws, - STATE(3901), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1900), 3, + STATE(1186), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194534] = 5, + [195760] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4786), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1324), 3, + STATE(1035), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194552] = 5, + [195778] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4355), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1220), 3, + STATE(1718), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194570] = 5, + [195796] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5588), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(990), 3, + STATE(1717), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194588] = 5, - ACTIONS(47), 1, + [195814] = 5, + ACTIONS(3), 1, sym_block_comment, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(12691), 1, - sym__ws, - STATE(3896), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1278), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [194606] = 5, - ACTIONS(47), 1, + ACTIONS(8440), 1, + anon_sym_DQUOTE, + ACTIONS(12750), 1, + anon_sym_TILDE, + ACTIONS(12706), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3886), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [195832] = 5, + ACTIONS(3), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(12619), 1, - sym__ws, - STATE(4017), 1, - aux_sym_read_cond_lit_repeat1, - STATE(2543), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [194624] = 5, + ACTIONS(8466), 1, + anon_sym_DQUOTE, + ACTIONS(12752), 1, + anon_sym_TILDE, + ACTIONS(12706), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3886), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [195850] = 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(3925), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [195868] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4714), 1, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12760), 1, sym__ws, - STATE(4017), 1, + STATE(3931), 1, aux_sym_read_cond_lit_repeat1, - STATE(1886), 3, + STATE(3064), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194642] = 5, + [195886] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(12693), 1, + ACTIONS(12762), 1, sym__ws, - STATE(3942), 1, + STATE(3910), 1, aux_sym_read_cond_lit_repeat1, - STATE(2624), 3, + STATE(1048), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194660] = 5, + [195904] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4714), 1, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12764), 1, sym__ws, - STATE(4017), 1, + STATE(3933), 1, aux_sym_read_cond_lit_repeat1, - STATE(2930), 3, + STATE(2902), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194678] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(47), 1, + [195922] = 5, + ACTIONS(3), 1, sym_block_comment, - ACTIONS(12619), 1, - sym__ws, - STATE(4017), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1826), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [194696] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + ACTIONS(8450), 1, + anon_sym_DQUOTE, + ACTIONS(12766), 1, + anon_sym_TILDE, + ACTIONS(12706), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3886), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [195940] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12619), 1, + ACTIONS(4805), 1, + anon_sym_LPAREN, + ACTIONS(12768), 1, sym__ws, - STATE(4017), 1, + STATE(3888), 1, aux_sym_read_cond_lit_repeat1, - STATE(1824), 3, + STATE(2955), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194714] = 5, + [195958] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(12695), 1, + ACTIONS(12770), 1, anon_sym_DQUOTE, - ACTIONS(12699), 1, + ACTIONS(12774), 1, anon_sym_TILDE, - ACTIONS(12697), 2, + ACTIONS(12772), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3947), 2, + STATE(3957), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [194732] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(47), 1, + [195976] = 5, + ACTIONS(3), 1, sym_block_comment, - ACTIONS(12701), 1, - sym__ws, - STATE(3905), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1853), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [194750] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + ACTIONS(12776), 1, + anon_sym_DQUOTE, + ACTIONS(12780), 1, + anon_sym_TILDE, + ACTIONS(12778), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3984), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [195994] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12703), 1, + ACTIONS(4977), 1, + anon_sym_LPAREN, + ACTIONS(12686), 1, sym__ws, - STATE(3853), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1815), 3, + STATE(1578), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194768] = 5, + [196012] = 5, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12705), 1, + ACTIONS(12782), 1, sym__ws, - STATE(3958), 1, + STATE(3940), 1, aux_sym_read_cond_lit_repeat1, - STATE(1814), 3, + STATE(1874), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194786] = 5, + [196030] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4894), 1, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1543), 3, + STATE(3067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194804] = 5, - ACTIONS(47), 1, + [196048] = 5, + ACTIONS(3), 1, sym_block_comment, - ACTIONS(4894), 1, - anon_sym_LPAREN, - ACTIONS(12707), 1, - sym__ws, - STATE(3910), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1528), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [194822] = 5, + ACTIONS(12784), 1, + anon_sym_DQUOTE, + ACTIONS(12788), 1, + anon_sym_TILDE, + ACTIONS(12786), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3889), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [196066] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2326), 1, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(12709), 1, + ACTIONS(12686), 1, sym__ws, - STATE(3963), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(2769), 3, + STATE(2937), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194840] = 5, + [196084] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4894), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12790), 1, sym__ws, - STATE(4017), 1, + STATE(3970), 1, aux_sym_read_cond_lit_repeat1, - STATE(1516), 3, + STATE(3064), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194858] = 5, + [196102] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4894), 1, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(12711), 1, + ACTIONS(12792), 1, sym__ws, - STATE(3913), 1, + STATE(3948), 1, aux_sym_read_cond_lit_repeat1, - STATE(1496), 3, + STATE(3072), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194876] = 5, + [196120] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2326), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12794), 1, sym__ws, - STATE(4017), 1, + STATE(3945), 1, aux_sym_read_cond_lit_repeat1, - STATE(1886), 3, + STATE(2773), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194894] = 5, + [196138] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4894), 1, - anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12796), 1, sym__ws, - STATE(4017), 1, + STATE(3983), 1, aux_sym_read_cond_lit_repeat1, - STATE(1565), 3, + STATE(1829), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194912] = 5, + [196156] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(12713), 1, + ACTIONS(12798), 1, sym__ws, - STATE(3960), 1, + STATE(3981), 1, aux_sym_read_cond_lit_repeat1, - STATE(2884), 3, + STATE(1860), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194930] = 5, + [196174] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5436), 1, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12800), 1, sym__ws, - STATE(4017), 1, + STATE(3955), 1, aux_sym_read_cond_lit_repeat1, - STATE(1725), 3, + STATE(2955), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194948] = 5, + [196192] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5436), 1, - anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1724), 3, + STATE(1814), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194966] = 5, + [196210] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5588), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12802), 1, sym__ws, - STATE(4017), 1, + STATE(3971), 1, aux_sym_read_cond_lit_repeat1, - STATE(1111), 3, + STATE(1145), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [194984] = 5, + [196228] = 5, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12715), 1, + ACTIONS(12804), 1, sym__ws, - STATE(3904), 1, + STATE(3897), 1, aux_sym_read_cond_lit_repeat1, - STATE(1854), 3, + STATE(1841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195002] = 5, + [196246] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(12806), 1, + anon_sym_DQUOTE, + ACTIONS(12810), 1, + anon_sym_TILDE, + ACTIONS(12808), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3919), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [196264] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(12812), 1, + anon_sym_DQUOTE, + ACTIONS(12816), 1, + anon_sym_TILDE, + ACTIONS(12814), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3949), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [196282] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4714), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(2779), 3, + STATE(2790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195020] = 5, + [196300] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4714), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(12717), 1, + ACTIONS(12818), 1, sym__ws, - STATE(3903), 1, + STATE(3960), 1, aux_sym_read_cond_lit_repeat1, - STATE(2891), 3, + STATE(2902), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195038] = 5, + [196318] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(12719), 1, + ACTIONS(12686), 1, sym__ws, - STATE(3933), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(3049), 3, + STATE(1550), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195056] = 5, + [196336] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5436), 1, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(12721), 1, + ACTIONS(12686), 1, sym__ws, - STATE(3918), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1706), 3, + STATE(3070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195074] = 5, + [196354] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(8430), 1, + anon_sym_DQUOTE, + ACTIONS(12820), 1, + anon_sym_TILDE, + ACTIONS(12706), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3886), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [196372] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5436), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(12723), 1, + ACTIONS(12686), 1, sym__ws, - STATE(3919), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1705), 3, + STATE(1921), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195092] = 5, + [196390] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4355), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(12725), 1, + ACTIONS(12686), 1, sym__ws, - STATE(3934), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1234), 3, + STATE(2598), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195110] = 5, + [196408] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5436), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12822), 1, sym__ws, - STATE(4017), 1, + STATE(3947), 1, aux_sym_read_cond_lit_repeat1, - STATE(1695), 3, + STATE(1539), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195128] = 5, + [196426] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5436), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1694), 3, + STATE(1521), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195146] = 5, + [196444] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(8347), 1, + ACTIONS(12824), 1, anon_sym_DQUOTE, - ACTIONS(12727), 1, - anon_sym_TILDE, - ACTIONS(12639), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3948), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [195164] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(8371), 1, - anon_sym_DQUOTE, - ACTIONS(12729), 1, - anon_sym_TILDE, - ACTIONS(12639), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3948), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [195182] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(12731), 1, - anon_sym_DQUOTE, - ACTIONS(12735), 1, + ACTIONS(12828), 1, anon_sym_TILDE, - ACTIONS(12733), 2, + ACTIONS(12826), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3877), 2, + STATE(3920), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [195200] = 5, + [196462] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(3060), 3, + STATE(2992), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195218] = 5, + [196480] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4355), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1226), 3, + STATE(1939), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195236] = 5, + [196498] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(8438), 1, + anon_sym_DQUOTE, + ACTIONS(12830), 1, + anon_sym_TILDE, + ACTIONS(12706), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3886), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [196516] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2326), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12832), 1, sym__ws, - STATE(4017), 1, + STATE(3976), 1, aux_sym_read_cond_lit_repeat1, - STATE(1940), 3, + STATE(1574), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195254] = 5, + [196534] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5436), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(12737), 1, + ACTIONS(12686), 1, sym__ws, - STATE(3928), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1665), 3, + STATE(2823), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195272] = 5, + [196552] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(12739), 1, + ACTIONS(12686), 1, sym__ws, - STATE(3887), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(2568), 3, + STATE(2937), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195290] = 5, + [196570] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5436), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(12741), 1, + ACTIONS(12834), 1, sym__ws, - STATE(3929), 1, + STATE(3980), 1, aux_sym_read_cond_lit_repeat1, - STATE(1664), 3, + STATE(1930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195308] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(12743), 1, - anon_sym_DQUOTE, - ACTIONS(12747), 1, - anon_sym_TILDE, - ACTIONS(12745), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3931), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [195326] = 5, + [196588] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(12749), 1, + ACTIONS(12686), 1, sym__ws, - STATE(3861), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(3038), 3, + STATE(2937), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195344] = 5, + [196606] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8412), 1, + aux_sym_num_lit_token1, + ACTIONS(8420), 1, + anon_sym_SQUOTE, + ACTIONS(10953), 1, + anon_sym_COMMA, + ACTIONS(10957), 1, + aux_sym_format_directive_type_token11, + STATE(3094), 2, + sym__format_token, + aux_sym_format_modifiers_repeat1, + [196626] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4355), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(12751), 1, + ACTIONS(12836), 1, sym__ws, - STATE(3879), 1, + STATE(3950), 1, aux_sym_read_cond_lit_repeat1, - STATE(1239), 3, + STATE(1930), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195362] = 5, + [196644] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12838), 1, sym__ws, - STATE(4017), 1, + STATE(3951), 1, aux_sym_read_cond_lit_repeat1, - STATE(2614), 3, + STATE(2634), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195380] = 5, + [196662] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4786), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(12753), 1, + ACTIONS(12840), 1, sym__ws, - STATE(3880), 1, + STATE(3953), 1, aux_sym_read_cond_lit_repeat1, - STATE(1307), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195398] = 5, + [196680] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4894), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1498), 3, + STATE(2784), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195416] = 5, + [196698] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2326), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(12755), 1, + ACTIONS(12686), 1, sym__ws, - STATE(3935), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1938), 3, + STATE(1939), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195434] = 5, + [196716] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4894), 1, + ACTIONS(4861), 1, anon_sym_LPAREN, - ACTIONS(12757), 1, + ACTIONS(12686), 1, sym__ws, - STATE(3944), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1487), 3, + STATE(1452), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195452] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(8377), 1, - anon_sym_DQUOTE, - ACTIONS(12759), 1, - anon_sym_TILDE, - ACTIONS(12639), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3948), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [195470] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(12761), 1, - anon_sym_DQUOTE, - ACTIONS(12766), 1, - anon_sym_TILDE, - ACTIONS(12763), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3948), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [195488] = 5, + [196734] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2326), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(12769), 1, + ACTIONS(12686), 1, sym__ws, - STATE(3915), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1900), 3, + STATE(3067), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195506] = 5, + [196752] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(2930), 3, + STATE(1165), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195524] = 5, + [196770] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2326), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12842), 1, sym__ws, - STATE(4017), 1, + STATE(3975), 1, aux_sym_read_cond_lit_repeat1, - STATE(2770), 3, + STATE(3072), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195542] = 5, + [196788] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(12771), 1, + ACTIONS(8454), 1, anon_sym_DQUOTE, - ACTIONS(12775), 1, + ACTIONS(12844), 1, anon_sym_TILDE, - ACTIONS(12773), 2, + ACTIONS(12706), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3959), 2, + STATE(3886), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [195560] = 5, + [196806] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4714), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(12777), 1, + ACTIONS(12846), 1, sym__ws, - STATE(3962), 1, + STATE(3979), 1, aux_sym_read_cond_lit_repeat1, - STATE(2800), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195578] = 5, + [196824] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4714), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(12779), 1, + ACTIONS(12686), 1, sym__ws, - STATE(3964), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(2884), 3, + STATE(3070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195596] = 5, + [196842] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5654), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - ACTIONS(12781), 1, + ACTIONS(12686), 1, sym__ws, - STATE(3863), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(2884), 3, + STATE(1561), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195614] = 5, + [196860] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(12783), 1, + ACTIONS(12848), 1, sym__ws, - STATE(3950), 1, + STATE(3903), 1, aux_sym_read_cond_lit_repeat1, - STATE(2891), 3, + STATE(2812), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195632] = 5, + [196878] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2326), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(12785), 1, + ACTIONS(12850), 1, sym__ws, - STATE(3951), 1, + STATE(3900), 1, aux_sym_read_cond_lit_repeat1, - STATE(2758), 3, + STATE(2955), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195650] = 5, - ACTIONS(29), 1, + [196896] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4448), 1, anon_sym_LPAREN, + ACTIONS(12686), 1, + sym__ws, + STATE(4069), 1, + aux_sym_read_cond_lit_repeat1, + STATE(1187), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [196914] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12619), 1, + ACTIONS(2959), 1, + anon_sym_LPAREN, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(1801), 3, + STATE(1921), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195668] = 5, - ACTIONS(3), 1, + [196932] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 1, sym_block_comment, - ACTIONS(8365), 1, - anon_sym_DQUOTE, - ACTIONS(12787), 1, - anon_sym_TILDE, - ACTIONS(12639), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3948), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [195686] = 5, + ACTIONS(12686), 1, + sym__ws, + STATE(4069), 1, + aux_sym_read_cond_lit_repeat1, + STATE(1826), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [196950] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4692), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(12852), 1, + sym__ws, + STATE(3968), 1, + aux_sym_read_cond_lit_repeat1, + STATE(1959), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [196968] = 5, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12686), 1, sym__ws, - STATE(4017), 1, + STATE(4069), 1, aux_sym_read_cond_lit_repeat1, - STATE(2876), 3, + STATE(1824), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195704] = 5, + [196986] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(12789), 1, + ACTIONS(8458), 1, anon_sym_DQUOTE, - ACTIONS(12793), 1, + ACTIONS(12854), 1, anon_sym_TILDE, - ACTIONS(12791), 2, + ACTIONS(12706), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3885), 2, + STATE(3886), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [195722] = 5, + [197004] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4714), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12856), 1, sym__ws, - STATE(4017), 1, + STATE(3962), 1, aux_sym_read_cond_lit_repeat1, - STATE(2809), 3, + STATE(2902), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195740] = 5, + [197022] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(2326), 1, + ACTIONS(4805), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12858), 1, sym__ws, - STATE(4017), 1, + STATE(3876), 1, aux_sym_read_cond_lit_repeat1, - STATE(2755), 3, + STATE(2652), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195758] = 5, + [197040] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4714), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(12619), 1, + ACTIONS(12860), 1, sym__ws, - STATE(4017), 1, + STATE(3967), 1, aux_sym_read_cond_lit_repeat1, - STATE(2876), 3, + STATE(2782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195776] = 5, + [197058] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4714), 1, + ACTIONS(5135), 1, anon_sym_LPAREN, - ACTIONS(12795), 1, + ACTIONS(12862), 1, sym__ws, - STATE(3922), 1, + STATE(3917), 1, aux_sym_read_cond_lit_repeat1, - STATE(2797), 3, + STATE(1688), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [195794] = 5, - ACTIONS(47), 1, + [197076] = 5, + ACTIONS(3), 1, sym_block_comment, - ACTIONS(12797), 1, - anon_sym_COLON, - ACTIONS(12801), 1, - aux_sym__sym_lit_without_slash_token1, - STATE(3973), 1, - aux_sym__sym_lit_without_slash_repeat1, - ACTIONS(12799), 2, - anon_sym_COLON_COLON, - anon_sym_SLASH, - [195811] = 3, + ACTIONS(12864), 1, + anon_sym_DQUOTE, + ACTIONS(12868), 1, + anon_sym_TILDE, + ACTIONS(12866), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3973), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [197094] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12803), 1, + ACTIONS(12870), 1, anon_sym_loop, - ACTIONS(12805), 4, + ACTIONS(12872), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [195824] = 3, + [197107] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12807), 1, + ACTIONS(12874), 1, anon_sym_loop, - ACTIONS(12805), 4, + ACTIONS(12872), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [195837] = 3, + [197120] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12809), 1, + ACTIONS(12876), 1, anon_sym_loop, - ACTIONS(12805), 4, + ACTIONS(12872), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [195850] = 6, + [197133] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12811), 1, + ACTIONS(12878), 1, anon_sym_cl, - ACTIONS(12813), 1, + ACTIONS(12880), 1, aux_sym__sym_lit_without_slash_token1, - STATE(3966), 1, + STATE(3995), 1, aux_sym__sym_lit_without_slash_repeat1, - STATE(3991), 1, + STATE(4040), 1, sym__sym_lit_without_slash, - STATE(4111), 1, + STATE(4123), 1, sym__package_lit_without_slash, - [195869] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(12815), 1, - anon_sym_loop, - ACTIONS(12805), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [195882] = 3, + [197152] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12817), 1, + ACTIONS(12882), 1, anon_sym_loop, - ACTIONS(12805), 4, + ACTIONS(12872), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [195895] = 5, + [197165] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12819), 1, + ACTIONS(12884), 1, anon_sym_COLON, - ACTIONS(12823), 1, + ACTIONS(12888), 1, aux_sym__sym_lit_without_slash_token1, - STATE(3973), 1, + STATE(3998), 1, aux_sym__sym_lit_without_slash_repeat1, - ACTIONS(12821), 2, + ACTIONS(12886), 2, anon_sym_COLON_COLON, anon_sym_SLASH, - [195912] = 3, + [197182] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12826), 1, + ACTIONS(12890), 1, anon_sym_loop, - ACTIONS(12805), 4, + ACTIONS(12872), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [195925] = 3, + [197195] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12828), 1, + ACTIONS(12892), 1, anon_sym_loop, - ACTIONS(12805), 4, + ACTIONS(12872), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [195938] = 3, + [197208] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12830), 1, + ACTIONS(12894), 1, + anon_sym_COLON, + ACTIONS(12898), 1, + aux_sym__sym_lit_without_slash_token1, + STATE(3998), 1, + aux_sym__sym_lit_without_slash_repeat1, + ACTIONS(12896), 2, + anon_sym_COLON_COLON, + anon_sym_SLASH, + [197225] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12901), 1, anon_sym_loop, - ACTIONS(12805), 4, + ACTIONS(12872), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [195951] = 3, + [197238] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12832), 1, + ACTIONS(12903), 1, anon_sym_loop, - ACTIONS(12805), 4, + ACTIONS(12872), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [195964] = 3, + [197251] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12834), 1, + ACTIONS(12905), 1, anon_sym_loop, - ACTIONS(12805), 4, + ACTIONS(12872), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [195977] = 2, + [197264] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12907), 1, + anon_sym_loop, + ACTIONS(12872), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [197277] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(12836), 4, + ACTIONS(12909), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [195987] = 2, + [197287] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12911), 1, + anon_sym_COLON, + ACTIONS(12913), 3, + anon_sym_COLON_COLON, + anon_sym_SLASH, + aux_sym__sym_lit_without_slash_token1, + [197299] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(12838), 4, + ACTIONS(12915), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [195997] = 2, + [197309] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(12840), 4, + ACTIONS(12917), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [196007] = 2, + [197319] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(12842), 4, + ACTIONS(12919), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [196017] = 2, + [197329] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(12844), 4, + ACTIONS(12921), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [196027] = 2, + [197339] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(12846), 4, + ACTIONS(12923), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [196037] = 2, + [197349] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(12848), 4, + ACTIONS(12925), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [196047] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(12850), 1, - anon_sym_COLON, - ACTIONS(12852), 3, - anon_sym_COLON_COLON, - anon_sym_SLASH, - aux_sym__sym_lit_without_slash_token1, - [196059] = 2, + [197359] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(12854), 4, + ACTIONS(12927), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [196069] = 2, + [197369] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(12856), 4, + ACTIONS(12929), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [196079] = 4, + [197379] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12860), 1, + ACTIONS(12933), 1, anon_sym_EQ, - STATE(2561), 1, + STATE(2638), 1, sym_kwd_symbol, - [196092] = 4, + [197392] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(12862), 1, + ACTIONS(12935), 1, anon_sym_EQ, - STATE(2628), 1, + STATE(1009), 1, sym_sym_lit, - [196105] = 4, + [197405] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12864), 1, - anon_sym_COLON, - ACTIONS(12866), 1, - anon_sym_COLON_COLON, - ACTIONS(12868), 1, - anon_sym_SLASH, - [196118] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(237), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(12870), 1, + ACTIONS(12937), 1, anon_sym_EQ, - STATE(2628), 1, + STATE(1009), 1, sym_sym_lit, - [196131] = 4, + [197418] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12872), 1, + ACTIONS(12939), 1, anon_sym_EQ, - STATE(2628), 1, - sym_sym_lit, - [196144] = 4, + STATE(2638), 1, + sym_kwd_symbol, + [197431] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12874), 1, + ACTIONS(12941), 1, anon_sym_EQ, - STATE(2561), 1, + STATE(2638), 1, sym_kwd_symbol, - [196157] = 4, + [197444] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12876), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(12878), 1, + ACTIONS(12943), 1, anon_sym_EQ, - STATE(1022), 1, - sym_kwd_symbol, - [196170] = 4, + STATE(2575), 1, + sym_sym_lit, + [197457] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12880), 1, + ACTIONS(12945), 1, anon_sym_EQ, - STATE(2561), 1, + STATE(2638), 1, sym_kwd_symbol, - [196183] = 4, + [197470] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12882), 1, + ACTIONS(12947), 1, anon_sym_EQ, - STATE(2561), 1, + STATE(2638), 1, sym_kwd_symbol, - [196196] = 4, + [197483] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12876), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(12884), 1, + ACTIONS(12949), 1, anon_sym_EQ, - STATE(1022), 1, - sym_kwd_symbol, - [196209] = 4, + STATE(2575), 1, + sym_sym_lit, + [197496] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(78), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(12886), 1, + ACTIONS(12951), 1, anon_sym_EQ, - STATE(1064), 1, + STATE(2575), 1, sym_sym_lit, - [196222] = 4, + [197509] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(12888), 1, + ACTIONS(12953), 1, anon_sym_EQ, - STATE(2561), 1, - sym_kwd_symbol, - [196235] = 4, + STATE(1009), 1, + sym_sym_lit, + [197522] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12876), 1, + ACTIONS(12955), 1, aux_sym_sym_lit_token1, - ACTIONS(12890), 1, + ACTIONS(12957), 1, anon_sym_EQ, - STATE(1022), 1, + STATE(1053), 1, sym_kwd_symbol, - [196248] = 4, + [197535] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12876), 1, - aux_sym_sym_lit_token1, - ACTIONS(12892), 1, - anon_sym_EQ, - STATE(1022), 1, - sym_kwd_symbol, - [196261] = 4, + ACTIONS(12888), 1, + aux_sym__sym_lit_without_slash_token1, + STATE(3995), 1, + aux_sym__sym_lit_without_slash_repeat1, + STATE(4113), 1, + sym__sym_lit_without_slash, + [197548] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12876), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12894), 1, + ACTIONS(12959), 1, anon_sym_EQ, - STATE(1022), 1, + STATE(2638), 1, sym_kwd_symbol, - [196274] = 4, + [197561] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(78), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12896), 1, + ACTIONS(12961), 1, anon_sym_EQ, - STATE(1064), 1, - sym_sym_lit, - [196287] = 4, + STATE(2638), 1, + sym_kwd_symbol, + [197574] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12876), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(12898), 1, + ACTIONS(12963), 1, anon_sym_EQ, - STATE(1022), 1, - sym_kwd_symbol, - [196300] = 4, + STATE(2575), 1, + sym_sym_lit, + [197587] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12900), 1, + ACTIONS(12965), 1, anon_sym_EQ, - STATE(2561), 1, + STATE(2638), 1, sym_kwd_symbol, - [196313] = 4, + [197600] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(78), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(12902), 1, + ACTIONS(12967), 1, anon_sym_EQ, - STATE(1064), 1, + STATE(2575), 1, sym_sym_lit, - [196326] = 4, + [197613] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(12904), 1, + ACTIONS(12969), 1, anon_sym_EQ, - STATE(2561), 1, - sym_kwd_symbol, - [196339] = 4, + STATE(2575), 1, + sym_sym_lit, + [197626] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(12906), 1, + ACTIONS(12971), 1, anon_sym_EQ, - STATE(2628), 1, + STATE(2575), 1, sym_sym_lit, - [196352] = 4, + [197639] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12876), 1, + ACTIONS(12955), 1, aux_sym_sym_lit_token1, - ACTIONS(12908), 1, + ACTIONS(12973), 1, anon_sym_EQ, - STATE(1022), 1, + STATE(1053), 1, sym_kwd_symbol, - [196365] = 4, + [197652] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12876), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(12910), 1, + ACTIONS(12975), 1, anon_sym_EQ, - STATE(1022), 1, - sym_kwd_symbol, - [196378] = 4, + STATE(2575), 1, + sym_sym_lit, + [197665] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(12912), 1, + ACTIONS(12977), 1, anon_sym_EQ, - STATE(2628), 1, + STATE(1009), 1, sym_sym_lit, - [196391] = 4, + [197678] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12876), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12914), 1, + ACTIONS(12979), 1, anon_sym_EQ, - STATE(1022), 1, + STATE(2638), 1, sym_kwd_symbol, - [196404] = 4, + [197691] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12876), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12916), 1, + ACTIONS(12981), 1, anon_sym_EQ, - STATE(1022), 1, + STATE(2638), 1, sym_kwd_symbol, - [196417] = 4, + [197704] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(12918), 1, + ACTIONS(12983), 1, anon_sym_EQ, - STATE(2561), 1, - sym_kwd_symbol, - [196430] = 4, + STATE(1009), 1, + sym_sym_lit, + [197717] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(78), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(12920), 1, + ACTIONS(12985), 1, anon_sym_EQ, - STATE(1064), 1, + STATE(2575), 1, sym_sym_lit, - [196443] = 4, + [197730] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12922), 1, - sym__ws, - ACTIONS(12925), 1, - anon_sym_LPAREN, - STATE(4017), 1, - aux_sym_read_cond_lit_repeat1, - [196456] = 4, + ACTIONS(12987), 1, + anon_sym_COLON, + ACTIONS(12989), 1, + anon_sym_COLON_COLON, + ACTIONS(12991), 1, + anon_sym_SLASH, + [197743] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12801), 1, - aux_sym__sym_lit_without_slash_token1, - STATE(3966), 1, - aux_sym__sym_lit_without_slash_repeat1, - STATE(4110), 1, - sym__sym_lit_without_slash, - [196469] = 4, + ACTIONS(12931), 1, + aux_sym_sym_lit_token1, + ACTIONS(12993), 1, + anon_sym_EQ, + STATE(2638), 1, + sym_kwd_symbol, + [197756] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(12927), 1, + ACTIONS(12995), 1, anon_sym_EQ, - STATE(2628), 1, + STATE(2575), 1, sym_sym_lit, - [196482] = 4, + [197769] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(12929), 1, + ACTIONS(12997), 1, anon_sym_EQ, - STATE(2561), 1, - sym_kwd_symbol, - [196495] = 4, + STATE(2575), 1, + sym_sym_lit, + [197782] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(12931), 1, + ACTIONS(12999), 1, anon_sym_EQ, - STATE(2628), 1, + STATE(1009), 1, sym_sym_lit, - [196508] = 4, + [197795] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(12955), 1, aux_sym_sym_lit_token1, - ACTIONS(12933), 1, + ACTIONS(13001), 1, anon_sym_EQ, - STATE(2561), 1, + STATE(1053), 1, sym_kwd_symbol, - [196521] = 4, + [197808] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(12955), 1, aux_sym_sym_lit_token1, - ACTIONS(12935), 1, + ACTIONS(13003), 1, anon_sym_EQ, - STATE(2628), 1, - sym_sym_lit, - [196534] = 4, + STATE(1053), 1, + sym_kwd_symbol, + [197821] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12937), 1, + ACTIONS(13005), 1, anon_sym_EQ, - STATE(2561), 1, + STATE(2638), 1, sym_kwd_symbol, - [196547] = 4, + [197834] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(78), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12939), 1, + ACTIONS(13007), 1, anon_sym_EQ, - STATE(1064), 1, - sym_sym_lit, - [196560] = 4, + STATE(2638), 1, + sym_kwd_symbol, + [197847] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12941), 1, + ACTIONS(13009), 1, anon_sym_EQ, - STATE(2561), 1, + STATE(2638), 1, sym_kwd_symbol, - [196573] = 4, + [197860] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(78), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12943), 1, + ACTIONS(13011), 1, anon_sym_EQ, - STATE(1064), 1, - sym_sym_lit, - [196586] = 4, + STATE(2638), 1, + sym_kwd_symbol, + [197873] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(78), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(12945), 1, + ACTIONS(13013), 1, anon_sym_EQ, - STATE(1064), 1, + STATE(1009), 1, sym_sym_lit, - [196599] = 4, + [197886] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(12955), 1, aux_sym_sym_lit_token1, - ACTIONS(12947), 1, + ACTIONS(13015), 1, anon_sym_EQ, - STATE(2561), 1, + STATE(1053), 1, sym_kwd_symbol, - [196612] = 4, + [197899] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12876), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12949), 1, + ACTIONS(13017), 1, anon_sym_EQ, - STATE(1022), 1, + STATE(2638), 1, sym_kwd_symbol, - [196625] = 4, + [197912] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12876), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(12951), 1, + ACTIONS(13019), 1, anon_sym_EQ, - STATE(1022), 1, - sym_kwd_symbol, - [196638] = 4, + STATE(1009), 1, + sym_sym_lit, + [197925] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12953), 1, + ACTIONS(13021), 1, anon_sym_EQ, - STATE(2561), 1, + STATE(2638), 1, sym_kwd_symbol, - [196651] = 4, + [197938] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(12955), 1, + ACTIONS(13023), 1, anon_sym_EQ, - STATE(2628), 1, + STATE(2575), 1, sym_sym_lit, - [196664] = 4, + [197951] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12957), 1, + ACTIONS(13025), 1, anon_sym_EQ, - STATE(2628), 1, - sym_sym_lit, - [196677] = 4, + STATE(2638), 1, + sym_kwd_symbol, + [197964] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(78), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(12959), 1, + ACTIONS(13027), 1, anon_sym_EQ, - STATE(1064), 1, + STATE(1009), 1, sym_sym_lit, - [196690] = 4, + [197977] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(12961), 1, + ACTIONS(13029), 1, anon_sym_EQ, - STATE(2628), 1, + STATE(2575), 1, sym_sym_lit, - [196703] = 4, + [197990] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12963), 1, + ACTIONS(13031), 1, anon_sym_EQ, - STATE(2628), 1, - sym_sym_lit, - [196716] = 4, + STATE(2638), 1, + sym_kwd_symbol, + [198003] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(12965), 1, + ACTIONS(13033), 1, anon_sym_EQ, - STATE(2628), 1, + STATE(2575), 1, sym_sym_lit, - [196729] = 4, + [198016] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12967), 1, + ACTIONS(13035), 1, anon_sym_EQ, - STATE(2561), 1, + STATE(2638), 1, sym_kwd_symbol, - [196742] = 4, + [198029] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12969), 1, + ACTIONS(13037), 1, anon_sym_EQ, - STATE(2628), 1, - sym_sym_lit, - [196755] = 4, + STATE(2638), 1, + sym_kwd_symbol, + [198042] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(12955), 1, aux_sym_sym_lit_token1, - ACTIONS(12971), 1, + ACTIONS(13039), 1, anon_sym_EQ, - STATE(2561), 1, + STATE(1053), 1, sym_kwd_symbol, - [196768] = 4, + [198055] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(78), 1, + ACTIONS(12955), 1, aux_sym_sym_lit_token1, - ACTIONS(12973), 1, + ACTIONS(13041), 1, anon_sym_EQ, - STATE(1064), 1, - sym_sym_lit, - [196781] = 4, + STATE(1053), 1, + sym_kwd_symbol, + [198068] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12975), 1, + ACTIONS(13043), 1, anon_sym_EQ, - STATE(2561), 1, + STATE(2638), 1, sym_kwd_symbol, - [196794] = 4, + [198081] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(12977), 1, + ACTIONS(13045), 1, anon_sym_EQ, - STATE(2628), 1, + STATE(1009), 1, sym_sym_lit, - [196807] = 4, + [198094] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(12955), 1, aux_sym_sym_lit_token1, - ACTIONS(12979), 1, + ACTIONS(13047), 1, anon_sym_EQ, - STATE(2561), 1, + STATE(1053), 1, sym_kwd_symbol, - [196820] = 4, + [198107] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(78), 1, - aux_sym_sym_lit_token1, - ACTIONS(12981), 1, - anon_sym_EQ, - STATE(1064), 1, - sym_sym_lit, - [196833] = 4, + ACTIONS(13049), 1, + sym__ws, + ACTIONS(13052), 1, + anon_sym_LPAREN, + STATE(4069), 1, + aux_sym_read_cond_lit_repeat1, + [198120] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(12983), 1, + ACTIONS(13054), 1, anon_sym_EQ, - STATE(2561), 1, - sym_kwd_symbol, - [196846] = 4, + STATE(2575), 1, + sym_sym_lit, + [198133] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(12985), 1, + ACTIONS(13056), 1, anon_sym_EQ, - STATE(2561), 1, - sym_kwd_symbol, - [196859] = 4, + STATE(2575), 1, + sym_sym_lit, + [198146] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(78), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(12987), 1, + ACTIONS(13058), 1, anon_sym_EQ, - STATE(1064), 1, + STATE(2575), 1, sym_sym_lit, - [196872] = 4, + [198159] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(12955), 1, aux_sym_sym_lit_token1, - ACTIONS(12989), 1, + ACTIONS(13060), 1, anon_sym_EQ, - STATE(2561), 1, + STATE(1053), 1, sym_kwd_symbol, - [196885] = 4, + [198172] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(12955), 1, aux_sym_sym_lit_token1, - ACTIONS(12991), 1, + ACTIONS(13062), 1, anon_sym_EQ, - STATE(2561), 1, + STATE(1053), 1, sym_kwd_symbol, - [196898] = 4, + [198185] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(78), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - ACTIONS(12993), 1, + ACTIONS(13064), 1, anon_sym_EQ, - STATE(1064), 1, - sym_sym_lit, - [196911] = 4, + STATE(2638), 1, + sym_kwd_symbol, + [198198] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(12995), 1, + ACTIONS(13066), 1, anon_sym_EQ, - STATE(2628), 1, + STATE(2575), 1, sym_sym_lit, - [196924] = 4, + [198211] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(12997), 1, + ACTIONS(13068), 1, anon_sym_EQ, - STATE(2628), 1, + STATE(2575), 1, sym_sym_lit, - [196937] = 4, + [198224] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(12999), 1, + ACTIONS(13070), 1, anon_sym_EQ, - STATE(2628), 1, + STATE(2575), 1, sym_sym_lit, - [196950] = 4, + [198237] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(12955), 1, aux_sym_sym_lit_token1, - ACTIONS(13001), 1, + ACTIONS(13072), 1, anon_sym_EQ, - STATE(2561), 1, + STATE(1053), 1, sym_kwd_symbol, - [196963] = 4, + [198250] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(13003), 1, + ACTIONS(13074), 1, anon_sym_EQ, - STATE(2628), 1, + STATE(2575), 1, sym_sym_lit, - [196976] = 4, + [198263] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(13005), 1, + ACTIONS(13076), 1, anon_sym_EQ, - STATE(2628), 1, + STATE(2575), 1, sym_sym_lit, - [196989] = 4, + [198276] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(13007), 1, + ACTIONS(13078), 1, anon_sym_EQ, - STATE(2628), 1, + STATE(1009), 1, sym_sym_lit, - [197002] = 4, + [198289] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12858), 1, + ACTIONS(230), 1, aux_sym_sym_lit_token1, - ACTIONS(13009), 1, - anon_sym_EQ, - STATE(2561), 1, - sym_kwd_symbol, - [197015] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(237), 1, - aux_sym_sym_lit_token1, - ACTIONS(13011), 1, + ACTIONS(13080), 1, anon_sym_EQ, - STATE(2628), 1, + STATE(1009), 1, sym_sym_lit, - [197028] = 4, + [198302] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(12955), 1, aux_sym_sym_lit_token1, - ACTIONS(13013), 1, + ACTIONS(13082), 1, anon_sym_EQ, - STATE(2628), 1, - sym_sym_lit, - [197041] = 4, + STATE(1053), 1, + sym_kwd_symbol, + [198315] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(237), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(13015), 1, + ACTIONS(13084), 1, anon_sym_EQ, - STATE(2628), 1, + STATE(2575), 1, sym_sym_lit, - [197054] = 3, + [198328] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13017), 1, + ACTIONS(12931), 1, aux_sym_sym_lit_token1, - STATE(2561), 1, + ACTIONS(13086), 1, + anon_sym_EQ, + STATE(2638), 1, sym_kwd_symbol, - [197064] = 3, + [198341] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10337), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - STATE(2888), 1, + ACTIONS(13088), 1, + anon_sym_EQ, + STATE(2575), 1, sym_sym_lit, - [197074] = 3, + [198354] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13019), 1, + ACTIONS(13090), 1, aux_sym_sym_lit_token1, - STATE(1280), 1, - sym_sym_lit, - [197084] = 3, + STATE(1683), 1, + sym_kwd_symbol, + [198364] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13021), 1, + ACTIONS(13092), 1, aux_sym_sym_lit_token1, - STATE(2628), 1, + STATE(1933), 1, sym_sym_lit, - [197094] = 3, + [198374] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13023), 1, - aux_sym_sym_lit_token1, - STATE(1660), 1, - sym_kwd_symbol, - [197104] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(10355), 1, + ACTIONS(13094), 1, aux_sym_sym_lit_token1, - STATE(2888), 1, + STATE(2575), 1, sym_sym_lit, - [197114] = 3, + [198384] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13025), 1, + ACTIONS(13096), 1, aux_sym_sym_lit_token1, - STATE(1701), 1, - sym_sym_lit, - [197124] = 3, + STATE(3062), 1, + sym_kwd_symbol, + [198394] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13027), 1, + ACTIONS(13098), 1, aux_sym_sym_lit_token1, - STATE(3041), 1, + STATE(1591), 1, sym_kwd_symbol, - [197134] = 3, + [198404] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13029), 1, + ACTIONS(13100), 1, aux_sym_sym_lit_token1, - STATE(1022), 1, + STATE(2638), 1, sym_kwd_symbol, - [197144] = 3, + [198414] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13031), 1, + ACTIONS(13102), 1, aux_sym_sym_lit_token1, - STATE(1064), 1, + STATE(1171), 1, sym_sym_lit, - [197154] = 3, + [198424] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10355), 1, + ACTIONS(13104), 1, aux_sym_sym_lit_token1, - STATE(1905), 1, + STATE(1446), 1, sym_sym_lit, - [197164] = 3, + [198434] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13033), 1, + ACTIONS(10424), 1, aux_sym_sym_lit_token1, - STATE(1243), 1, + STATE(2950), 1, sym_sym_lit, - [197174] = 3, + [198444] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13035), 1, + ACTIONS(13106), 1, aux_sym_sym_lit_token1, - STATE(1485), 1, + STATE(1139), 1, sym_kwd_symbol, - [197184] = 3, + [198454] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13037), 1, + ACTIONS(13108), 1, aux_sym_sym_lit_token1, - STATE(1199), 1, + STATE(2780), 1, sym_kwd_symbol, - [197194] = 3, + [198464] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(12864), 1, - anon_sym_COLON, - ACTIONS(12866), 1, - anon_sym_COLON_COLON, - [197204] = 3, + ACTIONS(13110), 1, + aux_sym_sym_lit_token1, + STATE(1476), 1, + sym_kwd_symbol, + [198474] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13039), 1, + ACTIONS(13112), 1, aux_sym_sym_lit_token1, - STATE(1905), 1, + STATE(1535), 1, sym_sym_lit, - [197214] = 3, + [198484] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13041), 1, + ACTIONS(13114), 1, aux_sym_sym_lit_token1, - STATE(1311), 1, + STATE(1799), 1, sym_kwd_symbol, - [197224] = 3, + [198494] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13043), 1, + ACTIONS(10416), 1, aux_sym_sym_lit_token1, - STATE(1547), 1, + STATE(2950), 1, sym_sym_lit, - [197234] = 3, + [198504] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13045), 1, + ACTIONS(10406), 1, aux_sym_sym_lit_token1, - STATE(1760), 1, - sym_kwd_symbol, - [197244] = 3, + STATE(1837), 1, + sym_sym_lit, + [198514] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(10345), 1, + ACTIONS(10416), 1, aux_sym_sym_lit_token1, - STATE(1818), 1, + STATE(1933), 1, sym_sym_lit, - [197254] = 3, + [198524] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13047), 1, + ACTIONS(13116), 1, aux_sym_sym_lit_token1, - STATE(2773), 1, - sym_kwd_symbol, - [197264] = 3, + STATE(1009), 1, + sym_sym_lit, + [198534] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13049), 1, + ACTIONS(13118), 1, aux_sym_sym_lit_token1, - STATE(2771), 1, - sym_kwd_symbol, - [197274] = 2, + STATE(1724), 1, + sym_sym_lit, + [198544] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7218), 1, - anon_sym_LBRACE, - [197281] = 2, + ACTIONS(13120), 1, + aux_sym_sym_lit_token1, + STATE(1053), 1, + sym_kwd_symbol, + [198554] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13051), 1, + ACTIONS(12987), 1, anon_sym_COLON, - [197288] = 2, + ACTIONS(12989), 1, + anon_sym_COLON_COLON, + [198564] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13053), 1, - anon_sym_COLON, - [197295] = 2, + ACTIONS(13122), 1, + aux_sym_sym_lit_token1, + STATE(2819), 1, + sym_kwd_symbol, + [198574] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7242), 1, - anon_sym_LBRACE, - [197302] = 2, + ACTIONS(13124), 1, + anon_sym_COLON, + [198581] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13055), 1, + ACTIONS(13126), 1, anon_sym_COLON, - [197309] = 2, + [198588] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13057), 1, - aux_sym__format_token_token1, - [197316] = 2, + ACTIONS(13128), 1, + aux_sym_regex_lit_token1, + [198595] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7282), 1, - anon_sym_LBRACE, - [197323] = 2, + ACTIONS(13130), 1, + anon_sym_SLASH, + [198602] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13059), 1, + ACTIONS(13132), 1, aux_sym_regex_lit_token1, - [197330] = 2, + [198609] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13061), 1, - ts_builtin_sym_end, - [197337] = 2, + ACTIONS(13134), 1, + anon_sym_COLON, + [198616] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7355), 1, + anon_sym_LBRACE, + [198623] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13063), 1, + ACTIONS(13136), 1, anon_sym_COLON, - [197344] = 2, + [198630] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7294), 1, + ACTIONS(7315), 1, anon_sym_LBRACE, - [197351] = 2, + [198637] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13065), 1, - aux_sym_regex_lit_token1, - [197358] = 2, + ACTIONS(13138), 1, + anon_sym_into, + [198644] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13067), 1, + ACTIONS(13140), 1, anon_sym_COLON, - [197365] = 2, + [198651] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13069), 1, + ACTIONS(13142), 1, aux_sym_regex_lit_token1, - [197372] = 2, + [198658] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13071), 1, + ACTIONS(13144), 1, anon_sym_into, - [197379] = 2, + [198665] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13073), 1, - anon_sym_COLON, - [197386] = 2, + ACTIONS(13146), 1, + anon_sym_SLASH, + [198672] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13075), 1, + ACTIONS(13148), 1, anon_sym_into, - [197393] = 2, + [198679] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13077), 1, - aux_sym_regex_lit_token1, - [197400] = 2, + ACTIONS(7371), 1, + anon_sym_LBRACE, + [198686] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7230), 1, + ACTIONS(7339), 1, anon_sym_LBRACE, - [197407] = 2, + [198693] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13079), 1, - aux_sym_regex_lit_token1, - [197414] = 2, + ACTIONS(13150), 1, + anon_sym_COLON, + [198700] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13081), 1, - anon_sym_into, - [197421] = 2, + ACTIONS(7299), 1, + anon_sym_LBRACE, + [198707] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13083), 1, - anon_sym_COLON, - [197428] = 2, + ACTIONS(7275), 1, + anon_sym_LBRACE, + [198714] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13085), 1, - anon_sym_COLON, - [197435] = 2, + ACTIONS(13152), 1, + aux_sym__format_token_token1, + [198721] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13087), 1, + ACTIONS(13154), 1, aux_sym_regex_lit_token1, - [197442] = 2, + [198728] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13089), 1, - anon_sym_SLASH, - [197449] = 2, + ACTIONS(7287), 1, + anon_sym_LBRACE, + [198735] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13091), 1, - anon_sym_SLASH, - [197456] = 2, + ACTIONS(13156), 1, + ts_builtin_sym_end, + [198742] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13093), 1, + ACTIONS(13158), 1, anon_sym_COLON, - [197463] = 2, + [198749] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13095), 1, - anon_sym_COLON, - [197470] = 2, + ACTIONS(13160), 1, + anon_sym_into, + [198756] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7266), 1, - anon_sym_LBRACE, - [197477] = 2, + ACTIONS(13162), 1, + anon_sym_COLON, + [198763] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7206), 1, - anon_sym_LBRACE, - [197484] = 2, + ACTIONS(13164), 1, + aux_sym_regex_lit_token1, + [198770] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13097), 1, + ACTIONS(13166), 1, anon_sym_into, - [197491] = 2, + [198777] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13099), 1, - anon_sym_into, - [197498] = 2, + ACTIONS(13168), 1, + anon_sym_COLON, + [198784] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13101), 1, - aux_sym_regex_lit_token1, - [197505] = 2, + ACTIONS(13170), 1, + anon_sym_into, + [198791] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13103), 1, - anon_sym_into, - [197512] = 2, + ACTIONS(13172), 1, + anon_sym_COLON, + [198798] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13105), 1, - anon_sym_into, - [197519] = 2, + ACTIONS(13174), 1, + aux_sym_regex_lit_token1, + [198805] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13107), 1, + ACTIONS(13176), 1, anon_sym_COLON, - [197526] = 2, + [198812] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13109), 1, + ACTIONS(13178), 1, anon_sym_COLON, - [197533] = 2, + [198819] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13111), 1, + ACTIONS(13180), 1, anon_sym_COLON, - [197540] = 2, + [198826] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13113), 1, - anon_sym_COLON, - [197547] = 2, + ACTIONS(13182), 1, + anon_sym_into, + [198833] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(13184), 1, + anon_sym_into, + [198840] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7194), 1, + ACTIONS(7263), 1, anon_sym_LBRACE, - [197554] = 2, + [198847] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13115), 1, - anon_sym_COLON, - [197561] = 2, + ACTIONS(13186), 1, + aux_sym_regex_lit_token1, + [198854] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7254), 1, - anon_sym_LBRACE, - [197568] = 2, + ACTIONS(13188), 1, + aux_sym_regex_lit_token1, + [198861] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13117), 1, + ACTIONS(13190), 1, anon_sym_COLON, - [197575] = 2, + [198868] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13119), 1, - anon_sym_into, - [197582] = 2, + ACTIONS(13192), 1, + anon_sym_COLON, + [198875] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13121), 1, - aux_sym_regex_lit_token1, - [197589] = 2, + ACTIONS(13194), 1, + anon_sym_COLON, + [198882] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(13123), 1, + ACTIONS(13196), 1, aux_sym_regex_lit_token1, + [198889] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7327), 1, + anon_sym_LBRACE, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(398)] = 0, - [SMALL_STATE(399)] = 135, - [SMALL_STATE(400)] = 270, - [SMALL_STATE(401)] = 405, - [SMALL_STATE(402)] = 540, - [SMALL_STATE(403)] = 675, - [SMALL_STATE(404)] = 810, - [SMALL_STATE(405)] = 945, - [SMALL_STATE(406)] = 1080, - [SMALL_STATE(407)] = 1215, - [SMALL_STATE(408)] = 1350, - [SMALL_STATE(409)] = 1485, - [SMALL_STATE(410)] = 1620, - [SMALL_STATE(411)] = 1755, - [SMALL_STATE(412)] = 1890, - [SMALL_STATE(413)] = 2025, - [SMALL_STATE(414)] = 2160, - [SMALL_STATE(415)] = 2295, - [SMALL_STATE(416)] = 2430, - [SMALL_STATE(417)] = 2565, - [SMALL_STATE(418)] = 2700, - [SMALL_STATE(419)] = 2835, - [SMALL_STATE(420)] = 2970, - [SMALL_STATE(421)] = 3105, - [SMALL_STATE(422)] = 3240, - [SMALL_STATE(423)] = 3375, - [SMALL_STATE(424)] = 3510, - [SMALL_STATE(425)] = 3645, - [SMALL_STATE(426)] = 3780, - [SMALL_STATE(427)] = 3915, - [SMALL_STATE(428)] = 4050, - [SMALL_STATE(429)] = 4185, - [SMALL_STATE(430)] = 4320, - [SMALL_STATE(431)] = 4455, - [SMALL_STATE(432)] = 4590, - [SMALL_STATE(433)] = 4725, - [SMALL_STATE(434)] = 4860, - [SMALL_STATE(435)] = 4995, - [SMALL_STATE(436)] = 5130, - [SMALL_STATE(437)] = 5265, - [SMALL_STATE(438)] = 5400, - [SMALL_STATE(439)] = 5535, - [SMALL_STATE(440)] = 5670, - [SMALL_STATE(441)] = 5805, - [SMALL_STATE(442)] = 5940, - [SMALL_STATE(443)] = 6075, - [SMALL_STATE(444)] = 6210, - [SMALL_STATE(445)] = 6345, - [SMALL_STATE(446)] = 6480, - [SMALL_STATE(447)] = 6615, - [SMALL_STATE(448)] = 6750, - [SMALL_STATE(449)] = 6885, - [SMALL_STATE(450)] = 7020, - [SMALL_STATE(451)] = 7155, - [SMALL_STATE(452)] = 7290, - [SMALL_STATE(453)] = 7425, - [SMALL_STATE(454)] = 7560, - [SMALL_STATE(455)] = 7695, - [SMALL_STATE(456)] = 7830, - [SMALL_STATE(457)] = 7965, - [SMALL_STATE(458)] = 8100, - [SMALL_STATE(459)] = 8235, - [SMALL_STATE(460)] = 8370, - [SMALL_STATE(461)] = 8505, - [SMALL_STATE(462)] = 8640, - [SMALL_STATE(463)] = 8775, - [SMALL_STATE(464)] = 8910, - [SMALL_STATE(465)] = 9045, - [SMALL_STATE(466)] = 9180, - [SMALL_STATE(467)] = 9315, - [SMALL_STATE(468)] = 9450, - [SMALL_STATE(469)] = 9585, - [SMALL_STATE(470)] = 9720, - [SMALL_STATE(471)] = 9855, - [SMALL_STATE(472)] = 9990, - [SMALL_STATE(473)] = 10125, - [SMALL_STATE(474)] = 10260, - [SMALL_STATE(475)] = 10395, - [SMALL_STATE(476)] = 10530, - [SMALL_STATE(477)] = 10665, - [SMALL_STATE(478)] = 10800, - [SMALL_STATE(479)] = 10935, - [SMALL_STATE(480)] = 11070, - [SMALL_STATE(481)] = 11205, - [SMALL_STATE(482)] = 11340, - [SMALL_STATE(483)] = 11475, - [SMALL_STATE(484)] = 11610, - [SMALL_STATE(485)] = 11745, - [SMALL_STATE(486)] = 11880, - [SMALL_STATE(487)] = 12015, - [SMALL_STATE(488)] = 12150, - [SMALL_STATE(489)] = 12285, - [SMALL_STATE(490)] = 12420, - [SMALL_STATE(491)] = 12555, - [SMALL_STATE(492)] = 12690, - [SMALL_STATE(493)] = 12825, - [SMALL_STATE(494)] = 12960, - [SMALL_STATE(495)] = 13095, - [SMALL_STATE(496)] = 13230, - [SMALL_STATE(497)] = 13365, - [SMALL_STATE(498)] = 13500, - [SMALL_STATE(499)] = 13635, - [SMALL_STATE(500)] = 13770, - [SMALL_STATE(501)] = 13905, - [SMALL_STATE(502)] = 14040, - [SMALL_STATE(503)] = 14175, - [SMALL_STATE(504)] = 14310, - [SMALL_STATE(505)] = 14445, - [SMALL_STATE(506)] = 14580, - [SMALL_STATE(507)] = 14715, - [SMALL_STATE(508)] = 14850, - [SMALL_STATE(509)] = 14985, - [SMALL_STATE(510)] = 15120, - [SMALL_STATE(511)] = 15255, - [SMALL_STATE(512)] = 15390, - [SMALL_STATE(513)] = 15525, - [SMALL_STATE(514)] = 15660, - [SMALL_STATE(515)] = 15795, - [SMALL_STATE(516)] = 15930, - [SMALL_STATE(517)] = 16065, - [SMALL_STATE(518)] = 16200, - [SMALL_STATE(519)] = 16335, - [SMALL_STATE(520)] = 16470, - [SMALL_STATE(521)] = 16605, - [SMALL_STATE(522)] = 16740, - [SMALL_STATE(523)] = 16875, - [SMALL_STATE(524)] = 17010, - [SMALL_STATE(525)] = 17145, - [SMALL_STATE(526)] = 17280, - [SMALL_STATE(527)] = 17415, - [SMALL_STATE(528)] = 17550, - [SMALL_STATE(529)] = 17685, - [SMALL_STATE(530)] = 17820, - [SMALL_STATE(531)] = 17955, - [SMALL_STATE(532)] = 18090, - [SMALL_STATE(533)] = 18225, - [SMALL_STATE(534)] = 18360, - [SMALL_STATE(535)] = 18495, - [SMALL_STATE(536)] = 18630, - [SMALL_STATE(537)] = 18765, - [SMALL_STATE(538)] = 18900, - [SMALL_STATE(539)] = 19035, - [SMALL_STATE(540)] = 19170, - [SMALL_STATE(541)] = 19305, - [SMALL_STATE(542)] = 19440, - [SMALL_STATE(543)] = 19575, - [SMALL_STATE(544)] = 19710, - [SMALL_STATE(545)] = 19845, - [SMALL_STATE(546)] = 19980, - [SMALL_STATE(547)] = 20115, - [SMALL_STATE(548)] = 20250, - [SMALL_STATE(549)] = 20385, - [SMALL_STATE(550)] = 20520, - [SMALL_STATE(551)] = 20655, - [SMALL_STATE(552)] = 20790, - [SMALL_STATE(553)] = 20925, - [SMALL_STATE(554)] = 21060, - [SMALL_STATE(555)] = 21195, - [SMALL_STATE(556)] = 21330, - [SMALL_STATE(557)] = 21465, - [SMALL_STATE(558)] = 21600, - [SMALL_STATE(559)] = 21735, - [SMALL_STATE(560)] = 21870, - [SMALL_STATE(561)] = 22005, - [SMALL_STATE(562)] = 22140, - [SMALL_STATE(563)] = 22275, - [SMALL_STATE(564)] = 22410, - [SMALL_STATE(565)] = 22545, - [SMALL_STATE(566)] = 22680, - [SMALL_STATE(567)] = 22815, - [SMALL_STATE(568)] = 22950, - [SMALL_STATE(569)] = 23085, - [SMALL_STATE(570)] = 23220, - [SMALL_STATE(571)] = 23355, - [SMALL_STATE(572)] = 23490, - [SMALL_STATE(573)] = 23625, - [SMALL_STATE(574)] = 23760, - [SMALL_STATE(575)] = 23895, - [SMALL_STATE(576)] = 24030, - [SMALL_STATE(577)] = 24165, - [SMALL_STATE(578)] = 24300, - [SMALL_STATE(579)] = 24435, - [SMALL_STATE(580)] = 24570, - [SMALL_STATE(581)] = 24705, - [SMALL_STATE(582)] = 24840, - [SMALL_STATE(583)] = 24975, - [SMALL_STATE(584)] = 25110, - [SMALL_STATE(585)] = 25245, - [SMALL_STATE(586)] = 25380, - [SMALL_STATE(587)] = 25515, - [SMALL_STATE(588)] = 25650, - [SMALL_STATE(589)] = 25785, - [SMALL_STATE(590)] = 25920, - [SMALL_STATE(591)] = 26055, - [SMALL_STATE(592)] = 26190, - [SMALL_STATE(593)] = 26325, - [SMALL_STATE(594)] = 26460, - [SMALL_STATE(595)] = 26595, - [SMALL_STATE(596)] = 26730, - [SMALL_STATE(597)] = 26865, - [SMALL_STATE(598)] = 27000, - [SMALL_STATE(599)] = 27135, - [SMALL_STATE(600)] = 27270, - [SMALL_STATE(601)] = 27405, - [SMALL_STATE(602)] = 27540, - [SMALL_STATE(603)] = 27675, - [SMALL_STATE(604)] = 27810, - [SMALL_STATE(605)] = 27945, - [SMALL_STATE(606)] = 28080, - [SMALL_STATE(607)] = 28215, - [SMALL_STATE(608)] = 28350, - [SMALL_STATE(609)] = 28485, - [SMALL_STATE(610)] = 28620, - [SMALL_STATE(611)] = 28755, - [SMALL_STATE(612)] = 28890, - [SMALL_STATE(613)] = 29025, - [SMALL_STATE(614)] = 29160, - [SMALL_STATE(615)] = 29295, - [SMALL_STATE(616)] = 29430, - [SMALL_STATE(617)] = 29565, - [SMALL_STATE(618)] = 29700, - [SMALL_STATE(619)] = 29835, - [SMALL_STATE(620)] = 29970, - [SMALL_STATE(621)] = 30105, - [SMALL_STATE(622)] = 30240, - [SMALL_STATE(623)] = 30375, - [SMALL_STATE(624)] = 30510, - [SMALL_STATE(625)] = 30645, - [SMALL_STATE(626)] = 30780, - [SMALL_STATE(627)] = 30915, - [SMALL_STATE(628)] = 31050, - [SMALL_STATE(629)] = 31185, - [SMALL_STATE(630)] = 31320, - [SMALL_STATE(631)] = 31455, - [SMALL_STATE(632)] = 31590, - [SMALL_STATE(633)] = 31725, - [SMALL_STATE(634)] = 31860, - [SMALL_STATE(635)] = 31995, - [SMALL_STATE(636)] = 32130, - [SMALL_STATE(637)] = 32265, - [SMALL_STATE(638)] = 32400, - [SMALL_STATE(639)] = 32535, - [SMALL_STATE(640)] = 32670, - [SMALL_STATE(641)] = 32805, - [SMALL_STATE(642)] = 32940, - [SMALL_STATE(643)] = 33075, - [SMALL_STATE(644)] = 33210, - [SMALL_STATE(645)] = 33345, - [SMALL_STATE(646)] = 33480, - [SMALL_STATE(647)] = 33615, - [SMALL_STATE(648)] = 33750, - [SMALL_STATE(649)] = 33885, - [SMALL_STATE(650)] = 34020, - [SMALL_STATE(651)] = 34155, - [SMALL_STATE(652)] = 34290, - [SMALL_STATE(653)] = 34425, - [SMALL_STATE(654)] = 34560, - [SMALL_STATE(655)] = 34695, - [SMALL_STATE(656)] = 34830, - [SMALL_STATE(657)] = 34965, - [SMALL_STATE(658)] = 35100, - [SMALL_STATE(659)] = 35235, - [SMALL_STATE(660)] = 35370, - [SMALL_STATE(661)] = 35505, - [SMALL_STATE(662)] = 35640, - [SMALL_STATE(663)] = 35775, - [SMALL_STATE(664)] = 35910, - [SMALL_STATE(665)] = 36045, - [SMALL_STATE(666)] = 36180, - [SMALL_STATE(667)] = 36315, - [SMALL_STATE(668)] = 36450, - [SMALL_STATE(669)] = 36585, - [SMALL_STATE(670)] = 36720, - [SMALL_STATE(671)] = 36855, - [SMALL_STATE(672)] = 36990, - [SMALL_STATE(673)] = 37125, - [SMALL_STATE(674)] = 37260, - [SMALL_STATE(675)] = 37395, - [SMALL_STATE(676)] = 37530, - [SMALL_STATE(677)] = 37665, - [SMALL_STATE(678)] = 37800, - [SMALL_STATE(679)] = 37935, - [SMALL_STATE(680)] = 38070, - [SMALL_STATE(681)] = 38205, - [SMALL_STATE(682)] = 38340, - [SMALL_STATE(683)] = 38475, - [SMALL_STATE(684)] = 38610, - [SMALL_STATE(685)] = 38745, - [SMALL_STATE(686)] = 38880, - [SMALL_STATE(687)] = 39015, - [SMALL_STATE(688)] = 39150, - [SMALL_STATE(689)] = 39285, - [SMALL_STATE(690)] = 39420, - [SMALL_STATE(691)] = 39555, - [SMALL_STATE(692)] = 39690, - [SMALL_STATE(693)] = 39825, - [SMALL_STATE(694)] = 39960, - [SMALL_STATE(695)] = 40095, - [SMALL_STATE(696)] = 40230, - [SMALL_STATE(697)] = 40365, - [SMALL_STATE(698)] = 40500, - [SMALL_STATE(699)] = 40635, - [SMALL_STATE(700)] = 40770, - [SMALL_STATE(701)] = 40905, - [SMALL_STATE(702)] = 41040, - [SMALL_STATE(703)] = 41175, - [SMALL_STATE(704)] = 41310, - [SMALL_STATE(705)] = 41445, - [SMALL_STATE(706)] = 41580, - [SMALL_STATE(707)] = 41715, - [SMALL_STATE(708)] = 41850, - [SMALL_STATE(709)] = 41985, - [SMALL_STATE(710)] = 42120, - [SMALL_STATE(711)] = 42255, - [SMALL_STATE(712)] = 42390, - [SMALL_STATE(713)] = 42525, - [SMALL_STATE(714)] = 42660, - [SMALL_STATE(715)] = 42795, - [SMALL_STATE(716)] = 42930, - [SMALL_STATE(717)] = 43065, - [SMALL_STATE(718)] = 43200, - [SMALL_STATE(719)] = 43335, - [SMALL_STATE(720)] = 43470, - [SMALL_STATE(721)] = 43605, - [SMALL_STATE(722)] = 43740, - [SMALL_STATE(723)] = 43875, - [SMALL_STATE(724)] = 44010, - [SMALL_STATE(725)] = 44145, - [SMALL_STATE(726)] = 44280, - [SMALL_STATE(727)] = 44415, - [SMALL_STATE(728)] = 44550, - [SMALL_STATE(729)] = 44685, - [SMALL_STATE(730)] = 44820, - [SMALL_STATE(731)] = 44955, - [SMALL_STATE(732)] = 45090, - [SMALL_STATE(733)] = 45225, - [SMALL_STATE(734)] = 45360, - [SMALL_STATE(735)] = 45495, - [SMALL_STATE(736)] = 45630, - [SMALL_STATE(737)] = 45765, - [SMALL_STATE(738)] = 45900, - [SMALL_STATE(739)] = 46035, - [SMALL_STATE(740)] = 46170, - [SMALL_STATE(741)] = 46305, - [SMALL_STATE(742)] = 46440, - [SMALL_STATE(743)] = 46575, - [SMALL_STATE(744)] = 46710, - [SMALL_STATE(745)] = 46845, - [SMALL_STATE(746)] = 46980, - [SMALL_STATE(747)] = 47115, - [SMALL_STATE(748)] = 47250, - [SMALL_STATE(749)] = 47385, - [SMALL_STATE(750)] = 47520, - [SMALL_STATE(751)] = 47655, - [SMALL_STATE(752)] = 47790, - [SMALL_STATE(753)] = 47925, - [SMALL_STATE(754)] = 48060, - [SMALL_STATE(755)] = 48195, - [SMALL_STATE(756)] = 48330, - [SMALL_STATE(757)] = 48465, - [SMALL_STATE(758)] = 48600, - [SMALL_STATE(759)] = 48735, - [SMALL_STATE(760)] = 48870, - [SMALL_STATE(761)] = 49005, - [SMALL_STATE(762)] = 49140, - [SMALL_STATE(763)] = 49275, - [SMALL_STATE(764)] = 49410, - [SMALL_STATE(765)] = 49545, - [SMALL_STATE(766)] = 49680, - [SMALL_STATE(767)] = 49815, - [SMALL_STATE(768)] = 49950, - [SMALL_STATE(769)] = 50085, - [SMALL_STATE(770)] = 50220, - [SMALL_STATE(771)] = 50355, - [SMALL_STATE(772)] = 50490, - [SMALL_STATE(773)] = 50625, - [SMALL_STATE(774)] = 50760, - [SMALL_STATE(775)] = 50895, - [SMALL_STATE(776)] = 51030, - [SMALL_STATE(777)] = 51165, - [SMALL_STATE(778)] = 51300, - [SMALL_STATE(779)] = 51435, - [SMALL_STATE(780)] = 51570, - [SMALL_STATE(781)] = 51705, - [SMALL_STATE(782)] = 51840, - [SMALL_STATE(783)] = 51975, - [SMALL_STATE(784)] = 52110, - [SMALL_STATE(785)] = 52245, - [SMALL_STATE(786)] = 52380, - [SMALL_STATE(787)] = 52515, - [SMALL_STATE(788)] = 52650, - [SMALL_STATE(789)] = 52785, - [SMALL_STATE(790)] = 52920, - [SMALL_STATE(791)] = 53055, - [SMALL_STATE(792)] = 53190, - [SMALL_STATE(793)] = 53325, - [SMALL_STATE(794)] = 53460, - [SMALL_STATE(795)] = 53595, - [SMALL_STATE(796)] = 53730, - [SMALL_STATE(797)] = 53865, - [SMALL_STATE(798)] = 54000, - [SMALL_STATE(799)] = 54135, - [SMALL_STATE(800)] = 54270, - [SMALL_STATE(801)] = 54405, - [SMALL_STATE(802)] = 54540, - [SMALL_STATE(803)] = 54675, - [SMALL_STATE(804)] = 54810, - [SMALL_STATE(805)] = 54945, - [SMALL_STATE(806)] = 55080, - [SMALL_STATE(807)] = 55215, - [SMALL_STATE(808)] = 55350, - [SMALL_STATE(809)] = 55485, - [SMALL_STATE(810)] = 55620, - [SMALL_STATE(811)] = 55755, - [SMALL_STATE(812)] = 55890, - [SMALL_STATE(813)] = 56025, - [SMALL_STATE(814)] = 56160, - [SMALL_STATE(815)] = 56295, - [SMALL_STATE(816)] = 56430, - [SMALL_STATE(817)] = 56565, - [SMALL_STATE(818)] = 56700, - [SMALL_STATE(819)] = 56835, - [SMALL_STATE(820)] = 56970, - [SMALL_STATE(821)] = 57105, - [SMALL_STATE(822)] = 57240, - [SMALL_STATE(823)] = 57375, - [SMALL_STATE(824)] = 57510, - [SMALL_STATE(825)] = 57645, - [SMALL_STATE(826)] = 57780, - [SMALL_STATE(827)] = 57915, - [SMALL_STATE(828)] = 58050, - [SMALL_STATE(829)] = 58185, - [SMALL_STATE(830)] = 58320, - [SMALL_STATE(831)] = 58455, - [SMALL_STATE(832)] = 58590, - [SMALL_STATE(833)] = 58725, - [SMALL_STATE(834)] = 58860, - [SMALL_STATE(835)] = 58995, - [SMALL_STATE(836)] = 59130, - [SMALL_STATE(837)] = 59265, - [SMALL_STATE(838)] = 59400, - [SMALL_STATE(839)] = 59535, - [SMALL_STATE(840)] = 59670, - [SMALL_STATE(841)] = 59805, - [SMALL_STATE(842)] = 59940, - [SMALL_STATE(843)] = 60075, - [SMALL_STATE(844)] = 60210, - [SMALL_STATE(845)] = 60345, - [SMALL_STATE(846)] = 60480, - [SMALL_STATE(847)] = 60615, - [SMALL_STATE(848)] = 60750, - [SMALL_STATE(849)] = 60885, - [SMALL_STATE(850)] = 61020, - [SMALL_STATE(851)] = 61155, - [SMALL_STATE(852)] = 61290, - [SMALL_STATE(853)] = 61425, - [SMALL_STATE(854)] = 61560, - [SMALL_STATE(855)] = 61695, - [SMALL_STATE(856)] = 61830, - [SMALL_STATE(857)] = 61965, - [SMALL_STATE(858)] = 62100, - [SMALL_STATE(859)] = 62235, - [SMALL_STATE(860)] = 62370, - [SMALL_STATE(861)] = 62505, - [SMALL_STATE(862)] = 62640, - [SMALL_STATE(863)] = 62775, - [SMALL_STATE(864)] = 62910, - [SMALL_STATE(865)] = 63045, - [SMALL_STATE(866)] = 63180, - [SMALL_STATE(867)] = 63315, - [SMALL_STATE(868)] = 63450, - [SMALL_STATE(869)] = 63585, - [SMALL_STATE(870)] = 63720, - [SMALL_STATE(871)] = 63855, - [SMALL_STATE(872)] = 63990, - [SMALL_STATE(873)] = 64125, - [SMALL_STATE(874)] = 64260, - [SMALL_STATE(875)] = 64395, - [SMALL_STATE(876)] = 64530, - [SMALL_STATE(877)] = 64665, - [SMALL_STATE(878)] = 64800, - [SMALL_STATE(879)] = 64935, - [SMALL_STATE(880)] = 65070, - [SMALL_STATE(881)] = 65205, - [SMALL_STATE(882)] = 65340, - [SMALL_STATE(883)] = 65475, - [SMALL_STATE(884)] = 65610, - [SMALL_STATE(885)] = 65745, - [SMALL_STATE(886)] = 65880, - [SMALL_STATE(887)] = 66015, - [SMALL_STATE(888)] = 66150, - [SMALL_STATE(889)] = 66285, - [SMALL_STATE(890)] = 66420, - [SMALL_STATE(891)] = 66555, - [SMALL_STATE(892)] = 66690, - [SMALL_STATE(893)] = 66825, - [SMALL_STATE(894)] = 66960, - [SMALL_STATE(895)] = 67095, - [SMALL_STATE(896)] = 67230, - [SMALL_STATE(897)] = 67365, - [SMALL_STATE(898)] = 67500, - [SMALL_STATE(899)] = 67635, - [SMALL_STATE(900)] = 67770, - [SMALL_STATE(901)] = 67905, - [SMALL_STATE(902)] = 68040, - [SMALL_STATE(903)] = 68175, - [SMALL_STATE(904)] = 68310, - [SMALL_STATE(905)] = 68445, - [SMALL_STATE(906)] = 68580, - [SMALL_STATE(907)] = 68715, - [SMALL_STATE(908)] = 68850, - [SMALL_STATE(909)] = 68985, - [SMALL_STATE(910)] = 69120, - [SMALL_STATE(911)] = 69255, - [SMALL_STATE(912)] = 69390, - [SMALL_STATE(913)] = 69525, - [SMALL_STATE(914)] = 69660, - [SMALL_STATE(915)] = 69795, - [SMALL_STATE(916)] = 69930, - [SMALL_STATE(917)] = 70065, - [SMALL_STATE(918)] = 70200, - [SMALL_STATE(919)] = 70335, - [SMALL_STATE(920)] = 70470, - [SMALL_STATE(921)] = 70605, - [SMALL_STATE(922)] = 70740, - [SMALL_STATE(923)] = 70875, - [SMALL_STATE(924)] = 71010, - [SMALL_STATE(925)] = 71145, - [SMALL_STATE(926)] = 71280, - [SMALL_STATE(927)] = 71415, - [SMALL_STATE(928)] = 71550, - [SMALL_STATE(929)] = 71685, - [SMALL_STATE(930)] = 71820, - [SMALL_STATE(931)] = 71955, - [SMALL_STATE(932)] = 72090, - [SMALL_STATE(933)] = 72225, - [SMALL_STATE(934)] = 72360, - [SMALL_STATE(935)] = 72495, - [SMALL_STATE(936)] = 72630, - [SMALL_STATE(937)] = 72765, - [SMALL_STATE(938)] = 72900, - [SMALL_STATE(939)] = 73035, - [SMALL_STATE(940)] = 73170, - [SMALL_STATE(941)] = 73305, - [SMALL_STATE(942)] = 73440, - [SMALL_STATE(943)] = 73575, - [SMALL_STATE(944)] = 73710, - [SMALL_STATE(945)] = 73845, - [SMALL_STATE(946)] = 73980, - [SMALL_STATE(947)] = 74115, - [SMALL_STATE(948)] = 74250, - [SMALL_STATE(949)] = 74385, - [SMALL_STATE(950)] = 74520, - [SMALL_STATE(951)] = 74655, - [SMALL_STATE(952)] = 74790, - [SMALL_STATE(953)] = 74925, - [SMALL_STATE(954)] = 75060, - [SMALL_STATE(955)] = 75195, - [SMALL_STATE(956)] = 75330, - [SMALL_STATE(957)] = 75465, - [SMALL_STATE(958)] = 75600, - [SMALL_STATE(959)] = 75735, - [SMALL_STATE(960)] = 75870, - [SMALL_STATE(961)] = 76005, - [SMALL_STATE(962)] = 76140, - [SMALL_STATE(963)] = 76275, - [SMALL_STATE(964)] = 76410, - [SMALL_STATE(965)] = 76545, - [SMALL_STATE(966)] = 76680, - [SMALL_STATE(967)] = 76815, - [SMALL_STATE(968)] = 76951, - [SMALL_STATE(969)] = 77087, - [SMALL_STATE(970)] = 77223, - [SMALL_STATE(971)] = 77359, - [SMALL_STATE(972)] = 77495, - [SMALL_STATE(973)] = 77631, - [SMALL_STATE(974)] = 77767, - [SMALL_STATE(975)] = 77903, - [SMALL_STATE(976)] = 78039, - [SMALL_STATE(977)] = 78175, - [SMALL_STATE(978)] = 78311, - [SMALL_STATE(979)] = 78447, - [SMALL_STATE(980)] = 78583, - [SMALL_STATE(981)] = 78719, - [SMALL_STATE(982)] = 78789, - [SMALL_STATE(983)] = 78858, - [SMALL_STATE(984)] = 78927, - [SMALL_STATE(985)] = 78992, - [SMALL_STATE(986)] = 79061, - [SMALL_STATE(987)] = 79126, - [SMALL_STATE(988)] = 79190, - [SMALL_STATE(989)] = 79251, - [SMALL_STATE(990)] = 79312, - [SMALL_STATE(991)] = 79373, - [SMALL_STATE(992)] = 79434, - [SMALL_STATE(993)] = 79499, - [SMALL_STATE(994)] = 79560, - [SMALL_STATE(995)] = 79621, - [SMALL_STATE(996)] = 79682, - [SMALL_STATE(997)] = 79747, - [SMALL_STATE(998)] = 79808, - [SMALL_STATE(999)] = 79871, - [SMALL_STATE(1000)] = 79932, - [SMALL_STATE(1001)] = 79993, - [SMALL_STATE(1002)] = 80054, - [SMALL_STATE(1003)] = 80115, - [SMALL_STATE(1004)] = 80176, - [SMALL_STATE(1005)] = 80241, - [SMALL_STATE(1006)] = 80302, - [SMALL_STATE(1007)] = 80363, - [SMALL_STATE(1008)] = 80424, - [SMALL_STATE(1009)] = 80485, - [SMALL_STATE(1010)] = 80550, - [SMALL_STATE(1011)] = 80611, - [SMALL_STATE(1012)] = 80672, - [SMALL_STATE(1013)] = 80733, - [SMALL_STATE(1014)] = 80794, - [SMALL_STATE(1015)] = 80855, - [SMALL_STATE(1016)] = 80916, - [SMALL_STATE(1017)] = 80977, - [SMALL_STATE(1018)] = 81038, - [SMALL_STATE(1019)] = 81099, - [SMALL_STATE(1020)] = 81160, - [SMALL_STATE(1021)] = 81221, - [SMALL_STATE(1022)] = 81282, - [SMALL_STATE(1023)] = 81343, - [SMALL_STATE(1024)] = 81404, - [SMALL_STATE(1025)] = 81465, - [SMALL_STATE(1026)] = 81526, - [SMALL_STATE(1027)] = 81587, - [SMALL_STATE(1028)] = 81648, - [SMALL_STATE(1029)] = 81709, - [SMALL_STATE(1030)] = 81770, - [SMALL_STATE(1031)] = 81831, - [SMALL_STATE(1032)] = 81892, - [SMALL_STATE(1033)] = 81953, - [SMALL_STATE(1034)] = 82014, - [SMALL_STATE(1035)] = 82079, - [SMALL_STATE(1036)] = 82140, - [SMALL_STATE(1037)] = 82201, - [SMALL_STATE(1038)] = 82262, - [SMALL_STATE(1039)] = 82323, - [SMALL_STATE(1040)] = 82384, - [SMALL_STATE(1041)] = 82445, - [SMALL_STATE(1042)] = 82506, - [SMALL_STATE(1043)] = 82567, - [SMALL_STATE(1044)] = 82628, - [SMALL_STATE(1045)] = 82689, - [SMALL_STATE(1046)] = 82750, - [SMALL_STATE(1047)] = 82811, - [SMALL_STATE(1048)] = 82872, - [SMALL_STATE(1049)] = 82933, - [SMALL_STATE(1050)] = 82994, - [SMALL_STATE(1051)] = 83055, - [SMALL_STATE(1052)] = 83116, - [SMALL_STATE(1053)] = 83177, - [SMALL_STATE(1054)] = 83238, - [SMALL_STATE(1055)] = 83299, - [SMALL_STATE(1056)] = 83360, - [SMALL_STATE(1057)] = 83421, - [SMALL_STATE(1058)] = 83482, - [SMALL_STATE(1059)] = 83543, - [SMALL_STATE(1060)] = 83604, - [SMALL_STATE(1061)] = 83665, - [SMALL_STATE(1062)] = 83726, - [SMALL_STATE(1063)] = 83791, - [SMALL_STATE(1064)] = 83852, - [SMALL_STATE(1065)] = 83913, - [SMALL_STATE(1066)] = 83974, - [SMALL_STATE(1067)] = 84039, - [SMALL_STATE(1068)] = 84104, - [SMALL_STATE(1069)] = 84165, - [SMALL_STATE(1070)] = 84230, - [SMALL_STATE(1071)] = 84295, - [SMALL_STATE(1072)] = 84356, - [SMALL_STATE(1073)] = 84417, - [SMALL_STATE(1074)] = 84478, - [SMALL_STATE(1075)] = 84539, - [SMALL_STATE(1076)] = 84600, - [SMALL_STATE(1077)] = 84661, - [SMALL_STATE(1078)] = 84722, - [SMALL_STATE(1079)] = 84783, - [SMALL_STATE(1080)] = 84844, - [SMALL_STATE(1081)] = 84905, - [SMALL_STATE(1082)] = 84966, - [SMALL_STATE(1083)] = 85027, - [SMALL_STATE(1084)] = 85088, - [SMALL_STATE(1085)] = 85149, - [SMALL_STATE(1086)] = 85210, - [SMALL_STATE(1087)] = 85275, - [SMALL_STATE(1088)] = 85336, - [SMALL_STATE(1089)] = 85397, - [SMALL_STATE(1090)] = 85458, - [SMALL_STATE(1091)] = 85519, - [SMALL_STATE(1092)] = 85580, - [SMALL_STATE(1093)] = 85641, - [SMALL_STATE(1094)] = 85702, - [SMALL_STATE(1095)] = 85763, - [SMALL_STATE(1096)] = 85824, - [SMALL_STATE(1097)] = 85885, - [SMALL_STATE(1098)] = 85946, - [SMALL_STATE(1099)] = 86007, - [SMALL_STATE(1100)] = 86072, - [SMALL_STATE(1101)] = 86137, - [SMALL_STATE(1102)] = 86198, - [SMALL_STATE(1103)] = 86259, - [SMALL_STATE(1104)] = 86320, - [SMALL_STATE(1105)] = 86381, - [SMALL_STATE(1106)] = 86442, - [SMALL_STATE(1107)] = 86503, - [SMALL_STATE(1108)] = 86564, - [SMALL_STATE(1109)] = 86625, - [SMALL_STATE(1110)] = 86686, - [SMALL_STATE(1111)] = 86747, - [SMALL_STATE(1112)] = 86808, - [SMALL_STATE(1113)] = 86869, - [SMALL_STATE(1114)] = 86930, - [SMALL_STATE(1115)] = 86991, - [SMALL_STATE(1116)] = 87056, - [SMALL_STATE(1117)] = 87121, - [SMALL_STATE(1118)] = 87182, - [SMALL_STATE(1119)] = 87243, - [SMALL_STATE(1120)] = 87304, - [SMALL_STATE(1121)] = 87365, - [SMALL_STATE(1122)] = 87426, - [SMALL_STATE(1123)] = 87487, - [SMALL_STATE(1124)] = 87547, - [SMALL_STATE(1125)] = 87607, - [SMALL_STATE(1126)] = 87671, - [SMALL_STATE(1127)] = 87731, - [SMALL_STATE(1128)] = 87791, - [SMALL_STATE(1129)] = 87851, - [SMALL_STATE(1130)] = 87915, - [SMALL_STATE(1131)] = 87975, - [SMALL_STATE(1132)] = 88035, - [SMALL_STATE(1133)] = 88095, - [SMALL_STATE(1134)] = 88155, - [SMALL_STATE(1135)] = 88215, - [SMALL_STATE(1136)] = 88275, - [SMALL_STATE(1137)] = 88335, - [SMALL_STATE(1138)] = 88395, - [SMALL_STATE(1139)] = 88455, - [SMALL_STATE(1140)] = 88515, - [SMALL_STATE(1141)] = 88575, - [SMALL_STATE(1142)] = 88635, - [SMALL_STATE(1143)] = 88695, - [SMALL_STATE(1144)] = 88755, - [SMALL_STATE(1145)] = 88815, - [SMALL_STATE(1146)] = 88875, - [SMALL_STATE(1147)] = 88935, - [SMALL_STATE(1148)] = 88995, - [SMALL_STATE(1149)] = 89055, - [SMALL_STATE(1150)] = 89115, - [SMALL_STATE(1151)] = 89175, - [SMALL_STATE(1152)] = 89235, - [SMALL_STATE(1153)] = 89295, - [SMALL_STATE(1154)] = 89355, - [SMALL_STATE(1155)] = 89415, - [SMALL_STATE(1156)] = 89475, - [SMALL_STATE(1157)] = 89535, - [SMALL_STATE(1158)] = 89595, - [SMALL_STATE(1159)] = 89655, - [SMALL_STATE(1160)] = 89715, - [SMALL_STATE(1161)] = 89775, - [SMALL_STATE(1162)] = 89835, - [SMALL_STATE(1163)] = 89895, - [SMALL_STATE(1164)] = 89955, - [SMALL_STATE(1165)] = 90015, - [SMALL_STATE(1166)] = 90075, - [SMALL_STATE(1167)] = 90135, - [SMALL_STATE(1168)] = 90195, - [SMALL_STATE(1169)] = 90255, - [SMALL_STATE(1170)] = 90315, - [SMALL_STATE(1171)] = 90375, - [SMALL_STATE(1172)] = 90435, - [SMALL_STATE(1173)] = 90495, - [SMALL_STATE(1174)] = 90555, - [SMALL_STATE(1175)] = 90615, - [SMALL_STATE(1176)] = 90675, - [SMALL_STATE(1177)] = 90735, - [SMALL_STATE(1178)] = 90795, - [SMALL_STATE(1179)] = 90855, - [SMALL_STATE(1180)] = 90915, - [SMALL_STATE(1181)] = 90975, - [SMALL_STATE(1182)] = 91035, - [SMALL_STATE(1183)] = 91095, - [SMALL_STATE(1184)] = 91155, - [SMALL_STATE(1185)] = 91215, - [SMALL_STATE(1186)] = 91275, - [SMALL_STATE(1187)] = 91335, - [SMALL_STATE(1188)] = 91395, - [SMALL_STATE(1189)] = 91455, - [SMALL_STATE(1190)] = 91515, - [SMALL_STATE(1191)] = 91579, - [SMALL_STATE(1192)] = 91639, - [SMALL_STATE(1193)] = 91699, - [SMALL_STATE(1194)] = 91759, - [SMALL_STATE(1195)] = 91819, - [SMALL_STATE(1196)] = 91879, - [SMALL_STATE(1197)] = 91939, - [SMALL_STATE(1198)] = 91999, - [SMALL_STATE(1199)] = 92059, - [SMALL_STATE(1200)] = 92119, - [SMALL_STATE(1201)] = 92179, - [SMALL_STATE(1202)] = 92239, - [SMALL_STATE(1203)] = 92299, - [SMALL_STATE(1204)] = 92359, - [SMALL_STATE(1205)] = 92419, - [SMALL_STATE(1206)] = 92479, - [SMALL_STATE(1207)] = 92539, - [SMALL_STATE(1208)] = 92599, - [SMALL_STATE(1209)] = 92659, - [SMALL_STATE(1210)] = 92719, - [SMALL_STATE(1211)] = 92779, - [SMALL_STATE(1212)] = 92839, - [SMALL_STATE(1213)] = 92899, - [SMALL_STATE(1214)] = 92959, - [SMALL_STATE(1215)] = 93019, - [SMALL_STATE(1216)] = 93079, - [SMALL_STATE(1217)] = 93139, - [SMALL_STATE(1218)] = 93199, - [SMALL_STATE(1219)] = 93259, - [SMALL_STATE(1220)] = 93319, - [SMALL_STATE(1221)] = 93379, - [SMALL_STATE(1222)] = 93439, - [SMALL_STATE(1223)] = 93499, - [SMALL_STATE(1224)] = 93559, - [SMALL_STATE(1225)] = 93619, - [SMALL_STATE(1226)] = 93679, - [SMALL_STATE(1227)] = 93739, - [SMALL_STATE(1228)] = 93799, - [SMALL_STATE(1229)] = 93859, - [SMALL_STATE(1230)] = 93919, - [SMALL_STATE(1231)] = 93979, - [SMALL_STATE(1232)] = 94039, - [SMALL_STATE(1233)] = 94099, - [SMALL_STATE(1234)] = 94165, - [SMALL_STATE(1235)] = 94225, - [SMALL_STATE(1236)] = 94285, - [SMALL_STATE(1237)] = 94345, - [SMALL_STATE(1238)] = 94405, - [SMALL_STATE(1239)] = 94465, - [SMALL_STATE(1240)] = 94525, - [SMALL_STATE(1241)] = 94585, - [SMALL_STATE(1242)] = 94645, - [SMALL_STATE(1243)] = 94705, - [SMALL_STATE(1244)] = 94765, - [SMALL_STATE(1245)] = 94825, - [SMALL_STATE(1246)] = 94885, - [SMALL_STATE(1247)] = 94964, - [SMALL_STATE(1248)] = 95043, - [SMALL_STATE(1249)] = 95122, - [SMALL_STATE(1250)] = 95201, - [SMALL_STATE(1251)] = 95280, - [SMALL_STATE(1252)] = 95359, - [SMALL_STATE(1253)] = 95438, - [SMALL_STATE(1254)] = 95517, - [SMALL_STATE(1255)] = 95596, - [SMALL_STATE(1256)] = 95675, - [SMALL_STATE(1257)] = 95754, - [SMALL_STATE(1258)] = 95833, - [SMALL_STATE(1259)] = 95912, - [SMALL_STATE(1260)] = 95991, - [SMALL_STATE(1261)] = 96070, - [SMALL_STATE(1262)] = 96149, - [SMALL_STATE(1263)] = 96228, - [SMALL_STATE(1264)] = 96307, - [SMALL_STATE(1265)] = 96386, - [SMALL_STATE(1266)] = 96446, - [SMALL_STATE(1267)] = 96551, - [SMALL_STATE(1268)] = 96608, - [SMALL_STATE(1269)] = 96665, - [SMALL_STATE(1270)] = 96722, - [SMALL_STATE(1271)] = 96779, - [SMALL_STATE(1272)] = 96836, - [SMALL_STATE(1273)] = 96893, - [SMALL_STATE(1274)] = 96950, - [SMALL_STATE(1275)] = 97007, - [SMALL_STATE(1276)] = 97064, - [SMALL_STATE(1277)] = 97121, - [SMALL_STATE(1278)] = 97178, - [SMALL_STATE(1279)] = 97235, - [SMALL_STATE(1280)] = 97292, - [SMALL_STATE(1281)] = 97349, - [SMALL_STATE(1282)] = 97406, - [SMALL_STATE(1283)] = 97463, - [SMALL_STATE(1284)] = 97520, - [SMALL_STATE(1285)] = 97577, - [SMALL_STATE(1286)] = 97634, - [SMALL_STATE(1287)] = 97691, - [SMALL_STATE(1288)] = 97748, - [SMALL_STATE(1289)] = 97805, - [SMALL_STATE(1290)] = 97862, - [SMALL_STATE(1291)] = 97919, - [SMALL_STATE(1292)] = 97976, - [SMALL_STATE(1293)] = 98033, - [SMALL_STATE(1294)] = 98090, - [SMALL_STATE(1295)] = 98147, - [SMALL_STATE(1296)] = 98204, - [SMALL_STATE(1297)] = 98261, - [SMALL_STATE(1298)] = 98318, - [SMALL_STATE(1299)] = 98375, - [SMALL_STATE(1300)] = 98432, - [SMALL_STATE(1301)] = 98489, - [SMALL_STATE(1302)] = 98546, - [SMALL_STATE(1303)] = 98603, - [SMALL_STATE(1304)] = 98660, - [SMALL_STATE(1305)] = 98717, - [SMALL_STATE(1306)] = 98774, - [SMALL_STATE(1307)] = 98831, - [SMALL_STATE(1308)] = 98888, - [SMALL_STATE(1309)] = 98945, - [SMALL_STATE(1310)] = 99002, - [SMALL_STATE(1311)] = 99059, - [SMALL_STATE(1312)] = 99116, - [SMALL_STATE(1313)] = 99173, - [SMALL_STATE(1314)] = 99230, - [SMALL_STATE(1315)] = 99287, - [SMALL_STATE(1316)] = 99348, - [SMALL_STATE(1317)] = 99405, - [SMALL_STATE(1318)] = 99462, - [SMALL_STATE(1319)] = 99519, - [SMALL_STATE(1320)] = 99576, - [SMALL_STATE(1321)] = 99633, - [SMALL_STATE(1322)] = 99694, - [SMALL_STATE(1323)] = 99755, - [SMALL_STATE(1324)] = 99812, - [SMALL_STATE(1325)] = 99869, - [SMALL_STATE(1326)] = 99926, - [SMALL_STATE(1327)] = 99983, - [SMALL_STATE(1328)] = 100040, - [SMALL_STATE(1329)] = 100097, - [SMALL_STATE(1330)] = 100154, - [SMALL_STATE(1331)] = 100211, - [SMALL_STATE(1332)] = 100268, - [SMALL_STATE(1333)] = 100325, - [SMALL_STATE(1334)] = 100382, - [SMALL_STATE(1335)] = 100439, - [SMALL_STATE(1336)] = 100496, - [SMALL_STATE(1337)] = 100553, - [SMALL_STATE(1338)] = 100610, - [SMALL_STATE(1339)] = 100667, - [SMALL_STATE(1340)] = 100724, - [SMALL_STATE(1341)] = 100781, - [SMALL_STATE(1342)] = 100838, - [SMALL_STATE(1343)] = 100895, - [SMALL_STATE(1344)] = 100952, - [SMALL_STATE(1345)] = 101009, - [SMALL_STATE(1346)] = 101066, - [SMALL_STATE(1347)] = 101123, - [SMALL_STATE(1348)] = 101180, - [SMALL_STATE(1349)] = 101237, - [SMALL_STATE(1350)] = 101294, - [SMALL_STATE(1351)] = 101351, - [SMALL_STATE(1352)] = 101408, - [SMALL_STATE(1353)] = 101465, - [SMALL_STATE(1354)] = 101522, - [SMALL_STATE(1355)] = 101579, - [SMALL_STATE(1356)] = 101636, - [SMALL_STATE(1357)] = 101693, - [SMALL_STATE(1358)] = 101750, - [SMALL_STATE(1359)] = 101807, - [SMALL_STATE(1360)] = 101864, - [SMALL_STATE(1361)] = 101921, - [SMALL_STATE(1362)] = 101978, - [SMALL_STATE(1363)] = 102035, - [SMALL_STATE(1364)] = 102092, - [SMALL_STATE(1365)] = 102149, - [SMALL_STATE(1366)] = 102206, - [SMALL_STATE(1367)] = 102263, - [SMALL_STATE(1368)] = 102320, - [SMALL_STATE(1369)] = 102377, - [SMALL_STATE(1370)] = 102482, - [SMALL_STATE(1371)] = 102539, - [SMALL_STATE(1372)] = 102596, - [SMALL_STATE(1373)] = 102653, - [SMALL_STATE(1374)] = 102710, - [SMALL_STATE(1375)] = 102767, - [SMALL_STATE(1376)] = 102824, - [SMALL_STATE(1377)] = 102881, - [SMALL_STATE(1378)] = 102938, - [SMALL_STATE(1379)] = 102995, - [SMALL_STATE(1380)] = 103052, - [SMALL_STATE(1381)] = 103109, - [SMALL_STATE(1382)] = 103166, - [SMALL_STATE(1383)] = 103223, - [SMALL_STATE(1384)] = 103280, - [SMALL_STATE(1385)] = 103385, - [SMALL_STATE(1386)] = 103442, - [SMALL_STATE(1387)] = 103499, - [SMALL_STATE(1388)] = 103556, - [SMALL_STATE(1389)] = 103613, - [SMALL_STATE(1390)] = 103670, - [SMALL_STATE(1391)] = 103775, - [SMALL_STATE(1392)] = 103880, - [SMALL_STATE(1393)] = 103985, - [SMALL_STATE(1394)] = 104090, - [SMALL_STATE(1395)] = 104195, - [SMALL_STATE(1396)] = 104300, - [SMALL_STATE(1397)] = 104405, - [SMALL_STATE(1398)] = 104510, - [SMALL_STATE(1399)] = 104615, - [SMALL_STATE(1400)] = 104720, - [SMALL_STATE(1401)] = 104825, - [SMALL_STATE(1402)] = 104930, - [SMALL_STATE(1403)] = 105035, - [SMALL_STATE(1404)] = 105140, - [SMALL_STATE(1405)] = 105245, - [SMALL_STATE(1406)] = 105350, - [SMALL_STATE(1407)] = 105455, - [SMALL_STATE(1408)] = 105560, - [SMALL_STATE(1409)] = 105665, - [SMALL_STATE(1410)] = 105770, - [SMALL_STATE(1411)] = 105875, - [SMALL_STATE(1412)] = 105980, - [SMALL_STATE(1413)] = 106085, - [SMALL_STATE(1414)] = 106190, - [SMALL_STATE(1415)] = 106295, - [SMALL_STATE(1416)] = 106400, - [SMALL_STATE(1417)] = 106505, - [SMALL_STATE(1418)] = 106610, - [SMALL_STATE(1419)] = 106715, - [SMALL_STATE(1420)] = 106820, - [SMALL_STATE(1421)] = 106925, - [SMALL_STATE(1422)] = 107030, - [SMALL_STATE(1423)] = 107135, - [SMALL_STATE(1424)] = 107240, - [SMALL_STATE(1425)] = 107345, - [SMALL_STATE(1426)] = 107450, - [SMALL_STATE(1427)] = 107555, - [SMALL_STATE(1428)] = 107660, - [SMALL_STATE(1429)] = 107765, - [SMALL_STATE(1430)] = 107870, - [SMALL_STATE(1431)] = 107975, - [SMALL_STATE(1432)] = 108080, - [SMALL_STATE(1433)] = 108185, - [SMALL_STATE(1434)] = 108290, - [SMALL_STATE(1435)] = 108395, - [SMALL_STATE(1436)] = 108500, - [SMALL_STATE(1437)] = 108605, - [SMALL_STATE(1438)] = 108710, - [SMALL_STATE(1439)] = 108815, - [SMALL_STATE(1440)] = 108920, - [SMALL_STATE(1441)] = 109025, - [SMALL_STATE(1442)] = 109130, - [SMALL_STATE(1443)] = 109235, - [SMALL_STATE(1444)] = 109292, - [SMALL_STATE(1445)] = 109397, - [SMALL_STATE(1446)] = 109502, - [SMALL_STATE(1447)] = 109607, - [SMALL_STATE(1448)] = 109712, - [SMALL_STATE(1449)] = 109817, - [SMALL_STATE(1450)] = 109922, - [SMALL_STATE(1451)] = 110027, - [SMALL_STATE(1452)] = 110132, - [SMALL_STATE(1453)] = 110237, - [SMALL_STATE(1454)] = 110342, - [SMALL_STATE(1455)] = 110447, - [SMALL_STATE(1456)] = 110552, - [SMALL_STATE(1457)] = 110657, - [SMALL_STATE(1458)] = 110762, - [SMALL_STATE(1459)] = 110867, - [SMALL_STATE(1460)] = 110972, - [SMALL_STATE(1461)] = 111077, - [SMALL_STATE(1462)] = 111182, - [SMALL_STATE(1463)] = 111287, - [SMALL_STATE(1464)] = 111392, - [SMALL_STATE(1465)] = 111497, - [SMALL_STATE(1466)] = 111602, - [SMALL_STATE(1467)] = 111707, - [SMALL_STATE(1468)] = 111812, - [SMALL_STATE(1469)] = 111917, - [SMALL_STATE(1470)] = 111975, - [SMALL_STATE(1471)] = 112033, - [SMALL_STATE(1472)] = 112089, - [SMALL_STATE(1473)] = 112147, - [SMALL_STATE(1474)] = 112201, - [SMALL_STATE(1475)] = 112254, - [SMALL_STATE(1476)] = 112307, - [SMALL_STATE(1477)] = 112360, - [SMALL_STATE(1478)] = 112413, - [SMALL_STATE(1479)] = 112466, - [SMALL_STATE(1480)] = 112519, - [SMALL_STATE(1481)] = 112572, - [SMALL_STATE(1482)] = 112625, - [SMALL_STATE(1483)] = 112678, - [SMALL_STATE(1484)] = 112731, - [SMALL_STATE(1485)] = 112784, + [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)] = 34830, + [SMALL_STATE(664)] = 34965, + [SMALL_STATE(665)] = 35100, + [SMALL_STATE(666)] = 35235, + [SMALL_STATE(667)] = 35370, + [SMALL_STATE(668)] = 35505, + [SMALL_STATE(669)] = 35640, + [SMALL_STATE(670)] = 35775, + [SMALL_STATE(671)] = 35910, + [SMALL_STATE(672)] = 36045, + [SMALL_STATE(673)] = 36180, + [SMALL_STATE(674)] = 36315, + [SMALL_STATE(675)] = 36450, + [SMALL_STATE(676)] = 36585, + [SMALL_STATE(677)] = 36720, + [SMALL_STATE(678)] = 36855, + [SMALL_STATE(679)] = 36990, + [SMALL_STATE(680)] = 37125, + [SMALL_STATE(681)] = 37260, + [SMALL_STATE(682)] = 37395, + [SMALL_STATE(683)] = 37530, + [SMALL_STATE(684)] = 37665, + [SMALL_STATE(685)] = 37800, + [SMALL_STATE(686)] = 37935, + [SMALL_STATE(687)] = 38070, + [SMALL_STATE(688)] = 38205, + [SMALL_STATE(689)] = 38340, + [SMALL_STATE(690)] = 38475, + [SMALL_STATE(691)] = 38610, + [SMALL_STATE(692)] = 38745, + [SMALL_STATE(693)] = 38880, + [SMALL_STATE(694)] = 39015, + [SMALL_STATE(695)] = 39150, + [SMALL_STATE(696)] = 39285, + [SMALL_STATE(697)] = 39420, + [SMALL_STATE(698)] = 39555, + [SMALL_STATE(699)] = 39690, + [SMALL_STATE(700)] = 39825, + [SMALL_STATE(701)] = 39960, + [SMALL_STATE(702)] = 40095, + [SMALL_STATE(703)] = 40230, + [SMALL_STATE(704)] = 40365, + [SMALL_STATE(705)] = 40500, + [SMALL_STATE(706)] = 40635, + [SMALL_STATE(707)] = 40770, + [SMALL_STATE(708)] = 40905, + [SMALL_STATE(709)] = 41040, + [SMALL_STATE(710)] = 41175, + [SMALL_STATE(711)] = 41310, + [SMALL_STATE(712)] = 41445, + [SMALL_STATE(713)] = 41580, + [SMALL_STATE(714)] = 41715, + [SMALL_STATE(715)] = 41850, + [SMALL_STATE(716)] = 41985, + [SMALL_STATE(717)] = 42120, + [SMALL_STATE(718)] = 42255, + [SMALL_STATE(719)] = 42390, + [SMALL_STATE(720)] = 42525, + [SMALL_STATE(721)] = 42660, + [SMALL_STATE(722)] = 42795, + [SMALL_STATE(723)] = 42930, + [SMALL_STATE(724)] = 43065, + [SMALL_STATE(725)] = 43200, + [SMALL_STATE(726)] = 43335, + [SMALL_STATE(727)] = 43470, + [SMALL_STATE(728)] = 43605, + [SMALL_STATE(729)] = 43740, + [SMALL_STATE(730)] = 43875, + [SMALL_STATE(731)] = 44010, + [SMALL_STATE(732)] = 44145, + [SMALL_STATE(733)] = 44280, + [SMALL_STATE(734)] = 44415, + [SMALL_STATE(735)] = 44550, + [SMALL_STATE(736)] = 44685, + [SMALL_STATE(737)] = 44820, + [SMALL_STATE(738)] = 44955, + [SMALL_STATE(739)] = 45090, + [SMALL_STATE(740)] = 45225, + [SMALL_STATE(741)] = 45360, + [SMALL_STATE(742)] = 45495, + [SMALL_STATE(743)] = 45630, + [SMALL_STATE(744)] = 45765, + [SMALL_STATE(745)] = 45900, + [SMALL_STATE(746)] = 46035, + [SMALL_STATE(747)] = 46170, + [SMALL_STATE(748)] = 46305, + [SMALL_STATE(749)] = 46440, + [SMALL_STATE(750)] = 46575, + [SMALL_STATE(751)] = 46710, + [SMALL_STATE(752)] = 46845, + [SMALL_STATE(753)] = 46980, + [SMALL_STATE(754)] = 47115, + [SMALL_STATE(755)] = 47250, + [SMALL_STATE(756)] = 47385, + [SMALL_STATE(757)] = 47520, + [SMALL_STATE(758)] = 47655, + [SMALL_STATE(759)] = 47790, + [SMALL_STATE(760)] = 47925, + [SMALL_STATE(761)] = 48060, + [SMALL_STATE(762)] = 48195, + [SMALL_STATE(763)] = 48330, + [SMALL_STATE(764)] = 48465, + [SMALL_STATE(765)] = 48600, + [SMALL_STATE(766)] = 48735, + [SMALL_STATE(767)] = 48870, + [SMALL_STATE(768)] = 49005, + [SMALL_STATE(769)] = 49140, + [SMALL_STATE(770)] = 49275, + [SMALL_STATE(771)] = 49410, + [SMALL_STATE(772)] = 49545, + [SMALL_STATE(773)] = 49680, + [SMALL_STATE(774)] = 49815, + [SMALL_STATE(775)] = 49950, + [SMALL_STATE(776)] = 50085, + [SMALL_STATE(777)] = 50220, + [SMALL_STATE(778)] = 50355, + [SMALL_STATE(779)] = 50490, + [SMALL_STATE(780)] = 50625, + [SMALL_STATE(781)] = 50760, + [SMALL_STATE(782)] = 50895, + [SMALL_STATE(783)] = 51030, + [SMALL_STATE(784)] = 51165, + [SMALL_STATE(785)] = 51300, + [SMALL_STATE(786)] = 51435, + [SMALL_STATE(787)] = 51570, + [SMALL_STATE(788)] = 51705, + [SMALL_STATE(789)] = 51840, + [SMALL_STATE(790)] = 51975, + [SMALL_STATE(791)] = 52110, + [SMALL_STATE(792)] = 52245, + [SMALL_STATE(793)] = 52380, + [SMALL_STATE(794)] = 52515, + [SMALL_STATE(795)] = 52650, + [SMALL_STATE(796)] = 52785, + [SMALL_STATE(797)] = 52920, + [SMALL_STATE(798)] = 53055, + [SMALL_STATE(799)] = 53190, + [SMALL_STATE(800)] = 53325, + [SMALL_STATE(801)] = 53460, + [SMALL_STATE(802)] = 53595, + [SMALL_STATE(803)] = 53730, + [SMALL_STATE(804)] = 53865, + [SMALL_STATE(805)] = 54000, + [SMALL_STATE(806)] = 54135, + [SMALL_STATE(807)] = 54270, + [SMALL_STATE(808)] = 54405, + [SMALL_STATE(809)] = 54540, + [SMALL_STATE(810)] = 54675, + [SMALL_STATE(811)] = 54810, + [SMALL_STATE(812)] = 54945, + [SMALL_STATE(813)] = 55080, + [SMALL_STATE(814)] = 55215, + [SMALL_STATE(815)] = 55350, + [SMALL_STATE(816)] = 55485, + [SMALL_STATE(817)] = 55620, + [SMALL_STATE(818)] = 55755, + [SMALL_STATE(819)] = 55890, + [SMALL_STATE(820)] = 56025, + [SMALL_STATE(821)] = 56160, + [SMALL_STATE(822)] = 56295, + [SMALL_STATE(823)] = 56430, + [SMALL_STATE(824)] = 56565, + [SMALL_STATE(825)] = 56700, + [SMALL_STATE(826)] = 56835, + [SMALL_STATE(827)] = 56970, + [SMALL_STATE(828)] = 57105, + [SMALL_STATE(829)] = 57240, + [SMALL_STATE(830)] = 57375, + [SMALL_STATE(831)] = 57510, + [SMALL_STATE(832)] = 57645, + [SMALL_STATE(833)] = 57780, + [SMALL_STATE(834)] = 57915, + [SMALL_STATE(835)] = 58050, + [SMALL_STATE(836)] = 58185, + [SMALL_STATE(837)] = 58320, + [SMALL_STATE(838)] = 58455, + [SMALL_STATE(839)] = 58590, + [SMALL_STATE(840)] = 58725, + [SMALL_STATE(841)] = 58860, + [SMALL_STATE(842)] = 58995, + [SMALL_STATE(843)] = 59130, + [SMALL_STATE(844)] = 59265, + [SMALL_STATE(845)] = 59400, + [SMALL_STATE(846)] = 59535, + [SMALL_STATE(847)] = 59670, + [SMALL_STATE(848)] = 59805, + [SMALL_STATE(849)] = 59940, + [SMALL_STATE(850)] = 60075, + [SMALL_STATE(851)] = 60210, + [SMALL_STATE(852)] = 60345, + [SMALL_STATE(853)] = 60480, + [SMALL_STATE(854)] = 60615, + [SMALL_STATE(855)] = 60750, + [SMALL_STATE(856)] = 60885, + [SMALL_STATE(857)] = 61020, + [SMALL_STATE(858)] = 61155, + [SMALL_STATE(859)] = 61290, + [SMALL_STATE(860)] = 61425, + [SMALL_STATE(861)] = 61560, + [SMALL_STATE(862)] = 61695, + [SMALL_STATE(863)] = 61830, + [SMALL_STATE(864)] = 61965, + [SMALL_STATE(865)] = 62100, + [SMALL_STATE(866)] = 62235, + [SMALL_STATE(867)] = 62370, + [SMALL_STATE(868)] = 62505, + [SMALL_STATE(869)] = 62640, + [SMALL_STATE(870)] = 62775, + [SMALL_STATE(871)] = 62910, + [SMALL_STATE(872)] = 63045, + [SMALL_STATE(873)] = 63180, + [SMALL_STATE(874)] = 63315, + [SMALL_STATE(875)] = 63450, + [SMALL_STATE(876)] = 63585, + [SMALL_STATE(877)] = 63720, + [SMALL_STATE(878)] = 63855, + [SMALL_STATE(879)] = 63990, + [SMALL_STATE(880)] = 64125, + [SMALL_STATE(881)] = 64260, + [SMALL_STATE(882)] = 64395, + [SMALL_STATE(883)] = 64530, + [SMALL_STATE(884)] = 64665, + [SMALL_STATE(885)] = 64800, + [SMALL_STATE(886)] = 64935, + [SMALL_STATE(887)] = 65070, + [SMALL_STATE(888)] = 65205, + [SMALL_STATE(889)] = 65340, + [SMALL_STATE(890)] = 65475, + [SMALL_STATE(891)] = 65610, + [SMALL_STATE(892)] = 65745, + [SMALL_STATE(893)] = 65880, + [SMALL_STATE(894)] = 66015, + [SMALL_STATE(895)] = 66150, + [SMALL_STATE(896)] = 66285, + [SMALL_STATE(897)] = 66420, + [SMALL_STATE(898)] = 66555, + [SMALL_STATE(899)] = 66690, + [SMALL_STATE(900)] = 66825, + [SMALL_STATE(901)] = 66960, + [SMALL_STATE(902)] = 67095, + [SMALL_STATE(903)] = 67230, + [SMALL_STATE(904)] = 67365, + [SMALL_STATE(905)] = 67500, + [SMALL_STATE(906)] = 67635, + [SMALL_STATE(907)] = 67770, + [SMALL_STATE(908)] = 67905, + [SMALL_STATE(909)] = 68040, + [SMALL_STATE(910)] = 68175, + [SMALL_STATE(911)] = 68310, + [SMALL_STATE(912)] = 68445, + [SMALL_STATE(913)] = 68580, + [SMALL_STATE(914)] = 68715, + [SMALL_STATE(915)] = 68850, + [SMALL_STATE(916)] = 68985, + [SMALL_STATE(917)] = 69120, + [SMALL_STATE(918)] = 69255, + [SMALL_STATE(919)] = 69390, + [SMALL_STATE(920)] = 69525, + [SMALL_STATE(921)] = 69660, + [SMALL_STATE(922)] = 69795, + [SMALL_STATE(923)] = 69930, + [SMALL_STATE(924)] = 70065, + [SMALL_STATE(925)] = 70200, + [SMALL_STATE(926)] = 70335, + [SMALL_STATE(927)] = 70470, + [SMALL_STATE(928)] = 70605, + [SMALL_STATE(929)] = 70740, + [SMALL_STATE(930)] = 70875, + [SMALL_STATE(931)] = 71010, + [SMALL_STATE(932)] = 71145, + [SMALL_STATE(933)] = 71280, + [SMALL_STATE(934)] = 71415, + [SMALL_STATE(935)] = 71550, + [SMALL_STATE(936)] = 71685, + [SMALL_STATE(937)] = 71820, + [SMALL_STATE(938)] = 71955, + [SMALL_STATE(939)] = 72090, + [SMALL_STATE(940)] = 72225, + [SMALL_STATE(941)] = 72360, + [SMALL_STATE(942)] = 72495, + [SMALL_STATE(943)] = 72630, + [SMALL_STATE(944)] = 72765, + [SMALL_STATE(945)] = 72900, + [SMALL_STATE(946)] = 73035, + [SMALL_STATE(947)] = 73170, + [SMALL_STATE(948)] = 73305, + [SMALL_STATE(949)] = 73440, + [SMALL_STATE(950)] = 73575, + [SMALL_STATE(951)] = 73710, + [SMALL_STATE(952)] = 73845, + [SMALL_STATE(953)] = 73980, + [SMALL_STATE(954)] = 74115, + [SMALL_STATE(955)] = 74250, + [SMALL_STATE(956)] = 74385, + [SMALL_STATE(957)] = 74520, + [SMALL_STATE(958)] = 74655, + [SMALL_STATE(959)] = 74790, + [SMALL_STATE(960)] = 74925, + [SMALL_STATE(961)] = 75060, + [SMALL_STATE(962)] = 75195, + [SMALL_STATE(963)] = 75330, + [SMALL_STATE(964)] = 75465, + [SMALL_STATE(965)] = 75600, + [SMALL_STATE(966)] = 75735, + [SMALL_STATE(967)] = 75870, + [SMALL_STATE(968)] = 76005, + [SMALL_STATE(969)] = 76140, + [SMALL_STATE(970)] = 76275, + [SMALL_STATE(971)] = 76410, + [SMALL_STATE(972)] = 76545, + [SMALL_STATE(973)] = 76680, + [SMALL_STATE(974)] = 76815, + [SMALL_STATE(975)] = 76950, + [SMALL_STATE(976)] = 77085, + [SMALL_STATE(977)] = 77221, + [SMALL_STATE(978)] = 77357, + [SMALL_STATE(979)] = 77493, + [SMALL_STATE(980)] = 77629, + [SMALL_STATE(981)] = 77765, + [SMALL_STATE(982)] = 77901, + [SMALL_STATE(983)] = 78037, + [SMALL_STATE(984)] = 78173, + [SMALL_STATE(985)] = 78309, + [SMALL_STATE(986)] = 78445, + [SMALL_STATE(987)] = 78581, + [SMALL_STATE(988)] = 78717, + [SMALL_STATE(989)] = 78853, + [SMALL_STATE(990)] = 78989, + [SMALL_STATE(991)] = 79059, + [SMALL_STATE(992)] = 79124, + [SMALL_STATE(993)] = 79193, + [SMALL_STATE(994)] = 79262, + [SMALL_STATE(995)] = 79327, + [SMALL_STATE(996)] = 79396, + [SMALL_STATE(997)] = 79460, + [SMALL_STATE(998)] = 79521, + [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)] = 82392, + [SMALL_STATE(1046)] = 82453, + [SMALL_STATE(1047)] = 82514, + [SMALL_STATE(1048)] = 82575, + [SMALL_STATE(1049)] = 82636, + [SMALL_STATE(1050)] = 82697, + [SMALL_STATE(1051)] = 82758, + [SMALL_STATE(1052)] = 82819, + [SMALL_STATE(1053)] = 82880, + [SMALL_STATE(1054)] = 82941, + [SMALL_STATE(1055)] = 83002, + [SMALL_STATE(1056)] = 83063, + [SMALL_STATE(1057)] = 83124, + [SMALL_STATE(1058)] = 83185, + [SMALL_STATE(1059)] = 83246, + [SMALL_STATE(1060)] = 83307, + [SMALL_STATE(1061)] = 83372, + [SMALL_STATE(1062)] = 83433, + [SMALL_STATE(1063)] = 83494, + [SMALL_STATE(1064)] = 83555, + [SMALL_STATE(1065)] = 83616, + [SMALL_STATE(1066)] = 83677, + [SMALL_STATE(1067)] = 83738, + [SMALL_STATE(1068)] = 83799, + [SMALL_STATE(1069)] = 83860, + [SMALL_STATE(1070)] = 83921, + [SMALL_STATE(1071)] = 83982, + [SMALL_STATE(1072)] = 84043, + [SMALL_STATE(1073)] = 84108, + [SMALL_STATE(1074)] = 84173, + [SMALL_STATE(1075)] = 84234, + [SMALL_STATE(1076)] = 84295, + [SMALL_STATE(1077)] = 84356, + [SMALL_STATE(1078)] = 84417, + [SMALL_STATE(1079)] = 84478, + [SMALL_STATE(1080)] = 84539, + [SMALL_STATE(1081)] = 84600, + [SMALL_STATE(1082)] = 84661, + [SMALL_STATE(1083)] = 84722, + [SMALL_STATE(1084)] = 84783, + [SMALL_STATE(1085)] = 84848, + [SMALL_STATE(1086)] = 84909, + [SMALL_STATE(1087)] = 84970, + [SMALL_STATE(1088)] = 85031, + [SMALL_STATE(1089)] = 85092, + [SMALL_STATE(1090)] = 85153, + [SMALL_STATE(1091)] = 85214, + [SMALL_STATE(1092)] = 85275, + [SMALL_STATE(1093)] = 85336, + [SMALL_STATE(1094)] = 85397, + [SMALL_STATE(1095)] = 85458, + [SMALL_STATE(1096)] = 85519, + [SMALL_STATE(1097)] = 85580, + [SMALL_STATE(1098)] = 85641, + [SMALL_STATE(1099)] = 85702, + [SMALL_STATE(1100)] = 85763, + [SMALL_STATE(1101)] = 85824, + [SMALL_STATE(1102)] = 85885, + [SMALL_STATE(1103)] = 85946, + [SMALL_STATE(1104)] = 86007, + [SMALL_STATE(1105)] = 86068, + [SMALL_STATE(1106)] = 86129, + [SMALL_STATE(1107)] = 86190, + [SMALL_STATE(1108)] = 86255, + [SMALL_STATE(1109)] = 86320, + [SMALL_STATE(1110)] = 86385, + [SMALL_STATE(1111)] = 86448, + [SMALL_STATE(1112)] = 86509, + [SMALL_STATE(1113)] = 86570, + [SMALL_STATE(1114)] = 86631, + [SMALL_STATE(1115)] = 86692, + [SMALL_STATE(1116)] = 86753, + [SMALL_STATE(1117)] = 86814, + [SMALL_STATE(1118)] = 86875, + [SMALL_STATE(1119)] = 86936, + [SMALL_STATE(1120)] = 86997, + [SMALL_STATE(1121)] = 87058, + [SMALL_STATE(1122)] = 87119, + [SMALL_STATE(1123)] = 87180, + [SMALL_STATE(1124)] = 87241, + [SMALL_STATE(1125)] = 87306, + [SMALL_STATE(1126)] = 87371, + [SMALL_STATE(1127)] = 87436, + [SMALL_STATE(1128)] = 87501, + [SMALL_STATE(1129)] = 87566, + [SMALL_STATE(1130)] = 87631, + [SMALL_STATE(1131)] = 87696, + [SMALL_STATE(1132)] = 87757, + [SMALL_STATE(1133)] = 87817, + [SMALL_STATE(1134)] = 87877, + [SMALL_STATE(1135)] = 87937, + [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)] = 88365, + [SMALL_STATE(1143)] = 88425, + [SMALL_STATE(1144)] = 88485, + [SMALL_STATE(1145)] = 88545, + [SMALL_STATE(1146)] = 88605, + [SMALL_STATE(1147)] = 88665, + [SMALL_STATE(1148)] = 88725, + [SMALL_STATE(1149)] = 88785, + [SMALL_STATE(1150)] = 88845, + [SMALL_STATE(1151)] = 88911, + [SMALL_STATE(1152)] = 88971, + [SMALL_STATE(1153)] = 89031, + [SMALL_STATE(1154)] = 89091, + [SMALL_STATE(1155)] = 89151, + [SMALL_STATE(1156)] = 89211, + [SMALL_STATE(1157)] = 89271, + [SMALL_STATE(1158)] = 89331, + [SMALL_STATE(1159)] = 89395, + [SMALL_STATE(1160)] = 89455, + [SMALL_STATE(1161)] = 89515, + [SMALL_STATE(1162)] = 89575, + [SMALL_STATE(1163)] = 89635, + [SMALL_STATE(1164)] = 89695, + [SMALL_STATE(1165)] = 89755, + [SMALL_STATE(1166)] = 89815, + [SMALL_STATE(1167)] = 89875, + [SMALL_STATE(1168)] = 89935, + [SMALL_STATE(1169)] = 89995, + [SMALL_STATE(1170)] = 90055, + [SMALL_STATE(1171)] = 90115, + [SMALL_STATE(1172)] = 90175, + [SMALL_STATE(1173)] = 90235, + [SMALL_STATE(1174)] = 90295, + [SMALL_STATE(1175)] = 90355, + [SMALL_STATE(1176)] = 90415, + [SMALL_STATE(1177)] = 90475, + [SMALL_STATE(1178)] = 90535, + [SMALL_STATE(1179)] = 90595, + [SMALL_STATE(1180)] = 90655, + [SMALL_STATE(1181)] = 90715, + [SMALL_STATE(1182)] = 90775, + [SMALL_STATE(1183)] = 90835, + [SMALL_STATE(1184)] = 90895, + [SMALL_STATE(1185)] = 90955, + [SMALL_STATE(1186)] = 91015, + [SMALL_STATE(1187)] = 91075, + [SMALL_STATE(1188)] = 91135, + [SMALL_STATE(1189)] = 91195, + [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)] = 92995, + [SMALL_STATE(1220)] = 93055, + [SMALL_STATE(1221)] = 93115, + [SMALL_STATE(1222)] = 93175, + [SMALL_STATE(1223)] = 93235, + [SMALL_STATE(1224)] = 93295, + [SMALL_STATE(1225)] = 93355, + [SMALL_STATE(1226)] = 93415, + [SMALL_STATE(1227)] = 93475, + [SMALL_STATE(1228)] = 93535, + [SMALL_STATE(1229)] = 93595, + [SMALL_STATE(1230)] = 93655, + [SMALL_STATE(1231)] = 93715, + [SMALL_STATE(1232)] = 93775, + [SMALL_STATE(1233)] = 93835, + [SMALL_STATE(1234)] = 93895, + [SMALL_STATE(1235)] = 93955, + [SMALL_STATE(1236)] = 94015, + [SMALL_STATE(1237)] = 94075, + [SMALL_STATE(1238)] = 94135, + [SMALL_STATE(1239)] = 94195, + [SMALL_STATE(1240)] = 94255, + [SMALL_STATE(1241)] = 94315, + [SMALL_STATE(1242)] = 94375, + [SMALL_STATE(1243)] = 94435, + [SMALL_STATE(1244)] = 94495, + [SMALL_STATE(1245)] = 94555, + [SMALL_STATE(1246)] = 94615, + [SMALL_STATE(1247)] = 94675, + [SMALL_STATE(1248)] = 94735, + [SMALL_STATE(1249)] = 94795, + [SMALL_STATE(1250)] = 94855, + [SMALL_STATE(1251)] = 94915, + [SMALL_STATE(1252)] = 94975, + [SMALL_STATE(1253)] = 95035, + [SMALL_STATE(1254)] = 95095, + [SMALL_STATE(1255)] = 95155, + [SMALL_STATE(1256)] = 95234, + [SMALL_STATE(1257)] = 95313, + [SMALL_STATE(1258)] = 95392, + [SMALL_STATE(1259)] = 95471, + [SMALL_STATE(1260)] = 95550, + [SMALL_STATE(1261)] = 95629, + [SMALL_STATE(1262)] = 95708, + [SMALL_STATE(1263)] = 95787, + [SMALL_STATE(1264)] = 95866, + [SMALL_STATE(1265)] = 95945, + [SMALL_STATE(1266)] = 96024, + [SMALL_STATE(1267)] = 96103, + [SMALL_STATE(1268)] = 96182, + [SMALL_STATE(1269)] = 96261, + [SMALL_STATE(1270)] = 96340, + [SMALL_STATE(1271)] = 96419, + [SMALL_STATE(1272)] = 96498, + [SMALL_STATE(1273)] = 96577, + [SMALL_STATE(1274)] = 96656, + [SMALL_STATE(1275)] = 96735, + [SMALL_STATE(1276)] = 96814, + [SMALL_STATE(1277)] = 96893, + [SMALL_STATE(1278)] = 96972, + [SMALL_STATE(1279)] = 97051, + [SMALL_STATE(1280)] = 97130, + [SMALL_STATE(1281)] = 97209, + [SMALL_STATE(1282)] = 97288, + [SMALL_STATE(1283)] = 97367, + [SMALL_STATE(1284)] = 97427, + [SMALL_STATE(1285)] = 97484, + [SMALL_STATE(1286)] = 97541, + [SMALL_STATE(1287)] = 97646, + [SMALL_STATE(1288)] = 97751, + [SMALL_STATE(1289)] = 97856, + [SMALL_STATE(1290)] = 97961, + [SMALL_STATE(1291)] = 98066, + [SMALL_STATE(1292)] = 98171, + [SMALL_STATE(1293)] = 98276, + [SMALL_STATE(1294)] = 98381, + [SMALL_STATE(1295)] = 98486, + [SMALL_STATE(1296)] = 98591, + [SMALL_STATE(1297)] = 98696, + [SMALL_STATE(1298)] = 98801, + [SMALL_STATE(1299)] = 98906, + [SMALL_STATE(1300)] = 99011, + [SMALL_STATE(1301)] = 99116, + [SMALL_STATE(1302)] = 99221, + [SMALL_STATE(1303)] = 99326, + [SMALL_STATE(1304)] = 99431, + [SMALL_STATE(1305)] = 99536, + [SMALL_STATE(1306)] = 99641, + [SMALL_STATE(1307)] = 99746, + [SMALL_STATE(1308)] = 99851, + [SMALL_STATE(1309)] = 99956, + [SMALL_STATE(1310)] = 100061, + [SMALL_STATE(1311)] = 100166, + [SMALL_STATE(1312)] = 100271, + [SMALL_STATE(1313)] = 100376, + [SMALL_STATE(1314)] = 100481, + [SMALL_STATE(1315)] = 100586, + [SMALL_STATE(1316)] = 100691, + [SMALL_STATE(1317)] = 100796, + [SMALL_STATE(1318)] = 100901, + [SMALL_STATE(1319)] = 101006, + [SMALL_STATE(1320)] = 101111, + [SMALL_STATE(1321)] = 101216, + [SMALL_STATE(1322)] = 101321, + [SMALL_STATE(1323)] = 101426, + [SMALL_STATE(1324)] = 101531, + [SMALL_STATE(1325)] = 101636, + [SMALL_STATE(1326)] = 101741, + [SMALL_STATE(1327)] = 101846, + [SMALL_STATE(1328)] = 101951, + [SMALL_STATE(1329)] = 102056, + [SMALL_STATE(1330)] = 102161, + [SMALL_STATE(1331)] = 102266, + [SMALL_STATE(1332)] = 102371, + [SMALL_STATE(1333)] = 102476, + [SMALL_STATE(1334)] = 102581, + [SMALL_STATE(1335)] = 102686, + [SMALL_STATE(1336)] = 102791, + [SMALL_STATE(1337)] = 102896, + [SMALL_STATE(1338)] = 103001, + [SMALL_STATE(1339)] = 103106, + [SMALL_STATE(1340)] = 103211, + [SMALL_STATE(1341)] = 103316, + [SMALL_STATE(1342)] = 103421, + [SMALL_STATE(1343)] = 103526, + [SMALL_STATE(1344)] = 103631, + [SMALL_STATE(1345)] = 103736, + [SMALL_STATE(1346)] = 103841, + [SMALL_STATE(1347)] = 103946, + [SMALL_STATE(1348)] = 104051, + [SMALL_STATE(1349)] = 104156, + [SMALL_STATE(1350)] = 104261, + [SMALL_STATE(1351)] = 104366, + [SMALL_STATE(1352)] = 104471, + [SMALL_STATE(1353)] = 104576, + [SMALL_STATE(1354)] = 104681, + [SMALL_STATE(1355)] = 104786, + [SMALL_STATE(1356)] = 104891, + [SMALL_STATE(1357)] = 104996, + [SMALL_STATE(1358)] = 105101, + [SMALL_STATE(1359)] = 105206, + [SMALL_STATE(1360)] = 105311, + [SMALL_STATE(1361)] = 105416, + [SMALL_STATE(1362)] = 105521, + [SMALL_STATE(1363)] = 105626, + [SMALL_STATE(1364)] = 105731, + [SMALL_STATE(1365)] = 105836, + [SMALL_STATE(1366)] = 105941, + [SMALL_STATE(1367)] = 106046, + [SMALL_STATE(1368)] = 106103, + [SMALL_STATE(1369)] = 106160, + [SMALL_STATE(1370)] = 106217, + [SMALL_STATE(1371)] = 106274, + [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)] = 112434, + [SMALL_STATE(1480)] = 112491, + [SMALL_STATE(1481)] = 112552, + [SMALL_STATE(1482)] = 112609, + [SMALL_STATE(1483)] = 112666, + [SMALL_STATE(1484)] = 112723, + [SMALL_STATE(1485)] = 112780, [SMALL_STATE(1486)] = 112837, - [SMALL_STATE(1487)] = 112890, - [SMALL_STATE(1488)] = 112943, - [SMALL_STATE(1489)] = 112996, - [SMALL_STATE(1490)] = 113049, - [SMALL_STATE(1491)] = 113102, - [SMALL_STATE(1492)] = 113155, - [SMALL_STATE(1493)] = 113208, - [SMALL_STATE(1494)] = 113261, - [SMALL_STATE(1495)] = 113314, - [SMALL_STATE(1496)] = 113367, - [SMALL_STATE(1497)] = 113420, - [SMALL_STATE(1498)] = 113473, - [SMALL_STATE(1499)] = 113526, - [SMALL_STATE(1500)] = 113579, - [SMALL_STATE(1501)] = 113632, - [SMALL_STATE(1502)] = 113685, - [SMALL_STATE(1503)] = 113738, - [SMALL_STATE(1504)] = 113791, - [SMALL_STATE(1505)] = 113844, - [SMALL_STATE(1506)] = 113897, - [SMALL_STATE(1507)] = 113950, - [SMALL_STATE(1508)] = 114003, - [SMALL_STATE(1509)] = 114056, - [SMALL_STATE(1510)] = 114109, - [SMALL_STATE(1511)] = 114162, - [SMALL_STATE(1512)] = 114215, - [SMALL_STATE(1513)] = 114268, - [SMALL_STATE(1514)] = 114321, - [SMALL_STATE(1515)] = 114374, - [SMALL_STATE(1516)] = 114427, - [SMALL_STATE(1517)] = 114480, - [SMALL_STATE(1518)] = 114533, - [SMALL_STATE(1519)] = 114586, - [SMALL_STATE(1520)] = 114639, - [SMALL_STATE(1521)] = 114692, - [SMALL_STATE(1522)] = 114745, - [SMALL_STATE(1523)] = 114798, - [SMALL_STATE(1524)] = 114851, - [SMALL_STATE(1525)] = 114904, - [SMALL_STATE(1526)] = 114957, - [SMALL_STATE(1527)] = 115010, - [SMALL_STATE(1528)] = 115063, - [SMALL_STATE(1529)] = 115116, - [SMALL_STATE(1530)] = 115169, - [SMALL_STATE(1531)] = 115222, - [SMALL_STATE(1532)] = 115275, - [SMALL_STATE(1533)] = 115328, - [SMALL_STATE(1534)] = 115381, - [SMALL_STATE(1535)] = 115434, - [SMALL_STATE(1536)] = 115487, - [SMALL_STATE(1537)] = 115540, - [SMALL_STATE(1538)] = 115593, - [SMALL_STATE(1539)] = 115646, - [SMALL_STATE(1540)] = 115699, - [SMALL_STATE(1541)] = 115752, - [SMALL_STATE(1542)] = 115805, - [SMALL_STATE(1543)] = 115858, - [SMALL_STATE(1544)] = 115911, - [SMALL_STATE(1545)] = 115964, - [SMALL_STATE(1546)] = 116017, - [SMALL_STATE(1547)] = 116070, - [SMALL_STATE(1548)] = 116123, - [SMALL_STATE(1549)] = 116176, - [SMALL_STATE(1550)] = 116229, - [SMALL_STATE(1551)] = 116282, - [SMALL_STATE(1552)] = 116335, - [SMALL_STATE(1553)] = 116388, - [SMALL_STATE(1554)] = 116441, - [SMALL_STATE(1555)] = 116494, - [SMALL_STATE(1556)] = 116547, - [SMALL_STATE(1557)] = 116600, - [SMALL_STATE(1558)] = 116653, - [SMALL_STATE(1559)] = 116706, - [SMALL_STATE(1560)] = 116759, - [SMALL_STATE(1561)] = 116812, - [SMALL_STATE(1562)] = 116865, - [SMALL_STATE(1563)] = 116918, - [SMALL_STATE(1564)] = 116971, - [SMALL_STATE(1565)] = 117024, - [SMALL_STATE(1566)] = 117077, - [SMALL_STATE(1567)] = 117130, - [SMALL_STATE(1568)] = 117183, - [SMALL_STATE(1569)] = 117236, - [SMALL_STATE(1570)] = 117289, - [SMALL_STATE(1571)] = 117342, - [SMALL_STATE(1572)] = 117395, - [SMALL_STATE(1573)] = 117448, - [SMALL_STATE(1574)] = 117501, - [SMALL_STATE(1575)] = 117554, - [SMALL_STATE(1576)] = 117607, - [SMALL_STATE(1577)] = 117660, - [SMALL_STATE(1578)] = 117713, - [SMALL_STATE(1579)] = 117766, - [SMALL_STATE(1580)] = 117819, - [SMALL_STATE(1581)] = 117872, - [SMALL_STATE(1582)] = 117925, - [SMALL_STATE(1583)] = 117978, - [SMALL_STATE(1584)] = 118031, - [SMALL_STATE(1585)] = 118084, - [SMALL_STATE(1586)] = 118137, - [SMALL_STATE(1587)] = 118190, - [SMALL_STATE(1588)] = 118243, - [SMALL_STATE(1589)] = 118296, - [SMALL_STATE(1590)] = 118349, - [SMALL_STATE(1591)] = 118402, - [SMALL_STATE(1592)] = 118455, - [SMALL_STATE(1593)] = 118508, - [SMALL_STATE(1594)] = 118561, - [SMALL_STATE(1595)] = 118614, - [SMALL_STATE(1596)] = 118675, - [SMALL_STATE(1597)] = 118736, - [SMALL_STATE(1598)] = 118797, - [SMALL_STATE(1599)] = 118858, - [SMALL_STATE(1600)] = 118919, - [SMALL_STATE(1601)] = 118980, - [SMALL_STATE(1602)] = 119041, - [SMALL_STATE(1603)] = 119102, - [SMALL_STATE(1604)] = 119163, - [SMALL_STATE(1605)] = 119224, - [SMALL_STATE(1606)] = 119274, - [SMALL_STATE(1607)] = 119321, - [SMALL_STATE(1608)] = 119368, - [SMALL_STATE(1609)] = 119415, - [SMALL_STATE(1610)] = 119462, - [SMALL_STATE(1611)] = 119509, - [SMALL_STATE(1612)] = 119556, - [SMALL_STATE(1613)] = 119603, - [SMALL_STATE(1614)] = 119650, - [SMALL_STATE(1615)] = 119697, - [SMALL_STATE(1616)] = 119744, - [SMALL_STATE(1617)] = 119791, - [SMALL_STATE(1618)] = 119838, - [SMALL_STATE(1619)] = 119885, - [SMALL_STATE(1620)] = 119932, - [SMALL_STATE(1621)] = 119979, - [SMALL_STATE(1622)] = 120026, - [SMALL_STATE(1623)] = 120073, - [SMALL_STATE(1624)] = 120120, - [SMALL_STATE(1625)] = 120167, - [SMALL_STATE(1626)] = 120214, - [SMALL_STATE(1627)] = 120261, - [SMALL_STATE(1628)] = 120308, - [SMALL_STATE(1629)] = 120355, - [SMALL_STATE(1630)] = 120402, - [SMALL_STATE(1631)] = 120449, - [SMALL_STATE(1632)] = 120496, - [SMALL_STATE(1633)] = 120543, - [SMALL_STATE(1634)] = 120590, - [SMALL_STATE(1635)] = 120637, - [SMALL_STATE(1636)] = 120684, - [SMALL_STATE(1637)] = 120731, - [SMALL_STATE(1638)] = 120778, - [SMALL_STATE(1639)] = 120825, - [SMALL_STATE(1640)] = 120872, - [SMALL_STATE(1641)] = 120919, - [SMALL_STATE(1642)] = 120966, - [SMALL_STATE(1643)] = 121013, - [SMALL_STATE(1644)] = 121060, - [SMALL_STATE(1645)] = 121107, - [SMALL_STATE(1646)] = 121154, - [SMALL_STATE(1647)] = 121201, - [SMALL_STATE(1648)] = 121248, - [SMALL_STATE(1649)] = 121299, - [SMALL_STATE(1650)] = 121350, - [SMALL_STATE(1651)] = 121397, - [SMALL_STATE(1652)] = 121444, - [SMALL_STATE(1653)] = 121491, - [SMALL_STATE(1654)] = 121538, - [SMALL_STATE(1655)] = 121585, - [SMALL_STATE(1656)] = 121632, - [SMALL_STATE(1657)] = 121683, - [SMALL_STATE(1658)] = 121730, - [SMALL_STATE(1659)] = 121777, - [SMALL_STATE(1660)] = 121824, - [SMALL_STATE(1661)] = 121871, - [SMALL_STATE(1662)] = 121918, - [SMALL_STATE(1663)] = 121965, - [SMALL_STATE(1664)] = 122012, - [SMALL_STATE(1665)] = 122059, - [SMALL_STATE(1666)] = 122106, - [SMALL_STATE(1667)] = 122153, - [SMALL_STATE(1668)] = 122200, - [SMALL_STATE(1669)] = 122247, - [SMALL_STATE(1670)] = 122294, - [SMALL_STATE(1671)] = 122341, - [SMALL_STATE(1672)] = 122388, - [SMALL_STATE(1673)] = 122435, - [SMALL_STATE(1674)] = 122482, - [SMALL_STATE(1675)] = 122529, - [SMALL_STATE(1676)] = 122576, - [SMALL_STATE(1677)] = 122623, - [SMALL_STATE(1678)] = 122670, - [SMALL_STATE(1679)] = 122717, - [SMALL_STATE(1680)] = 122764, - [SMALL_STATE(1681)] = 122811, - [SMALL_STATE(1682)] = 122858, - [SMALL_STATE(1683)] = 122905, - [SMALL_STATE(1684)] = 122952, - [SMALL_STATE(1685)] = 122999, - [SMALL_STATE(1686)] = 123046, - [SMALL_STATE(1687)] = 123093, - [SMALL_STATE(1688)] = 123140, - [SMALL_STATE(1689)] = 123187, - [SMALL_STATE(1690)] = 123234, - [SMALL_STATE(1691)] = 123281, - [SMALL_STATE(1692)] = 123328, - [SMALL_STATE(1693)] = 123375, - [SMALL_STATE(1694)] = 123422, - [SMALL_STATE(1695)] = 123469, - [SMALL_STATE(1696)] = 123516, - [SMALL_STATE(1697)] = 123563, - [SMALL_STATE(1698)] = 123610, - [SMALL_STATE(1699)] = 123657, - [SMALL_STATE(1700)] = 123704, - [SMALL_STATE(1701)] = 123751, - [SMALL_STATE(1702)] = 123798, - [SMALL_STATE(1703)] = 123845, - [SMALL_STATE(1704)] = 123892, - [SMALL_STATE(1705)] = 123939, - [SMALL_STATE(1706)] = 123986, - [SMALL_STATE(1707)] = 124033, - [SMALL_STATE(1708)] = 124080, - [SMALL_STATE(1709)] = 124127, - [SMALL_STATE(1710)] = 124174, - [SMALL_STATE(1711)] = 124221, - [SMALL_STATE(1712)] = 124268, - [SMALL_STATE(1713)] = 124315, - [SMALL_STATE(1714)] = 124362, - [SMALL_STATE(1715)] = 124409, - [SMALL_STATE(1716)] = 124456, - [SMALL_STATE(1717)] = 124503, - [SMALL_STATE(1718)] = 124550, - [SMALL_STATE(1719)] = 124597, - [SMALL_STATE(1720)] = 124644, - [SMALL_STATE(1721)] = 124691, - [SMALL_STATE(1722)] = 124738, - [SMALL_STATE(1723)] = 124785, - [SMALL_STATE(1724)] = 124832, - [SMALL_STATE(1725)] = 124879, - [SMALL_STATE(1726)] = 124926, - [SMALL_STATE(1727)] = 124973, - [SMALL_STATE(1728)] = 125020, - [SMALL_STATE(1729)] = 125092, - [SMALL_STATE(1730)] = 125164, - [SMALL_STATE(1731)] = 125236, - [SMALL_STATE(1732)] = 125308, - [SMALL_STATE(1733)] = 125380, - [SMALL_STATE(1734)] = 125452, - [SMALL_STATE(1735)] = 125524, - [SMALL_STATE(1736)] = 125596, - [SMALL_STATE(1737)] = 125668, - [SMALL_STATE(1738)] = 125740, - [SMALL_STATE(1739)] = 125812, - [SMALL_STATE(1740)] = 125884, - [SMALL_STATE(1741)] = 125956, - [SMALL_STATE(1742)] = 126028, - [SMALL_STATE(1743)] = 126100, - [SMALL_STATE(1744)] = 126172, - [SMALL_STATE(1745)] = 126244, - [SMALL_STATE(1746)] = 126316, - [SMALL_STATE(1747)] = 126388, - [SMALL_STATE(1748)] = 126460, - [SMALL_STATE(1749)] = 126529, - [SMALL_STATE(1750)] = 126573, - [SMALL_STATE(1751)] = 126617, - [SMALL_STATE(1752)] = 126661, - [SMALL_STATE(1753)] = 126705, - [SMALL_STATE(1754)] = 126749, - [SMALL_STATE(1755)] = 126793, - [SMALL_STATE(1756)] = 126837, - [SMALL_STATE(1757)] = 126883, - [SMALL_STATE(1758)] = 126927, - [SMALL_STATE(1759)] = 126971, - [SMALL_STATE(1760)] = 127015, - [SMALL_STATE(1761)] = 127059, - [SMALL_STATE(1762)] = 127103, - [SMALL_STATE(1763)] = 127147, - [SMALL_STATE(1764)] = 127191, - [SMALL_STATE(1765)] = 127235, - [SMALL_STATE(1766)] = 127279, - [SMALL_STATE(1767)] = 127323, - [SMALL_STATE(1768)] = 127367, - [SMALL_STATE(1769)] = 127411, - [SMALL_STATE(1770)] = 127455, - [SMALL_STATE(1771)] = 127499, - [SMALL_STATE(1772)] = 127543, - [SMALL_STATE(1773)] = 127587, - [SMALL_STATE(1774)] = 127635, - [SMALL_STATE(1775)] = 127679, - [SMALL_STATE(1776)] = 127723, - [SMALL_STATE(1777)] = 127767, - [SMALL_STATE(1778)] = 127811, - [SMALL_STATE(1779)] = 127855, - [SMALL_STATE(1780)] = 127899, - [SMALL_STATE(1781)] = 127943, - [SMALL_STATE(1782)] = 127987, - [SMALL_STATE(1783)] = 128031, - [SMALL_STATE(1784)] = 128075, - [SMALL_STATE(1785)] = 128119, - [SMALL_STATE(1786)] = 128163, - [SMALL_STATE(1787)] = 128207, - [SMALL_STATE(1788)] = 128251, - [SMALL_STATE(1789)] = 128295, - [SMALL_STATE(1790)] = 128339, - [SMALL_STATE(1791)] = 128383, - [SMALL_STATE(1792)] = 128427, - [SMALL_STATE(1793)] = 128471, - [SMALL_STATE(1794)] = 128515, - [SMALL_STATE(1795)] = 128559, - [SMALL_STATE(1796)] = 128607, - [SMALL_STATE(1797)] = 128651, - [SMALL_STATE(1798)] = 128695, - [SMALL_STATE(1799)] = 128739, - [SMALL_STATE(1800)] = 128783, - [SMALL_STATE(1801)] = 128827, - [SMALL_STATE(1802)] = 128871, - [SMALL_STATE(1803)] = 128915, - [SMALL_STATE(1804)] = 128959, - [SMALL_STATE(1805)] = 129003, - [SMALL_STATE(1806)] = 129047, - [SMALL_STATE(1807)] = 129091, - [SMALL_STATE(1808)] = 129135, - [SMALL_STATE(1809)] = 129179, - [SMALL_STATE(1810)] = 129223, - [SMALL_STATE(1811)] = 129267, - [SMALL_STATE(1812)] = 129311, - [SMALL_STATE(1813)] = 129355, - [SMALL_STATE(1814)] = 129399, - [SMALL_STATE(1815)] = 129443, - [SMALL_STATE(1816)] = 129487, - [SMALL_STATE(1817)] = 129531, - [SMALL_STATE(1818)] = 129575, - [SMALL_STATE(1819)] = 129619, - [SMALL_STATE(1820)] = 129663, - [SMALL_STATE(1821)] = 129707, - [SMALL_STATE(1822)] = 129751, - [SMALL_STATE(1823)] = 129795, - [SMALL_STATE(1824)] = 129839, - [SMALL_STATE(1825)] = 129883, - [SMALL_STATE(1826)] = 129927, - [SMALL_STATE(1827)] = 129971, - [SMALL_STATE(1828)] = 130015, - [SMALL_STATE(1829)] = 130059, - [SMALL_STATE(1830)] = 130103, - [SMALL_STATE(1831)] = 130147, - [SMALL_STATE(1832)] = 130191, - [SMALL_STATE(1833)] = 130235, - [SMALL_STATE(1834)] = 130279, - [SMALL_STATE(1835)] = 130323, - [SMALL_STATE(1836)] = 130367, - [SMALL_STATE(1837)] = 130411, - [SMALL_STATE(1838)] = 130455, - [SMALL_STATE(1839)] = 130499, - [SMALL_STATE(1840)] = 130543, - [SMALL_STATE(1841)] = 130587, - [SMALL_STATE(1842)] = 130631, - [SMALL_STATE(1843)] = 130675, - [SMALL_STATE(1844)] = 130719, - [SMALL_STATE(1845)] = 130763, - [SMALL_STATE(1846)] = 130807, - [SMALL_STATE(1847)] = 130851, - [SMALL_STATE(1848)] = 130895, - [SMALL_STATE(1849)] = 130939, - [SMALL_STATE(1850)] = 130983, - [SMALL_STATE(1851)] = 131027, - [SMALL_STATE(1852)] = 131071, - [SMALL_STATE(1853)] = 131115, - [SMALL_STATE(1854)] = 131159, - [SMALL_STATE(1855)] = 131203, - [SMALL_STATE(1856)] = 131247, - [SMALL_STATE(1857)] = 131295, - [SMALL_STATE(1858)] = 131339, - [SMALL_STATE(1859)] = 131383, - [SMALL_STATE(1860)] = 131427, - [SMALL_STATE(1861)] = 131471, - [SMALL_STATE(1862)] = 131515, - [SMALL_STATE(1863)] = 131559, - [SMALL_STATE(1864)] = 131603, - [SMALL_STATE(1865)] = 131647, - [SMALL_STATE(1866)] = 131691, - [SMALL_STATE(1867)] = 131735, - [SMALL_STATE(1868)] = 131779, - [SMALL_STATE(1869)] = 131823, - [SMALL_STATE(1870)] = 131867, - [SMALL_STATE(1871)] = 131911, - [SMALL_STATE(1872)] = 131955, - [SMALL_STATE(1873)] = 131998, - [SMALL_STATE(1874)] = 132041, - [SMALL_STATE(1875)] = 132084, - [SMALL_STATE(1876)] = 132127, - [SMALL_STATE(1877)] = 132170, - [SMALL_STATE(1878)] = 132213, - [SMALL_STATE(1879)] = 132256, - [SMALL_STATE(1880)] = 132299, - [SMALL_STATE(1881)] = 132342, - [SMALL_STATE(1882)] = 132385, - [SMALL_STATE(1883)] = 132428, - [SMALL_STATE(1884)] = 132471, - [SMALL_STATE(1885)] = 132514, - [SMALL_STATE(1886)] = 132557, - [SMALL_STATE(1887)] = 132600, - [SMALL_STATE(1888)] = 132643, - [SMALL_STATE(1889)] = 132686, - [SMALL_STATE(1890)] = 132729, - [SMALL_STATE(1891)] = 132772, - [SMALL_STATE(1892)] = 132815, - [SMALL_STATE(1893)] = 132858, - [SMALL_STATE(1894)] = 132901, - [SMALL_STATE(1895)] = 132944, - [SMALL_STATE(1896)] = 132987, - [SMALL_STATE(1897)] = 133030, - [SMALL_STATE(1898)] = 133073, - [SMALL_STATE(1899)] = 133116, - [SMALL_STATE(1900)] = 133159, - [SMALL_STATE(1901)] = 133202, - [SMALL_STATE(1902)] = 133245, - [SMALL_STATE(1903)] = 133288, - [SMALL_STATE(1904)] = 133331, - [SMALL_STATE(1905)] = 133374, - [SMALL_STATE(1906)] = 133417, - [SMALL_STATE(1907)] = 133460, - [SMALL_STATE(1908)] = 133503, - [SMALL_STATE(1909)] = 133546, - [SMALL_STATE(1910)] = 133589, - [SMALL_STATE(1911)] = 133632, - [SMALL_STATE(1912)] = 133675, - [SMALL_STATE(1913)] = 133718, - [SMALL_STATE(1914)] = 133761, - [SMALL_STATE(1915)] = 133804, - [SMALL_STATE(1916)] = 133847, - [SMALL_STATE(1917)] = 133890, - [SMALL_STATE(1918)] = 133933, - [SMALL_STATE(1919)] = 133976, - [SMALL_STATE(1920)] = 134019, - [SMALL_STATE(1921)] = 134062, - [SMALL_STATE(1922)] = 134105, - [SMALL_STATE(1923)] = 134148, - [SMALL_STATE(1924)] = 134191, - [SMALL_STATE(1925)] = 134234, - [SMALL_STATE(1926)] = 134277, - [SMALL_STATE(1927)] = 134320, - [SMALL_STATE(1928)] = 134363, - [SMALL_STATE(1929)] = 134406, - [SMALL_STATE(1930)] = 134449, - [SMALL_STATE(1931)] = 134492, - [SMALL_STATE(1932)] = 134535, - [SMALL_STATE(1933)] = 134578, - [SMALL_STATE(1934)] = 134621, - [SMALL_STATE(1935)] = 134664, - [SMALL_STATE(1936)] = 134707, - [SMALL_STATE(1937)] = 134750, - [SMALL_STATE(1938)] = 134793, - [SMALL_STATE(1939)] = 134836, - [SMALL_STATE(1940)] = 134879, - [SMALL_STATE(1941)] = 134922, - [SMALL_STATE(1942)] = 134965, - [SMALL_STATE(1943)] = 135008, - [SMALL_STATE(1944)] = 135051, - [SMALL_STATE(1945)] = 135094, - [SMALL_STATE(1946)] = 135137, - [SMALL_STATE(1947)] = 135180, - [SMALL_STATE(1948)] = 135223, - [SMALL_STATE(1949)] = 135266, - [SMALL_STATE(1950)] = 135309, - [SMALL_STATE(1951)] = 135352, - [SMALL_STATE(1952)] = 135401, - [SMALL_STATE(1953)] = 135444, - [SMALL_STATE(1954)] = 135487, - [SMALL_STATE(1955)] = 135530, - [SMALL_STATE(1956)] = 135573, - [SMALL_STATE(1957)] = 135616, - [SMALL_STATE(1958)] = 135659, - [SMALL_STATE(1959)] = 135702, - [SMALL_STATE(1960)] = 135745, - [SMALL_STATE(1961)] = 135788, - [SMALL_STATE(1962)] = 135831, - [SMALL_STATE(1963)] = 135874, - [SMALL_STATE(1964)] = 135917, - [SMALL_STATE(1965)] = 135960, - [SMALL_STATE(1966)] = 136003, - [SMALL_STATE(1967)] = 136045, - [SMALL_STATE(1968)] = 136086, - [SMALL_STATE(1969)] = 136127, - [SMALL_STATE(1970)] = 136168, - [SMALL_STATE(1971)] = 136209, - [SMALL_STATE(1972)] = 136250, - [SMALL_STATE(1973)] = 136291, - [SMALL_STATE(1974)] = 136332, - [SMALL_STATE(1975)] = 136373, - [SMALL_STATE(1976)] = 136414, - [SMALL_STATE(1977)] = 136455, - [SMALL_STATE(1978)] = 136496, - [SMALL_STATE(1979)] = 136537, - [SMALL_STATE(1980)] = 136578, - [SMALL_STATE(1981)] = 136619, - [SMALL_STATE(1982)] = 136660, - [SMALL_STATE(1983)] = 136701, - [SMALL_STATE(1984)] = 136742, - [SMALL_STATE(1985)] = 136783, - [SMALL_STATE(1986)] = 136824, - [SMALL_STATE(1987)] = 136865, - [SMALL_STATE(1988)] = 136910, - [SMALL_STATE(1989)] = 136955, - [SMALL_STATE(1990)] = 136996, - [SMALL_STATE(1991)] = 137037, - [SMALL_STATE(1992)] = 137078, - [SMALL_STATE(1993)] = 137119, - [SMALL_STATE(1994)] = 137160, - [SMALL_STATE(1995)] = 137201, - [SMALL_STATE(1996)] = 137246, - [SMALL_STATE(1997)] = 137287, - [SMALL_STATE(1998)] = 137328, - [SMALL_STATE(1999)] = 137369, - [SMALL_STATE(2000)] = 137410, - [SMALL_STATE(2001)] = 137451, - [SMALL_STATE(2002)] = 137492, - [SMALL_STATE(2003)] = 137533, - [SMALL_STATE(2004)] = 137574, - [SMALL_STATE(2005)] = 137615, - [SMALL_STATE(2006)] = 137656, - [SMALL_STATE(2007)] = 137701, - [SMALL_STATE(2008)] = 137746, - [SMALL_STATE(2009)] = 137787, - [SMALL_STATE(2010)] = 137828, - [SMALL_STATE(2011)] = 137869, - [SMALL_STATE(2012)] = 137910, - [SMALL_STATE(2013)] = 137951, - [SMALL_STATE(2014)] = 137996, - [SMALL_STATE(2015)] = 138041, - [SMALL_STATE(2016)] = 138082, - [SMALL_STATE(2017)] = 138123, - [SMALL_STATE(2018)] = 138182, - [SMALL_STATE(2019)] = 138227, - [SMALL_STATE(2020)] = 138272, - [SMALL_STATE(2021)] = 138317, - [SMALL_STATE(2022)] = 138367, - [SMALL_STATE(2023)] = 138407, - [SMALL_STATE(2024)] = 138447, - [SMALL_STATE(2025)] = 138487, - [SMALL_STATE(2026)] = 138527, - [SMALL_STATE(2027)] = 138567, - [SMALL_STATE(2028)] = 138607, - [SMALL_STATE(2029)] = 138657, - [SMALL_STATE(2030)] = 138697, - [SMALL_STATE(2031)] = 138737, - [SMALL_STATE(2032)] = 138780, - [SMALL_STATE(2033)] = 138823, - [SMALL_STATE(2034)] = 138866, - [SMALL_STATE(2035)] = 138909, - [SMALL_STATE(2036)] = 138952, - [SMALL_STATE(2037)] = 138995, - [SMALL_STATE(2038)] = 139038, - [SMALL_STATE(2039)] = 139081, - [SMALL_STATE(2040)] = 139124, - [SMALL_STATE(2041)] = 139167, - [SMALL_STATE(2042)] = 139210, - [SMALL_STATE(2043)] = 139253, - [SMALL_STATE(2044)] = 139296, - [SMALL_STATE(2045)] = 139339, - [SMALL_STATE(2046)] = 139382, - [SMALL_STATE(2047)] = 139425, - [SMALL_STATE(2048)] = 139468, - [SMALL_STATE(2049)] = 139511, - [SMALL_STATE(2050)] = 139554, - [SMALL_STATE(2051)] = 139597, - [SMALL_STATE(2052)] = 139640, - [SMALL_STATE(2053)] = 139683, - [SMALL_STATE(2054)] = 139726, - [SMALL_STATE(2055)] = 139769, - [SMALL_STATE(2056)] = 139812, - [SMALL_STATE(2057)] = 139855, - [SMALL_STATE(2058)] = 139898, - [SMALL_STATE(2059)] = 139941, - [SMALL_STATE(2060)] = 139984, - [SMALL_STATE(2061)] = 140027, - [SMALL_STATE(2062)] = 140070, - [SMALL_STATE(2063)] = 140113, - [SMALL_STATE(2064)] = 140156, - [SMALL_STATE(2065)] = 140199, - [SMALL_STATE(2066)] = 140242, - [SMALL_STATE(2067)] = 140285, - [SMALL_STATE(2068)] = 140328, - [SMALL_STATE(2069)] = 140371, - [SMALL_STATE(2070)] = 140414, - [SMALL_STATE(2071)] = 140457, - [SMALL_STATE(2072)] = 140500, - [SMALL_STATE(2073)] = 140543, - [SMALL_STATE(2074)] = 140586, - [SMALL_STATE(2075)] = 140623, - [SMALL_STATE(2076)] = 140666, - [SMALL_STATE(2077)] = 140709, - [SMALL_STATE(2078)] = 140752, - [SMALL_STATE(2079)] = 140795, - [SMALL_STATE(2080)] = 140838, - [SMALL_STATE(2081)] = 140881, - [SMALL_STATE(2082)] = 140924, - [SMALL_STATE(2083)] = 140961, - [SMALL_STATE(2084)] = 140998, - [SMALL_STATE(2085)] = 141041, - [SMALL_STATE(2086)] = 141084, - [SMALL_STATE(2087)] = 141127, - [SMALL_STATE(2088)] = 141170, - [SMALL_STATE(2089)] = 141213, - [SMALL_STATE(2090)] = 141256, - [SMALL_STATE(2091)] = 141293, - [SMALL_STATE(2092)] = 141330, - [SMALL_STATE(2093)] = 141367, - [SMALL_STATE(2094)] = 141404, - [SMALL_STATE(2095)] = 141447, - [SMALL_STATE(2096)] = 141490, - [SMALL_STATE(2097)] = 141533, - [SMALL_STATE(2098)] = 141576, - [SMALL_STATE(2099)] = 141619, - [SMALL_STATE(2100)] = 141662, - [SMALL_STATE(2101)] = 141705, - [SMALL_STATE(2102)] = 141748, - [SMALL_STATE(2103)] = 141791, - [SMALL_STATE(2104)] = 141828, - [SMALL_STATE(2105)] = 141865, - [SMALL_STATE(2106)] = 141908, - [SMALL_STATE(2107)] = 141945, - [SMALL_STATE(2108)] = 141988, - [SMALL_STATE(2109)] = 142031, - [SMALL_STATE(2110)] = 142074, - [SMALL_STATE(2111)] = 142117, - [SMALL_STATE(2112)] = 142160, - [SMALL_STATE(2113)] = 142203, - [SMALL_STATE(2114)] = 142246, - [SMALL_STATE(2115)] = 142289, - [SMALL_STATE(2116)] = 142332, - [SMALL_STATE(2117)] = 142375, - [SMALL_STATE(2118)] = 142418, - [SMALL_STATE(2119)] = 142461, - [SMALL_STATE(2120)] = 142504, - [SMALL_STATE(2121)] = 142547, - [SMALL_STATE(2122)] = 142590, - [SMALL_STATE(2123)] = 142633, - [SMALL_STATE(2124)] = 142676, - [SMALL_STATE(2125)] = 142719, - [SMALL_STATE(2126)] = 142756, - [SMALL_STATE(2127)] = 142793, - [SMALL_STATE(2128)] = 142830, - [SMALL_STATE(2129)] = 142873, - [SMALL_STATE(2130)] = 142916, - [SMALL_STATE(2131)] = 142959, - [SMALL_STATE(2132)] = 143002, - [SMALL_STATE(2133)] = 143045, - [SMALL_STATE(2134)] = 143082, - [SMALL_STATE(2135)] = 143125, - [SMALL_STATE(2136)] = 143168, - [SMALL_STATE(2137)] = 143211, - [SMALL_STATE(2138)] = 143254, - [SMALL_STATE(2139)] = 143297, - [SMALL_STATE(2140)] = 143340, - [SMALL_STATE(2141)] = 143383, - [SMALL_STATE(2142)] = 143426, - [SMALL_STATE(2143)] = 143469, - [SMALL_STATE(2144)] = 143512, - [SMALL_STATE(2145)] = 143555, - [SMALL_STATE(2146)] = 143598, - [SMALL_STATE(2147)] = 143641, - [SMALL_STATE(2148)] = 143678, - [SMALL_STATE(2149)] = 143721, - [SMALL_STATE(2150)] = 143764, - [SMALL_STATE(2151)] = 143807, - [SMALL_STATE(2152)] = 143850, - [SMALL_STATE(2153)] = 143893, - [SMALL_STATE(2154)] = 143934, - [SMALL_STATE(2155)] = 143977, - [SMALL_STATE(2156)] = 144020, - [SMALL_STATE(2157)] = 144057, - [SMALL_STATE(2158)] = 144100, - [SMALL_STATE(2159)] = 144143, - [SMALL_STATE(2160)] = 144184, - [SMALL_STATE(2161)] = 144225, - [SMALL_STATE(2162)] = 144268, - [SMALL_STATE(2163)] = 144311, - [SMALL_STATE(2164)] = 144354, - [SMALL_STATE(2165)] = 144397, - [SMALL_STATE(2166)] = 144440, - [SMALL_STATE(2167)] = 144483, - [SMALL_STATE(2168)] = 144526, - [SMALL_STATE(2169)] = 144569, - [SMALL_STATE(2170)] = 144612, - [SMALL_STATE(2171)] = 144655, - [SMALL_STATE(2172)] = 144698, - [SMALL_STATE(2173)] = 144741, - [SMALL_STATE(2174)] = 144784, - [SMALL_STATE(2175)] = 144827, - [SMALL_STATE(2176)] = 144870, - [SMALL_STATE(2177)] = 144913, - [SMALL_STATE(2178)] = 144956, - [SMALL_STATE(2179)] = 144999, - [SMALL_STATE(2180)] = 145042, - [SMALL_STATE(2181)] = 145085, - [SMALL_STATE(2182)] = 145128, - [SMALL_STATE(2183)] = 145171, - [SMALL_STATE(2184)] = 145214, - [SMALL_STATE(2185)] = 145257, - [SMALL_STATE(2186)] = 145300, - [SMALL_STATE(2187)] = 145343, - [SMALL_STATE(2188)] = 145386, - [SMALL_STATE(2189)] = 145429, - [SMALL_STATE(2190)] = 145472, - [SMALL_STATE(2191)] = 145515, - [SMALL_STATE(2192)] = 145558, - [SMALL_STATE(2193)] = 145601, - [SMALL_STATE(2194)] = 145644, - [SMALL_STATE(2195)] = 145687, - [SMALL_STATE(2196)] = 145730, - [SMALL_STATE(2197)] = 145773, - [SMALL_STATE(2198)] = 145816, - [SMALL_STATE(2199)] = 145859, - [SMALL_STATE(2200)] = 145902, - [SMALL_STATE(2201)] = 145945, - [SMALL_STATE(2202)] = 145988, - [SMALL_STATE(2203)] = 146031, - [SMALL_STATE(2204)] = 146074, - [SMALL_STATE(2205)] = 146117, - [SMALL_STATE(2206)] = 146160, - [SMALL_STATE(2207)] = 146203, - [SMALL_STATE(2208)] = 146246, - [SMALL_STATE(2209)] = 146289, - [SMALL_STATE(2210)] = 146332, - [SMALL_STATE(2211)] = 146375, - [SMALL_STATE(2212)] = 146418, - [SMALL_STATE(2213)] = 146461, - [SMALL_STATE(2214)] = 146504, - [SMALL_STATE(2215)] = 146547, - [SMALL_STATE(2216)] = 146590, - [SMALL_STATE(2217)] = 146633, - [SMALL_STATE(2218)] = 146676, - [SMALL_STATE(2219)] = 146719, - [SMALL_STATE(2220)] = 146762, - [SMALL_STATE(2221)] = 146805, - [SMALL_STATE(2222)] = 146848, - [SMALL_STATE(2223)] = 146891, - [SMALL_STATE(2224)] = 146934, - [SMALL_STATE(2225)] = 146977, - [SMALL_STATE(2226)] = 147020, - [SMALL_STATE(2227)] = 147063, - [SMALL_STATE(2228)] = 147106, - [SMALL_STATE(2229)] = 147149, - [SMALL_STATE(2230)] = 147192, - [SMALL_STATE(2231)] = 147235, - [SMALL_STATE(2232)] = 147278, - [SMALL_STATE(2233)] = 147321, - [SMALL_STATE(2234)] = 147364, - [SMALL_STATE(2235)] = 147407, - [SMALL_STATE(2236)] = 147450, - [SMALL_STATE(2237)] = 147493, - [SMALL_STATE(2238)] = 147536, - [SMALL_STATE(2239)] = 147579, - [SMALL_STATE(2240)] = 147622, - [SMALL_STATE(2241)] = 147665, - [SMALL_STATE(2242)] = 147708, - [SMALL_STATE(2243)] = 147751, - [SMALL_STATE(2244)] = 147794, - [SMALL_STATE(2245)] = 147837, - [SMALL_STATE(2246)] = 147880, - [SMALL_STATE(2247)] = 147923, - [SMALL_STATE(2248)] = 147966, - [SMALL_STATE(2249)] = 148009, - [SMALL_STATE(2250)] = 148052, - [SMALL_STATE(2251)] = 148095, - [SMALL_STATE(2252)] = 148138, - [SMALL_STATE(2253)] = 148181, - [SMALL_STATE(2254)] = 148224, - [SMALL_STATE(2255)] = 148267, - [SMALL_STATE(2256)] = 148310, - [SMALL_STATE(2257)] = 148353, - [SMALL_STATE(2258)] = 148396, - [SMALL_STATE(2259)] = 148439, - [SMALL_STATE(2260)] = 148482, - [SMALL_STATE(2261)] = 148525, - [SMALL_STATE(2262)] = 148568, - [SMALL_STATE(2263)] = 148611, - [SMALL_STATE(2264)] = 148654, - [SMALL_STATE(2265)] = 148697, - [SMALL_STATE(2266)] = 148740, - [SMALL_STATE(2267)] = 148783, - [SMALL_STATE(2268)] = 148826, - [SMALL_STATE(2269)] = 148869, - [SMALL_STATE(2270)] = 148912, - [SMALL_STATE(2271)] = 148955, - [SMALL_STATE(2272)] = 148998, - [SMALL_STATE(2273)] = 149041, - [SMALL_STATE(2274)] = 149084, - [SMALL_STATE(2275)] = 149127, - [SMALL_STATE(2276)] = 149170, - [SMALL_STATE(2277)] = 149213, - [SMALL_STATE(2278)] = 149256, - [SMALL_STATE(2279)] = 149299, - [SMALL_STATE(2280)] = 149342, - [SMALL_STATE(2281)] = 149385, - [SMALL_STATE(2282)] = 149428, - [SMALL_STATE(2283)] = 149471, - [SMALL_STATE(2284)] = 149514, - [SMALL_STATE(2285)] = 149557, - [SMALL_STATE(2286)] = 149600, - [SMALL_STATE(2287)] = 149643, - [SMALL_STATE(2288)] = 149686, - [SMALL_STATE(2289)] = 149729, - [SMALL_STATE(2290)] = 149772, - [SMALL_STATE(2291)] = 149815, - [SMALL_STATE(2292)] = 149858, - [SMALL_STATE(2293)] = 149901, - [SMALL_STATE(2294)] = 149944, - [SMALL_STATE(2295)] = 149987, - [SMALL_STATE(2296)] = 150030, - [SMALL_STATE(2297)] = 150073, - [SMALL_STATE(2298)] = 150116, - [SMALL_STATE(2299)] = 150159, - [SMALL_STATE(2300)] = 150202, - [SMALL_STATE(2301)] = 150245, - [SMALL_STATE(2302)] = 150288, - [SMALL_STATE(2303)] = 150331, - [SMALL_STATE(2304)] = 150374, - [SMALL_STATE(2305)] = 150417, - [SMALL_STATE(2306)] = 150460, - [SMALL_STATE(2307)] = 150503, - [SMALL_STATE(2308)] = 150546, - [SMALL_STATE(2309)] = 150589, - [SMALL_STATE(2310)] = 150632, - [SMALL_STATE(2311)] = 150675, - [SMALL_STATE(2312)] = 150718, - [SMALL_STATE(2313)] = 150761, - [SMALL_STATE(2314)] = 150804, - [SMALL_STATE(2315)] = 150847, - [SMALL_STATE(2316)] = 150890, - [SMALL_STATE(2317)] = 150933, - [SMALL_STATE(2318)] = 150976, - [SMALL_STATE(2319)] = 151019, - [SMALL_STATE(2320)] = 151062, - [SMALL_STATE(2321)] = 151105, - [SMALL_STATE(2322)] = 151148, - [SMALL_STATE(2323)] = 151191, - [SMALL_STATE(2324)] = 151234, - [SMALL_STATE(2325)] = 151277, - [SMALL_STATE(2326)] = 151320, - [SMALL_STATE(2327)] = 151363, - [SMALL_STATE(2328)] = 151406, - [SMALL_STATE(2329)] = 151449, - [SMALL_STATE(2330)] = 151492, - [SMALL_STATE(2331)] = 151535, - [SMALL_STATE(2332)] = 151578, - [SMALL_STATE(2333)] = 151621, - [SMALL_STATE(2334)] = 151664, - [SMALL_STATE(2335)] = 151707, - [SMALL_STATE(2336)] = 151750, - [SMALL_STATE(2337)] = 151793, - [SMALL_STATE(2338)] = 151836, - [SMALL_STATE(2339)] = 151879, - [SMALL_STATE(2340)] = 151922, - [SMALL_STATE(2341)] = 151965, - [SMALL_STATE(2342)] = 152008, - [SMALL_STATE(2343)] = 152051, - [SMALL_STATE(2344)] = 152094, - [SMALL_STATE(2345)] = 152137, - [SMALL_STATE(2346)] = 152180, - [SMALL_STATE(2347)] = 152223, - [SMALL_STATE(2348)] = 152266, - [SMALL_STATE(2349)] = 152309, - [SMALL_STATE(2350)] = 152352, - [SMALL_STATE(2351)] = 152395, - [SMALL_STATE(2352)] = 152438, - [SMALL_STATE(2353)] = 152481, - [SMALL_STATE(2354)] = 152524, - [SMALL_STATE(2355)] = 152567, - [SMALL_STATE(2356)] = 152610, - [SMALL_STATE(2357)] = 152653, - [SMALL_STATE(2358)] = 152696, - [SMALL_STATE(2359)] = 152739, - [SMALL_STATE(2360)] = 152782, - [SMALL_STATE(2361)] = 152825, - [SMALL_STATE(2362)] = 152868, - [SMALL_STATE(2363)] = 152911, - [SMALL_STATE(2364)] = 152954, - [SMALL_STATE(2365)] = 152997, - [SMALL_STATE(2366)] = 153040, - [SMALL_STATE(2367)] = 153083, - [SMALL_STATE(2368)] = 153126, - [SMALL_STATE(2369)] = 153169, - [SMALL_STATE(2370)] = 153212, - [SMALL_STATE(2371)] = 153255, - [SMALL_STATE(2372)] = 153298, - [SMALL_STATE(2373)] = 153341, - [SMALL_STATE(2374)] = 153384, - [SMALL_STATE(2375)] = 153427, - [SMALL_STATE(2376)] = 153470, - [SMALL_STATE(2377)] = 153513, - [SMALL_STATE(2378)] = 153556, - [SMALL_STATE(2379)] = 153599, - [SMALL_STATE(2380)] = 153642, - [SMALL_STATE(2381)] = 153685, - [SMALL_STATE(2382)] = 153728, - [SMALL_STATE(2383)] = 153771, - [SMALL_STATE(2384)] = 153814, - [SMALL_STATE(2385)] = 153857, - [SMALL_STATE(2386)] = 153900, - [SMALL_STATE(2387)] = 153943, - [SMALL_STATE(2388)] = 153986, - [SMALL_STATE(2389)] = 154029, - [SMALL_STATE(2390)] = 154072, - [SMALL_STATE(2391)] = 154115, - [SMALL_STATE(2392)] = 154158, - [SMALL_STATE(2393)] = 154201, - [SMALL_STATE(2394)] = 154244, - [SMALL_STATE(2395)] = 154287, - [SMALL_STATE(2396)] = 154330, - [SMALL_STATE(2397)] = 154373, - [SMALL_STATE(2398)] = 154416, - [SMALL_STATE(2399)] = 154459, - [SMALL_STATE(2400)] = 154502, - [SMALL_STATE(2401)] = 154545, - [SMALL_STATE(2402)] = 154588, - [SMALL_STATE(2403)] = 154631, - [SMALL_STATE(2404)] = 154674, - [SMALL_STATE(2405)] = 154717, - [SMALL_STATE(2406)] = 154760, - [SMALL_STATE(2407)] = 154803, - [SMALL_STATE(2408)] = 154846, - [SMALL_STATE(2409)] = 154889, - [SMALL_STATE(2410)] = 154932, - [SMALL_STATE(2411)] = 154975, - [SMALL_STATE(2412)] = 155018, - [SMALL_STATE(2413)] = 155061, - [SMALL_STATE(2414)] = 155104, - [SMALL_STATE(2415)] = 155143, - [SMALL_STATE(2416)] = 155186, - [SMALL_STATE(2417)] = 155229, - [SMALL_STATE(2418)] = 155272, - [SMALL_STATE(2419)] = 155315, - [SMALL_STATE(2420)] = 155358, - [SMALL_STATE(2421)] = 155401, - [SMALL_STATE(2422)] = 155444, - [SMALL_STATE(2423)] = 155487, - [SMALL_STATE(2424)] = 155530, - [SMALL_STATE(2425)] = 155573, - [SMALL_STATE(2426)] = 155616, - [SMALL_STATE(2427)] = 155659, - [SMALL_STATE(2428)] = 155702, - [SMALL_STATE(2429)] = 155745, - [SMALL_STATE(2430)] = 155788, - [SMALL_STATE(2431)] = 155831, - [SMALL_STATE(2432)] = 155874, - [SMALL_STATE(2433)] = 155917, - [SMALL_STATE(2434)] = 155960, - [SMALL_STATE(2435)] = 156003, - [SMALL_STATE(2436)] = 156046, - [SMALL_STATE(2437)] = 156089, - [SMALL_STATE(2438)] = 156132, - [SMALL_STATE(2439)] = 156175, - [SMALL_STATE(2440)] = 156218, - [SMALL_STATE(2441)] = 156261, - [SMALL_STATE(2442)] = 156304, - [SMALL_STATE(2443)] = 156347, - [SMALL_STATE(2444)] = 156390, - [SMALL_STATE(2445)] = 156433, - [SMALL_STATE(2446)] = 156476, - [SMALL_STATE(2447)] = 156519, - [SMALL_STATE(2448)] = 156562, - [SMALL_STATE(2449)] = 156605, - [SMALL_STATE(2450)] = 156648, - [SMALL_STATE(2451)] = 156691, - [SMALL_STATE(2452)] = 156734, - [SMALL_STATE(2453)] = 156777, - [SMALL_STATE(2454)] = 156820, - [SMALL_STATE(2455)] = 156863, - [SMALL_STATE(2456)] = 156906, - [SMALL_STATE(2457)] = 156949, - [SMALL_STATE(2458)] = 156992, - [SMALL_STATE(2459)] = 157035, - [SMALL_STATE(2460)] = 157078, - [SMALL_STATE(2461)] = 157121, - [SMALL_STATE(2462)] = 157164, - [SMALL_STATE(2463)] = 157207, - [SMALL_STATE(2464)] = 157250, - [SMALL_STATE(2465)] = 157293, - [SMALL_STATE(2466)] = 157336, - [SMALL_STATE(2467)] = 157379, - [SMALL_STATE(2468)] = 157422, - [SMALL_STATE(2469)] = 157465, - [SMALL_STATE(2470)] = 157508, - [SMALL_STATE(2471)] = 157551, - [SMALL_STATE(2472)] = 157594, - [SMALL_STATE(2473)] = 157637, - [SMALL_STATE(2474)] = 157680, - [SMALL_STATE(2475)] = 157723, - [SMALL_STATE(2476)] = 157766, - [SMALL_STATE(2477)] = 157809, - [SMALL_STATE(2478)] = 157852, - [SMALL_STATE(2479)] = 157895, - [SMALL_STATE(2480)] = 157938, - [SMALL_STATE(2481)] = 157981, - [SMALL_STATE(2482)] = 158024, - [SMALL_STATE(2483)] = 158067, - [SMALL_STATE(2484)] = 158110, - [SMALL_STATE(2485)] = 158153, - [SMALL_STATE(2486)] = 158196, - [SMALL_STATE(2487)] = 158239, - [SMALL_STATE(2488)] = 158282, - [SMALL_STATE(2489)] = 158325, - [SMALL_STATE(2490)] = 158368, - [SMALL_STATE(2491)] = 158411, - [SMALL_STATE(2492)] = 158454, - [SMALL_STATE(2493)] = 158497, - [SMALL_STATE(2494)] = 158540, - [SMALL_STATE(2495)] = 158583, - [SMALL_STATE(2496)] = 158626, - [SMALL_STATE(2497)] = 158669, - [SMALL_STATE(2498)] = 158712, - [SMALL_STATE(2499)] = 158755, - [SMALL_STATE(2500)] = 158798, - [SMALL_STATE(2501)] = 158841, - [SMALL_STATE(2502)] = 158884, - [SMALL_STATE(2503)] = 158927, - [SMALL_STATE(2504)] = 158970, - [SMALL_STATE(2505)] = 159013, - [SMALL_STATE(2506)] = 159056, - [SMALL_STATE(2507)] = 159099, - [SMALL_STATE(2508)] = 159142, - [SMALL_STATE(2509)] = 159185, - [SMALL_STATE(2510)] = 159228, - [SMALL_STATE(2511)] = 159271, - [SMALL_STATE(2512)] = 159314, - [SMALL_STATE(2513)] = 159357, - [SMALL_STATE(2514)] = 159400, - [SMALL_STATE(2515)] = 159443, - [SMALL_STATE(2516)] = 159486, - [SMALL_STATE(2517)] = 159529, - [SMALL_STATE(2518)] = 159572, - [SMALL_STATE(2519)] = 159615, - [SMALL_STATE(2520)] = 159658, - [SMALL_STATE(2521)] = 159701, - [SMALL_STATE(2522)] = 159744, - [SMALL_STATE(2523)] = 159787, - [SMALL_STATE(2524)] = 159830, - [SMALL_STATE(2525)] = 159873, - [SMALL_STATE(2526)] = 159916, - [SMALL_STATE(2527)] = 159959, - [SMALL_STATE(2528)] = 160002, - [SMALL_STATE(2529)] = 160045, - [SMALL_STATE(2530)] = 160088, - [SMALL_STATE(2531)] = 160131, - [SMALL_STATE(2532)] = 160174, - [SMALL_STATE(2533)] = 160210, - [SMALL_STATE(2534)] = 160246, - [SMALL_STATE(2535)] = 160282, - [SMALL_STATE(2536)] = 160318, - [SMALL_STATE(2537)] = 160354, - [SMALL_STATE(2538)] = 160390, - [SMALL_STATE(2539)] = 160426, - [SMALL_STATE(2540)] = 160462, - [SMALL_STATE(2541)] = 160498, - [SMALL_STATE(2542)] = 160534, - [SMALL_STATE(2543)] = 160570, - [SMALL_STATE(2544)] = 160606, - [SMALL_STATE(2545)] = 160642, - [SMALL_STATE(2546)] = 160678, - [SMALL_STATE(2547)] = 160714, - [SMALL_STATE(2548)] = 160750, - [SMALL_STATE(2549)] = 160786, - [SMALL_STATE(2550)] = 160822, - [SMALL_STATE(2551)] = 160858, - [SMALL_STATE(2552)] = 160894, - [SMALL_STATE(2553)] = 160930, - [SMALL_STATE(2554)] = 160966, - [SMALL_STATE(2555)] = 161002, - [SMALL_STATE(2556)] = 161038, - [SMALL_STATE(2557)] = 161074, - [SMALL_STATE(2558)] = 161110, - [SMALL_STATE(2559)] = 161146, - [SMALL_STATE(2560)] = 161182, - [SMALL_STATE(2561)] = 161218, - [SMALL_STATE(2562)] = 161254, - [SMALL_STATE(2563)] = 161290, - [SMALL_STATE(2564)] = 161326, - [SMALL_STATE(2565)] = 161362, - [SMALL_STATE(2566)] = 161398, - [SMALL_STATE(2567)] = 161434, - [SMALL_STATE(2568)] = 161470, - [SMALL_STATE(2569)] = 161506, - [SMALL_STATE(2570)] = 161542, - [SMALL_STATE(2571)] = 161578, - [SMALL_STATE(2572)] = 161614, - [SMALL_STATE(2573)] = 161650, - [SMALL_STATE(2574)] = 161686, - [SMALL_STATE(2575)] = 161722, - [SMALL_STATE(2576)] = 161758, - [SMALL_STATE(2577)] = 161794, - [SMALL_STATE(2578)] = 161830, - [SMALL_STATE(2579)] = 161866, - [SMALL_STATE(2580)] = 161902, - [SMALL_STATE(2581)] = 161938, - [SMALL_STATE(2582)] = 161974, - [SMALL_STATE(2583)] = 162010, - [SMALL_STATE(2584)] = 162046, - [SMALL_STATE(2585)] = 162082, - [SMALL_STATE(2586)] = 162118, - [SMALL_STATE(2587)] = 162154, - [SMALL_STATE(2588)] = 162190, - [SMALL_STATE(2589)] = 162226, - [SMALL_STATE(2590)] = 162262, - [SMALL_STATE(2591)] = 162298, - [SMALL_STATE(2592)] = 162334, - [SMALL_STATE(2593)] = 162370, - [SMALL_STATE(2594)] = 162406, - [SMALL_STATE(2595)] = 162442, - [SMALL_STATE(2596)] = 162478, - [SMALL_STATE(2597)] = 162514, - [SMALL_STATE(2598)] = 162550, - [SMALL_STATE(2599)] = 162586, - [SMALL_STATE(2600)] = 162622, - [SMALL_STATE(2601)] = 162658, - [SMALL_STATE(2602)] = 162694, - [SMALL_STATE(2603)] = 162730, - [SMALL_STATE(2604)] = 162766, - [SMALL_STATE(2605)] = 162802, - [SMALL_STATE(2606)] = 162838, - [SMALL_STATE(2607)] = 162874, - [SMALL_STATE(2608)] = 162910, - [SMALL_STATE(2609)] = 162946, - [SMALL_STATE(2610)] = 162982, - [SMALL_STATE(2611)] = 163018, - [SMALL_STATE(2612)] = 163054, - [SMALL_STATE(2613)] = 163090, - [SMALL_STATE(2614)] = 163126, - [SMALL_STATE(2615)] = 163162, - [SMALL_STATE(2616)] = 163198, - [SMALL_STATE(2617)] = 163234, - [SMALL_STATE(2618)] = 163270, - [SMALL_STATE(2619)] = 163306, - [SMALL_STATE(2620)] = 163342, - [SMALL_STATE(2621)] = 163378, - [SMALL_STATE(2622)] = 163414, - [SMALL_STATE(2623)] = 163450, - [SMALL_STATE(2624)] = 163486, - [SMALL_STATE(2625)] = 163522, - [SMALL_STATE(2626)] = 163560, - [SMALL_STATE(2627)] = 163596, - [SMALL_STATE(2628)] = 163632, - [SMALL_STATE(2629)] = 163668, - [SMALL_STATE(2630)] = 163704, - [SMALL_STATE(2631)] = 163740, - [SMALL_STATE(2632)] = 163776, - [SMALL_STATE(2633)] = 163812, - [SMALL_STATE(2634)] = 163848, - [SMALL_STATE(2635)] = 163884, - [SMALL_STATE(2636)] = 163921, - [SMALL_STATE(2637)] = 163960, - [SMALL_STATE(2638)] = 163999, - [SMALL_STATE(2639)] = 164038, - [SMALL_STATE(2640)] = 164077, - [SMALL_STATE(2641)] = 164116, - [SMALL_STATE(2642)] = 164155, - [SMALL_STATE(2643)] = 164194, - [SMALL_STATE(2644)] = 164233, - [SMALL_STATE(2645)] = 164272, - [SMALL_STATE(2646)] = 164311, - [SMALL_STATE(2647)] = 164350, - [SMALL_STATE(2648)] = 164389, - [SMALL_STATE(2649)] = 164428, - [SMALL_STATE(2650)] = 164467, - [SMALL_STATE(2651)] = 164506, - [SMALL_STATE(2652)] = 164545, - [SMALL_STATE(2653)] = 164584, - [SMALL_STATE(2654)] = 164623, - [SMALL_STATE(2655)] = 164662, - [SMALL_STATE(2656)] = 164701, - [SMALL_STATE(2657)] = 164740, - [SMALL_STATE(2658)] = 164779, - [SMALL_STATE(2659)] = 164818, - [SMALL_STATE(2660)] = 164857, - [SMALL_STATE(2661)] = 164909, - [SMALL_STATE(2662)] = 164943, - [SMALL_STATE(2663)] = 164995, - [SMALL_STATE(2664)] = 165029, - [SMALL_STATE(2665)] = 165063, - [SMALL_STATE(2666)] = 165097, - [SMALL_STATE(2667)] = 165131, - [SMALL_STATE(2668)] = 165165, - [SMALL_STATE(2669)] = 165199, - [SMALL_STATE(2670)] = 165233, - [SMALL_STATE(2671)] = 165267, - [SMALL_STATE(2672)] = 165301, - [SMALL_STATE(2673)] = 165335, - [SMALL_STATE(2674)] = 165369, - [SMALL_STATE(2675)] = 165403, - [SMALL_STATE(2676)] = 165437, - [SMALL_STATE(2677)] = 165471, - [SMALL_STATE(2678)] = 165505, - [SMALL_STATE(2679)] = 165539, - [SMALL_STATE(2680)] = 165573, - [SMALL_STATE(2681)] = 165607, - [SMALL_STATE(2682)] = 165659, - [SMALL_STATE(2683)] = 165711, - [SMALL_STATE(2684)] = 165763, - [SMALL_STATE(2685)] = 165797, - [SMALL_STATE(2686)] = 165831, - [SMALL_STATE(2687)] = 165883, - [SMALL_STATE(2688)] = 165917, - [SMALL_STATE(2689)] = 165951, - [SMALL_STATE(2690)] = 165985, - [SMALL_STATE(2691)] = 166019, - [SMALL_STATE(2692)] = 166053, - [SMALL_STATE(2693)] = 166087, - [SMALL_STATE(2694)] = 166121, - [SMALL_STATE(2695)] = 166173, - [SMALL_STATE(2696)] = 166207, - [SMALL_STATE(2697)] = 166259, - [SMALL_STATE(2698)] = 166293, - [SMALL_STATE(2699)] = 166327, - [SMALL_STATE(2700)] = 166361, - [SMALL_STATE(2701)] = 166395, - [SMALL_STATE(2702)] = 166429, - [SMALL_STATE(2703)] = 166463, - [SMALL_STATE(2704)] = 166497, - [SMALL_STATE(2705)] = 166531, - [SMALL_STATE(2706)] = 166583, - [SMALL_STATE(2707)] = 166617, - [SMALL_STATE(2708)] = 166651, - [SMALL_STATE(2709)] = 166699, - [SMALL_STATE(2710)] = 166751, - [SMALL_STATE(2711)] = 166785, - [SMALL_STATE(2712)] = 166819, - [SMALL_STATE(2713)] = 166853, - [SMALL_STATE(2714)] = 166887, - [SMALL_STATE(2715)] = 166935, - [SMALL_STATE(2716)] = 166969, - [SMALL_STATE(2717)] = 167003, - [SMALL_STATE(2718)] = 167055, - [SMALL_STATE(2719)] = 167107, - [SMALL_STATE(2720)] = 167141, - [SMALL_STATE(2721)] = 167175, - [SMALL_STATE(2722)] = 167209, - [SMALL_STATE(2723)] = 167243, - [SMALL_STATE(2724)] = 167277, - [SMALL_STATE(2725)] = 167311, - [SMALL_STATE(2726)] = 167345, - [SMALL_STATE(2727)] = 167391, - [SMALL_STATE(2728)] = 167422, - [SMALL_STATE(2729)] = 167461, - [SMALL_STATE(2730)] = 167492, - [SMALL_STATE(2731)] = 167558, - [SMALL_STATE(2732)] = 167620, - [SMALL_STATE(2733)] = 167686, - [SMALL_STATE(2734)] = 167748, - [SMALL_STATE(2735)] = 167810, - [SMALL_STATE(2736)] = 167872, - [SMALL_STATE(2737)] = 167934, - [SMALL_STATE(2738)] = 168000, - [SMALL_STATE(2739)] = 168062, - [SMALL_STATE(2740)] = 168124, - [SMALL_STATE(2741)] = 168186, - [SMALL_STATE(2742)] = 168252, - [SMALL_STATE(2743)] = 168283, - [SMALL_STATE(2744)] = 168318, - [SMALL_STATE(2745)] = 168353, - [SMALL_STATE(2746)] = 168388, - [SMALL_STATE(2747)] = 168421, - [SMALL_STATE(2748)] = 168456, - [SMALL_STATE(2749)] = 168486, - [SMALL_STATE(2750)] = 168516, - [SMALL_STATE(2751)] = 168546, - [SMALL_STATE(2752)] = 168576, - [SMALL_STATE(2753)] = 168606, - [SMALL_STATE(2754)] = 168636, - [SMALL_STATE(2755)] = 168666, - [SMALL_STATE(2756)] = 168696, - [SMALL_STATE(2757)] = 168726, - [SMALL_STATE(2758)] = 168756, - [SMALL_STATE(2759)] = 168786, - [SMALL_STATE(2760)] = 168816, - [SMALL_STATE(2761)] = 168846, - [SMALL_STATE(2762)] = 168876, - [SMALL_STATE(2763)] = 168906, - [SMALL_STATE(2764)] = 168936, - [SMALL_STATE(2765)] = 168966, - [SMALL_STATE(2766)] = 168996, - [SMALL_STATE(2767)] = 169026, - [SMALL_STATE(2768)] = 169056, - [SMALL_STATE(2769)] = 169086, - [SMALL_STATE(2770)] = 169116, - [SMALL_STATE(2771)] = 169146, - [SMALL_STATE(2772)] = 169176, - [SMALL_STATE(2773)] = 169206, - [SMALL_STATE(2774)] = 169235, - [SMALL_STATE(2775)] = 169264, - [SMALL_STATE(2776)] = 169327, - [SMALL_STATE(2777)] = 169356, - [SMALL_STATE(2778)] = 169385, - [SMALL_STATE(2779)] = 169414, - [SMALL_STATE(2780)] = 169443, - [SMALL_STATE(2781)] = 169472, - [SMALL_STATE(2782)] = 169535, - [SMALL_STATE(2783)] = 169564, - [SMALL_STATE(2784)] = 169593, - [SMALL_STATE(2785)] = 169622, - [SMALL_STATE(2786)] = 169685, - [SMALL_STATE(2787)] = 169714, - [SMALL_STATE(2788)] = 169743, - [SMALL_STATE(2789)] = 169772, - [SMALL_STATE(2790)] = 169835, - [SMALL_STATE(2791)] = 169864, - [SMALL_STATE(2792)] = 169927, - [SMALL_STATE(2793)] = 169990, - [SMALL_STATE(2794)] = 170019, - [SMALL_STATE(2795)] = 170048, - [SMALL_STATE(2796)] = 170111, - [SMALL_STATE(2797)] = 170174, - [SMALL_STATE(2798)] = 170203, - [SMALL_STATE(2799)] = 170266, - [SMALL_STATE(2800)] = 170295, - [SMALL_STATE(2801)] = 170324, - [SMALL_STATE(2802)] = 170353, - [SMALL_STATE(2803)] = 170382, - [SMALL_STATE(2804)] = 170411, - [SMALL_STATE(2805)] = 170474, - [SMALL_STATE(2806)] = 170503, - [SMALL_STATE(2807)] = 170566, - [SMALL_STATE(2808)] = 170595, - [SMALL_STATE(2809)] = 170658, - [SMALL_STATE(2810)] = 170687, - [SMALL_STATE(2811)] = 170750, - [SMALL_STATE(2812)] = 170779, - [SMALL_STATE(2813)] = 170842, - [SMALL_STATE(2814)] = 170893, - [SMALL_STATE(2815)] = 170944, - [SMALL_STATE(2816)] = 170977, - [SMALL_STATE(2817)] = 171010, - [SMALL_STATE(2818)] = 171043, - [SMALL_STATE(2819)] = 171094, - [SMALL_STATE(2820)] = 171145, - [SMALL_STATE(2821)] = 171178, - [SMALL_STATE(2822)] = 171229, - [SMALL_STATE(2823)] = 171280, - [SMALL_STATE(2824)] = 171323, - [SMALL_STATE(2825)] = 171374, - [SMALL_STATE(2826)] = 171425, - [SMALL_STATE(2827)] = 171456, - [SMALL_STATE(2828)] = 171507, - [SMALL_STATE(2829)] = 171540, - [SMALL_STATE(2830)] = 171591, - [SMALL_STATE(2831)] = 171622, - [SMALL_STATE(2832)] = 171671, - [SMALL_STATE(2833)] = 171720, - [SMALL_STATE(2834)] = 171771, - [SMALL_STATE(2835)] = 171822, - [SMALL_STATE(2836)] = 171873, - [SMALL_STATE(2837)] = 171924, - [SMALL_STATE(2838)] = 171975, - [SMALL_STATE(2839)] = 172026, - [SMALL_STATE(2840)] = 172056, - [SMALL_STATE(2841)] = 172086, - [SMALL_STATE(2842)] = 172116, - [SMALL_STATE(2843)] = 172141, - [SMALL_STATE(2844)] = 172166, - [SMALL_STATE(2845)] = 172191, - [SMALL_STATE(2846)] = 172216, - [SMALL_STATE(2847)] = 172241, - [SMALL_STATE(2848)] = 172268, - [SMALL_STATE(2849)] = 172293, - [SMALL_STATE(2850)] = 172330, - [SMALL_STATE(2851)] = 172355, - [SMALL_STATE(2852)] = 172380, - [SMALL_STATE(2853)] = 172405, - [SMALL_STATE(2854)] = 172430, - [SMALL_STATE(2855)] = 172466, - [SMALL_STATE(2856)] = 172511, - [SMALL_STATE(2857)] = 172556, - [SMALL_STATE(2858)] = 172601, - [SMALL_STATE(2859)] = 172646, - [SMALL_STATE(2860)] = 172691, - [SMALL_STATE(2861)] = 172736, - [SMALL_STATE(2862)] = 172781, - [SMALL_STATE(2863)] = 172826, - [SMALL_STATE(2864)] = 172871, - [SMALL_STATE(2865)] = 172916, - [SMALL_STATE(2866)] = 172961, - [SMALL_STATE(2867)] = 173006, - [SMALL_STATE(2868)] = 173028, - [SMALL_STATE(2869)] = 173054, - [SMALL_STATE(2870)] = 173082, - [SMALL_STATE(2871)] = 173106, - [SMALL_STATE(2872)] = 173127, - [SMALL_STATE(2873)] = 173148, - [SMALL_STATE(2874)] = 173169, - [SMALL_STATE(2875)] = 173190, - [SMALL_STATE(2876)] = 173211, - [SMALL_STATE(2877)] = 173232, - [SMALL_STATE(2878)] = 173253, - [SMALL_STATE(2879)] = 173274, - [SMALL_STATE(2880)] = 173295, - [SMALL_STATE(2881)] = 173316, - [SMALL_STATE(2882)] = 173337, - [SMALL_STATE(2883)] = 173358, - [SMALL_STATE(2884)] = 173379, - [SMALL_STATE(2885)] = 173400, - [SMALL_STATE(2886)] = 173421, - [SMALL_STATE(2887)] = 173442, - [SMALL_STATE(2888)] = 173463, - [SMALL_STATE(2889)] = 173484, - [SMALL_STATE(2890)] = 173505, - [SMALL_STATE(2891)] = 173526, - [SMALL_STATE(2892)] = 173547, - [SMALL_STATE(2893)] = 173568, - [SMALL_STATE(2894)] = 173589, - [SMALL_STATE(2895)] = 173610, - [SMALL_STATE(2896)] = 173631, - [SMALL_STATE(2897)] = 173652, - [SMALL_STATE(2898)] = 173673, - [SMALL_STATE(2899)] = 173694, - [SMALL_STATE(2900)] = 173715, - [SMALL_STATE(2901)] = 173736, - [SMALL_STATE(2902)] = 173757, - [SMALL_STATE(2903)] = 173778, - [SMALL_STATE(2904)] = 173799, - [SMALL_STATE(2905)] = 173820, - [SMALL_STATE(2906)] = 173841, - [SMALL_STATE(2907)] = 173862, - [SMALL_STATE(2908)] = 173889, - [SMALL_STATE(2909)] = 173910, - [SMALL_STATE(2910)] = 173931, - [SMALL_STATE(2911)] = 173952, - [SMALL_STATE(2912)] = 173973, - [SMALL_STATE(2913)] = 173994, - [SMALL_STATE(2914)] = 174015, - [SMALL_STATE(2915)] = 174036, - [SMALL_STATE(2916)] = 174057, - [SMALL_STATE(2917)] = 174078, - [SMALL_STATE(2918)] = 174099, - [SMALL_STATE(2919)] = 174120, - [SMALL_STATE(2920)] = 174145, - [SMALL_STATE(2921)] = 174166, - [SMALL_STATE(2922)] = 174187, - [SMALL_STATE(2923)] = 174208, - [SMALL_STATE(2924)] = 174233, - [SMALL_STATE(2925)] = 174254, - [SMALL_STATE(2926)] = 174275, - [SMALL_STATE(2927)] = 174296, - [SMALL_STATE(2928)] = 174317, - [SMALL_STATE(2929)] = 174338, - [SMALL_STATE(2930)] = 174359, - [SMALL_STATE(2931)] = 174380, - [SMALL_STATE(2932)] = 174401, - [SMALL_STATE(2933)] = 174422, - [SMALL_STATE(2934)] = 174443, - [SMALL_STATE(2935)] = 174464, - [SMALL_STATE(2936)] = 174485, - [SMALL_STATE(2937)] = 174506, - [SMALL_STATE(2938)] = 174527, - [SMALL_STATE(2939)] = 174548, - [SMALL_STATE(2940)] = 174569, - [SMALL_STATE(2941)] = 174590, - [SMALL_STATE(2942)] = 174611, - [SMALL_STATE(2943)] = 174632, - [SMALL_STATE(2944)] = 174653, - [SMALL_STATE(2945)] = 174674, - [SMALL_STATE(2946)] = 174695, - [SMALL_STATE(2947)] = 174716, - [SMALL_STATE(2948)] = 174737, - [SMALL_STATE(2949)] = 174758, - [SMALL_STATE(2950)] = 174779, - [SMALL_STATE(2951)] = 174804, - [SMALL_STATE(2952)] = 174825, - [SMALL_STATE(2953)] = 174846, - [SMALL_STATE(2954)] = 174867, - [SMALL_STATE(2955)] = 174892, - [SMALL_STATE(2956)] = 174913, - [SMALL_STATE(2957)] = 174934, - [SMALL_STATE(2958)] = 174955, - [SMALL_STATE(2959)] = 174976, - [SMALL_STATE(2960)] = 174997, - [SMALL_STATE(2961)] = 175018, - [SMALL_STATE(2962)] = 175039, - [SMALL_STATE(2963)] = 175060, - [SMALL_STATE(2964)] = 175081, - [SMALL_STATE(2965)] = 175102, - [SMALL_STATE(2966)] = 175123, - [SMALL_STATE(2967)] = 175144, - [SMALL_STATE(2968)] = 175165, - [SMALL_STATE(2969)] = 175190, - [SMALL_STATE(2970)] = 175211, - [SMALL_STATE(2971)] = 175232, - [SMALL_STATE(2972)] = 175253, - [SMALL_STATE(2973)] = 175273, - [SMALL_STATE(2974)] = 175302, - [SMALL_STATE(2975)] = 175335, - [SMALL_STATE(2976)] = 175364, - [SMALL_STATE(2977)] = 175397, - [SMALL_STATE(2978)] = 175426, - [SMALL_STATE(2979)] = 175455, - [SMALL_STATE(2980)] = 175488, - [SMALL_STATE(2981)] = 175517, - [SMALL_STATE(2982)] = 175550, - [SMALL_STATE(2983)] = 175583, - [SMALL_STATE(2984)] = 175612, - [SMALL_STATE(2985)] = 175645, - [SMALL_STATE(2986)] = 175674, - [SMALL_STATE(2987)] = 175703, - [SMALL_STATE(2988)] = 175732, - [SMALL_STATE(2989)] = 175761, - [SMALL_STATE(2990)] = 175794, - [SMALL_STATE(2991)] = 175827, - [SMALL_STATE(2992)] = 175860, - [SMALL_STATE(2993)] = 175893, - [SMALL_STATE(2994)] = 175922, - [SMALL_STATE(2995)] = 175951, - [SMALL_STATE(2996)] = 175980, - [SMALL_STATE(2997)] = 176013, - [SMALL_STATE(2998)] = 176046, - [SMALL_STATE(2999)] = 176075, - [SMALL_STATE(3000)] = 176104, - [SMALL_STATE(3001)] = 176133, - [SMALL_STATE(3002)] = 176162, - [SMALL_STATE(3003)] = 176195, - [SMALL_STATE(3004)] = 176228, - [SMALL_STATE(3005)] = 176257, - [SMALL_STATE(3006)] = 176290, - [SMALL_STATE(3007)] = 176323, - [SMALL_STATE(3008)] = 176344, - [SMALL_STATE(3009)] = 176377, - [SMALL_STATE(3010)] = 176406, - [SMALL_STATE(3011)] = 176439, - [SMALL_STATE(3012)] = 176472, - [SMALL_STATE(3013)] = 176505, - [SMALL_STATE(3014)] = 176538, - [SMALL_STATE(3015)] = 176571, - [SMALL_STATE(3016)] = 176604, - [SMALL_STATE(3017)] = 176633, - [SMALL_STATE(3018)] = 176662, - [SMALL_STATE(3019)] = 176683, - [SMALL_STATE(3020)] = 176704, - [SMALL_STATE(3021)] = 176733, - [SMALL_STATE(3022)] = 176762, - [SMALL_STATE(3023)] = 176795, - [SMALL_STATE(3024)] = 176824, - [SMALL_STATE(3025)] = 176853, - [SMALL_STATE(3026)] = 176886, - [SMALL_STATE(3027)] = 176904, - [SMALL_STATE(3028)] = 176922, - [SMALL_STATE(3029)] = 176952, - [SMALL_STATE(3030)] = 176982, - [SMALL_STATE(3031)] = 177000, - [SMALL_STATE(3032)] = 177018, - [SMALL_STATE(3033)] = 177036, - [SMALL_STATE(3034)] = 177066, - [SMALL_STATE(3035)] = 177084, - [SMALL_STATE(3036)] = 177114, - [SMALL_STATE(3037)] = 177132, - [SMALL_STATE(3038)] = 177150, - [SMALL_STATE(3039)] = 177168, - [SMALL_STATE(3040)] = 177186, - [SMALL_STATE(3041)] = 177216, - [SMALL_STATE(3042)] = 177234, - [SMALL_STATE(3043)] = 177252, - [SMALL_STATE(3044)] = 177270, - [SMALL_STATE(3045)] = 177292, - [SMALL_STATE(3046)] = 177310, - [SMALL_STATE(3047)] = 177328, - [SMALL_STATE(3048)] = 177346, - [SMALL_STATE(3049)] = 177364, - [SMALL_STATE(3050)] = 177382, - [SMALL_STATE(3051)] = 177404, - [SMALL_STATE(3052)] = 177434, - [SMALL_STATE(3053)] = 177452, - [SMALL_STATE(3054)] = 177470, - [SMALL_STATE(3055)] = 177496, - [SMALL_STATE(3056)] = 177514, - [SMALL_STATE(3057)] = 177544, - [SMALL_STATE(3058)] = 177562, - [SMALL_STATE(3059)] = 177580, - [SMALL_STATE(3060)] = 177608, - [SMALL_STATE(3061)] = 177626, - [SMALL_STATE(3062)] = 177644, - [SMALL_STATE(3063)] = 177674, - [SMALL_STATE(3064)] = 177704, - [SMALL_STATE(3065)] = 177724, - [SMALL_STATE(3066)] = 177754, - [SMALL_STATE(3067)] = 177774, - [SMALL_STATE(3068)] = 177794, - [SMALL_STATE(3069)] = 177824, - [SMALL_STATE(3070)] = 177842, - [SMALL_STATE(3071)] = 177872, - [SMALL_STATE(3072)] = 177897, - [SMALL_STATE(3073)] = 177928, - [SMALL_STATE(3074)] = 177959, - [SMALL_STATE(3075)] = 177984, - [SMALL_STATE(3076)] = 178006, - [SMALL_STATE(3077)] = 178028, - [SMALL_STATE(3078)] = 178050, - [SMALL_STATE(3079)] = 178072, - [SMALL_STATE(3080)] = 178094, - [SMALL_STATE(3081)] = 178116, - [SMALL_STATE(3082)] = 178138, - [SMALL_STATE(3083)] = 178160, - [SMALL_STATE(3084)] = 178182, - [SMALL_STATE(3085)] = 178204, - [SMALL_STATE(3086)] = 178226, - [SMALL_STATE(3087)] = 178248, - [SMALL_STATE(3088)] = 178270, - [SMALL_STATE(3089)] = 178292, - [SMALL_STATE(3090)] = 178314, - [SMALL_STATE(3091)] = 178336, - [SMALL_STATE(3092)] = 178358, - [SMALL_STATE(3093)] = 178380, - [SMALL_STATE(3094)] = 178402, - [SMALL_STATE(3095)] = 178424, - [SMALL_STATE(3096)] = 178446, - [SMALL_STATE(3097)] = 178468, - [SMALL_STATE(3098)] = 178490, - [SMALL_STATE(3099)] = 178512, - [SMALL_STATE(3100)] = 178534, - [SMALL_STATE(3101)] = 178556, - [SMALL_STATE(3102)] = 178578, - [SMALL_STATE(3103)] = 178600, - [SMALL_STATE(3104)] = 178622, - [SMALL_STATE(3105)] = 178644, - [SMALL_STATE(3106)] = 178666, - [SMALL_STATE(3107)] = 178688, - [SMALL_STATE(3108)] = 178710, - [SMALL_STATE(3109)] = 178732, - [SMALL_STATE(3110)] = 178754, - [SMALL_STATE(3111)] = 178776, - [SMALL_STATE(3112)] = 178798, - [SMALL_STATE(3113)] = 178820, - [SMALL_STATE(3114)] = 178842, - [SMALL_STATE(3115)] = 178864, - [SMALL_STATE(3116)] = 178886, - [SMALL_STATE(3117)] = 178908, - [SMALL_STATE(3118)] = 178930, - [SMALL_STATE(3119)] = 178952, - [SMALL_STATE(3120)] = 178974, - [SMALL_STATE(3121)] = 178996, - [SMALL_STATE(3122)] = 179018, - [SMALL_STATE(3123)] = 179040, - [SMALL_STATE(3124)] = 179062, - [SMALL_STATE(3125)] = 179084, - [SMALL_STATE(3126)] = 179106, - [SMALL_STATE(3127)] = 179128, - [SMALL_STATE(3128)] = 179150, - [SMALL_STATE(3129)] = 179172, - [SMALL_STATE(3130)] = 179194, - [SMALL_STATE(3131)] = 179216, - [SMALL_STATE(3132)] = 179238, - [SMALL_STATE(3133)] = 179260, - [SMALL_STATE(3134)] = 179282, - [SMALL_STATE(3135)] = 179304, - [SMALL_STATE(3136)] = 179326, - [SMALL_STATE(3137)] = 179348, - [SMALL_STATE(3138)] = 179370, - [SMALL_STATE(3139)] = 179392, - [SMALL_STATE(3140)] = 179414, - [SMALL_STATE(3141)] = 179436, - [SMALL_STATE(3142)] = 179458, - [SMALL_STATE(3143)] = 179480, - [SMALL_STATE(3144)] = 179502, - [SMALL_STATE(3145)] = 179524, - [SMALL_STATE(3146)] = 179546, - [SMALL_STATE(3147)] = 179568, - [SMALL_STATE(3148)] = 179590, - [SMALL_STATE(3149)] = 179612, - [SMALL_STATE(3150)] = 179634, - [SMALL_STATE(3151)] = 179656, - [SMALL_STATE(3152)] = 179678, - [SMALL_STATE(3153)] = 179700, - [SMALL_STATE(3154)] = 179722, - [SMALL_STATE(3155)] = 179744, - [SMALL_STATE(3156)] = 179766, - [SMALL_STATE(3157)] = 179788, - [SMALL_STATE(3158)] = 179810, - [SMALL_STATE(3159)] = 179832, - [SMALL_STATE(3160)] = 179854, - [SMALL_STATE(3161)] = 179876, - [SMALL_STATE(3162)] = 179898, - [SMALL_STATE(3163)] = 179920, - [SMALL_STATE(3164)] = 179942, - [SMALL_STATE(3165)] = 179964, - [SMALL_STATE(3166)] = 179986, - [SMALL_STATE(3167)] = 180008, - [SMALL_STATE(3168)] = 180030, - [SMALL_STATE(3169)] = 180052, - [SMALL_STATE(3170)] = 180074, - [SMALL_STATE(3171)] = 180096, - [SMALL_STATE(3172)] = 180118, - [SMALL_STATE(3173)] = 180140, - [SMALL_STATE(3174)] = 180162, - [SMALL_STATE(3175)] = 180184, - [SMALL_STATE(3176)] = 180206, - [SMALL_STATE(3177)] = 180228, - [SMALL_STATE(3178)] = 180250, - [SMALL_STATE(3179)] = 180272, - [SMALL_STATE(3180)] = 180294, - [SMALL_STATE(3181)] = 180316, - [SMALL_STATE(3182)] = 180338, - [SMALL_STATE(3183)] = 180360, - [SMALL_STATE(3184)] = 180382, - [SMALL_STATE(3185)] = 180404, - [SMALL_STATE(3186)] = 180426, - [SMALL_STATE(3187)] = 180448, - [SMALL_STATE(3188)] = 180470, - [SMALL_STATE(3189)] = 180492, - [SMALL_STATE(3190)] = 180514, - [SMALL_STATE(3191)] = 180536, - [SMALL_STATE(3192)] = 180558, - [SMALL_STATE(3193)] = 180580, - [SMALL_STATE(3194)] = 180602, - [SMALL_STATE(3195)] = 180624, - [SMALL_STATE(3196)] = 180646, - [SMALL_STATE(3197)] = 180668, - [SMALL_STATE(3198)] = 180690, - [SMALL_STATE(3199)] = 180712, - [SMALL_STATE(3200)] = 180734, - [SMALL_STATE(3201)] = 180756, - [SMALL_STATE(3202)] = 180778, - [SMALL_STATE(3203)] = 180800, - [SMALL_STATE(3204)] = 180822, - [SMALL_STATE(3205)] = 180844, - [SMALL_STATE(3206)] = 180866, - [SMALL_STATE(3207)] = 180888, - [SMALL_STATE(3208)] = 180910, - [SMALL_STATE(3209)] = 180932, - [SMALL_STATE(3210)] = 180954, - [SMALL_STATE(3211)] = 180976, - [SMALL_STATE(3212)] = 180998, - [SMALL_STATE(3213)] = 181020, - [SMALL_STATE(3214)] = 181042, - [SMALL_STATE(3215)] = 181064, - [SMALL_STATE(3216)] = 181086, - [SMALL_STATE(3217)] = 181102, - [SMALL_STATE(3218)] = 181124, - [SMALL_STATE(3219)] = 181146, - [SMALL_STATE(3220)] = 181168, - [SMALL_STATE(3221)] = 181190, - [SMALL_STATE(3222)] = 181212, - [SMALL_STATE(3223)] = 181234, - [SMALL_STATE(3224)] = 181256, - [SMALL_STATE(3225)] = 181278, - [SMALL_STATE(3226)] = 181300, - [SMALL_STATE(3227)] = 181322, - [SMALL_STATE(3228)] = 181344, - [SMALL_STATE(3229)] = 181366, - [SMALL_STATE(3230)] = 181388, - [SMALL_STATE(3231)] = 181410, - [SMALL_STATE(3232)] = 181432, - [SMALL_STATE(3233)] = 181454, - [SMALL_STATE(3234)] = 181476, - [SMALL_STATE(3235)] = 181498, - [SMALL_STATE(3236)] = 181520, - [SMALL_STATE(3237)] = 181542, - [SMALL_STATE(3238)] = 181564, - [SMALL_STATE(3239)] = 181592, - [SMALL_STATE(3240)] = 181614, - [SMALL_STATE(3241)] = 181636, - [SMALL_STATE(3242)] = 181658, - [SMALL_STATE(3243)] = 181680, - [SMALL_STATE(3244)] = 181702, - [SMALL_STATE(3245)] = 181724, - [SMALL_STATE(3246)] = 181746, - [SMALL_STATE(3247)] = 181768, - [SMALL_STATE(3248)] = 181790, - [SMALL_STATE(3249)] = 181812, - [SMALL_STATE(3250)] = 181834, - [SMALL_STATE(3251)] = 181856, - [SMALL_STATE(3252)] = 181878, - [SMALL_STATE(3253)] = 181900, - [SMALL_STATE(3254)] = 181922, - [SMALL_STATE(3255)] = 181944, - [SMALL_STATE(3256)] = 181966, - [SMALL_STATE(3257)] = 181988, - [SMALL_STATE(3258)] = 182010, - [SMALL_STATE(3259)] = 182032, - [SMALL_STATE(3260)] = 182054, - [SMALL_STATE(3261)] = 182076, - [SMALL_STATE(3262)] = 182098, - [SMALL_STATE(3263)] = 182120, - [SMALL_STATE(3264)] = 182142, - [SMALL_STATE(3265)] = 182164, - [SMALL_STATE(3266)] = 182186, - [SMALL_STATE(3267)] = 182208, - [SMALL_STATE(3268)] = 182230, - [SMALL_STATE(3269)] = 182252, - [SMALL_STATE(3270)] = 182274, - [SMALL_STATE(3271)] = 182296, - [SMALL_STATE(3272)] = 182318, - [SMALL_STATE(3273)] = 182340, - [SMALL_STATE(3274)] = 182362, - [SMALL_STATE(3275)] = 182384, - [SMALL_STATE(3276)] = 182406, - [SMALL_STATE(3277)] = 182428, - [SMALL_STATE(3278)] = 182450, - [SMALL_STATE(3279)] = 182472, - [SMALL_STATE(3280)] = 182494, - [SMALL_STATE(3281)] = 182516, - [SMALL_STATE(3282)] = 182538, - [SMALL_STATE(3283)] = 182560, - [SMALL_STATE(3284)] = 182582, - [SMALL_STATE(3285)] = 182604, - [SMALL_STATE(3286)] = 182626, - [SMALL_STATE(3287)] = 182648, - [SMALL_STATE(3288)] = 182670, - [SMALL_STATE(3289)] = 182692, - [SMALL_STATE(3290)] = 182714, - [SMALL_STATE(3291)] = 182736, - [SMALL_STATE(3292)] = 182758, - [SMALL_STATE(3293)] = 182780, - [SMALL_STATE(3294)] = 182802, - [SMALL_STATE(3295)] = 182824, - [SMALL_STATE(3296)] = 182846, - [SMALL_STATE(3297)] = 182868, - [SMALL_STATE(3298)] = 182890, - [SMALL_STATE(3299)] = 182912, - [SMALL_STATE(3300)] = 182934, - [SMALL_STATE(3301)] = 182956, - [SMALL_STATE(3302)] = 182978, - [SMALL_STATE(3303)] = 183000, - [SMALL_STATE(3304)] = 183022, - [SMALL_STATE(3305)] = 183050, - [SMALL_STATE(3306)] = 183072, - [SMALL_STATE(3307)] = 183094, - [SMALL_STATE(3308)] = 183116, - [SMALL_STATE(3309)] = 183138, - [SMALL_STATE(3310)] = 183160, - [SMALL_STATE(3311)] = 183182, - [SMALL_STATE(3312)] = 183204, - [SMALL_STATE(3313)] = 183226, - [SMALL_STATE(3314)] = 183248, - [SMALL_STATE(3315)] = 183270, - [SMALL_STATE(3316)] = 183292, - [SMALL_STATE(3317)] = 183314, - [SMALL_STATE(3318)] = 183336, - [SMALL_STATE(3319)] = 183358, - [SMALL_STATE(3320)] = 183380, - [SMALL_STATE(3321)] = 183402, - [SMALL_STATE(3322)] = 183424, - [SMALL_STATE(3323)] = 183452, - [SMALL_STATE(3324)] = 183474, - [SMALL_STATE(3325)] = 183496, - [SMALL_STATE(3326)] = 183518, - [SMALL_STATE(3327)] = 183540, - [SMALL_STATE(3328)] = 183562, - [SMALL_STATE(3329)] = 183584, - [SMALL_STATE(3330)] = 183606, - [SMALL_STATE(3331)] = 183628, - [SMALL_STATE(3332)] = 183650, - [SMALL_STATE(3333)] = 183672, - [SMALL_STATE(3334)] = 183694, - [SMALL_STATE(3335)] = 183716, - [SMALL_STATE(3336)] = 183738, - [SMALL_STATE(3337)] = 183760, - [SMALL_STATE(3338)] = 183782, - [SMALL_STATE(3339)] = 183804, - [SMALL_STATE(3340)] = 183826, - [SMALL_STATE(3341)] = 183848, - [SMALL_STATE(3342)] = 183870, - [SMALL_STATE(3343)] = 183892, - [SMALL_STATE(3344)] = 183914, - [SMALL_STATE(3345)] = 183936, - [SMALL_STATE(3346)] = 183958, - [SMALL_STATE(3347)] = 183980, - [SMALL_STATE(3348)] = 184002, - [SMALL_STATE(3349)] = 184024, - [SMALL_STATE(3350)] = 184046, - [SMALL_STATE(3351)] = 184068, - [SMALL_STATE(3352)] = 184090, - [SMALL_STATE(3353)] = 184112, - [SMALL_STATE(3354)] = 184134, - [SMALL_STATE(3355)] = 184156, - [SMALL_STATE(3356)] = 184184, - [SMALL_STATE(3357)] = 184206, - [SMALL_STATE(3358)] = 184222, - [SMALL_STATE(3359)] = 184244, - [SMALL_STATE(3360)] = 184272, - [SMALL_STATE(3361)] = 184294, - [SMALL_STATE(3362)] = 184316, - [SMALL_STATE(3363)] = 184338, - [SMALL_STATE(3364)] = 184360, - [SMALL_STATE(3365)] = 184382, - [SMALL_STATE(3366)] = 184404, - [SMALL_STATE(3367)] = 184426, - [SMALL_STATE(3368)] = 184448, - [SMALL_STATE(3369)] = 184470, - [SMALL_STATE(3370)] = 184492, - [SMALL_STATE(3371)] = 184514, - [SMALL_STATE(3372)] = 184536, - [SMALL_STATE(3373)] = 184558, - [SMALL_STATE(3374)] = 184580, - [SMALL_STATE(3375)] = 184602, - [SMALL_STATE(3376)] = 184624, - [SMALL_STATE(3377)] = 184646, - [SMALL_STATE(3378)] = 184668, - [SMALL_STATE(3379)] = 184690, - [SMALL_STATE(3380)] = 184712, - [SMALL_STATE(3381)] = 184734, - [SMALL_STATE(3382)] = 184756, - [SMALL_STATE(3383)] = 184778, - [SMALL_STATE(3384)] = 184806, - [SMALL_STATE(3385)] = 184828, - [SMALL_STATE(3386)] = 184856, - [SMALL_STATE(3387)] = 184878, - [SMALL_STATE(3388)] = 184900, - [SMALL_STATE(3389)] = 184928, - [SMALL_STATE(3390)] = 184950, - [SMALL_STATE(3391)] = 184972, - [SMALL_STATE(3392)] = 185000, - [SMALL_STATE(3393)] = 185019, - [SMALL_STATE(3394)] = 185038, - [SMALL_STATE(3395)] = 185057, - [SMALL_STATE(3396)] = 185076, - [SMALL_STATE(3397)] = 185095, - [SMALL_STATE(3398)] = 185114, - [SMALL_STATE(3399)] = 185133, - [SMALL_STATE(3400)] = 185152, - [SMALL_STATE(3401)] = 185171, - [SMALL_STATE(3402)] = 185190, - [SMALL_STATE(3403)] = 185209, - [SMALL_STATE(3404)] = 185228, - [SMALL_STATE(3405)] = 185247, - [SMALL_STATE(3406)] = 185266, - [SMALL_STATE(3407)] = 185285, - [SMALL_STATE(3408)] = 185304, - [SMALL_STATE(3409)] = 185323, - [SMALL_STATE(3410)] = 185342, - [SMALL_STATE(3411)] = 185361, - [SMALL_STATE(3412)] = 185380, - [SMALL_STATE(3413)] = 185399, - [SMALL_STATE(3414)] = 185418, - [SMALL_STATE(3415)] = 185437, - [SMALL_STATE(3416)] = 185456, - [SMALL_STATE(3417)] = 185475, - [SMALL_STATE(3418)] = 185494, - [SMALL_STATE(3419)] = 185513, - [SMALL_STATE(3420)] = 185532, - [SMALL_STATE(3421)] = 185551, - [SMALL_STATE(3422)] = 185570, - [SMALL_STATE(3423)] = 185589, - [SMALL_STATE(3424)] = 185608, - [SMALL_STATE(3425)] = 185627, - [SMALL_STATE(3426)] = 185646, - [SMALL_STATE(3427)] = 185665, - [SMALL_STATE(3428)] = 185684, - [SMALL_STATE(3429)] = 185703, - [SMALL_STATE(3430)] = 185722, - [SMALL_STATE(3431)] = 185741, - [SMALL_STATE(3432)] = 185760, - [SMALL_STATE(3433)] = 185779, - [SMALL_STATE(3434)] = 185798, - [SMALL_STATE(3435)] = 185817, - [SMALL_STATE(3436)] = 185836, - [SMALL_STATE(3437)] = 185855, - [SMALL_STATE(3438)] = 185874, - [SMALL_STATE(3439)] = 185893, - [SMALL_STATE(3440)] = 185912, - [SMALL_STATE(3441)] = 185931, - [SMALL_STATE(3442)] = 185950, - [SMALL_STATE(3443)] = 185969, - [SMALL_STATE(3444)] = 185988, - [SMALL_STATE(3445)] = 186007, - [SMALL_STATE(3446)] = 186026, - [SMALL_STATE(3447)] = 186045, - [SMALL_STATE(3448)] = 186064, - [SMALL_STATE(3449)] = 186083, - [SMALL_STATE(3450)] = 186102, - [SMALL_STATE(3451)] = 186121, - [SMALL_STATE(3452)] = 186140, - [SMALL_STATE(3453)] = 186159, - [SMALL_STATE(3454)] = 186178, - [SMALL_STATE(3455)] = 186197, - [SMALL_STATE(3456)] = 186216, - [SMALL_STATE(3457)] = 186235, - [SMALL_STATE(3458)] = 186254, - [SMALL_STATE(3459)] = 186273, - [SMALL_STATE(3460)] = 186292, - [SMALL_STATE(3461)] = 186311, - [SMALL_STATE(3462)] = 186330, - [SMALL_STATE(3463)] = 186349, - [SMALL_STATE(3464)] = 186368, - [SMALL_STATE(3465)] = 186387, - [SMALL_STATE(3466)] = 186406, - [SMALL_STATE(3467)] = 186425, - [SMALL_STATE(3468)] = 186444, - [SMALL_STATE(3469)] = 186463, - [SMALL_STATE(3470)] = 186482, - [SMALL_STATE(3471)] = 186501, - [SMALL_STATE(3472)] = 186520, - [SMALL_STATE(3473)] = 186539, - [SMALL_STATE(3474)] = 186558, - [SMALL_STATE(3475)] = 186577, - [SMALL_STATE(3476)] = 186596, - [SMALL_STATE(3477)] = 186615, - [SMALL_STATE(3478)] = 186634, - [SMALL_STATE(3479)] = 186653, - [SMALL_STATE(3480)] = 186672, - [SMALL_STATE(3481)] = 186691, - [SMALL_STATE(3482)] = 186710, - [SMALL_STATE(3483)] = 186729, - [SMALL_STATE(3484)] = 186748, - [SMALL_STATE(3485)] = 186767, - [SMALL_STATE(3486)] = 186786, - [SMALL_STATE(3487)] = 186805, - [SMALL_STATE(3488)] = 186824, - [SMALL_STATE(3489)] = 186843, - [SMALL_STATE(3490)] = 186862, - [SMALL_STATE(3491)] = 186881, - [SMALL_STATE(3492)] = 186900, - [SMALL_STATE(3493)] = 186919, - [SMALL_STATE(3494)] = 186938, - [SMALL_STATE(3495)] = 186957, - [SMALL_STATE(3496)] = 186976, - [SMALL_STATE(3497)] = 186995, - [SMALL_STATE(3498)] = 187014, - [SMALL_STATE(3499)] = 187033, - [SMALL_STATE(3500)] = 187052, - [SMALL_STATE(3501)] = 187071, - [SMALL_STATE(3502)] = 187090, - [SMALL_STATE(3503)] = 187109, - [SMALL_STATE(3504)] = 187128, - [SMALL_STATE(3505)] = 187147, - [SMALL_STATE(3506)] = 187166, - [SMALL_STATE(3507)] = 187185, - [SMALL_STATE(3508)] = 187204, - [SMALL_STATE(3509)] = 187223, - [SMALL_STATE(3510)] = 187242, - [SMALL_STATE(3511)] = 187261, - [SMALL_STATE(3512)] = 187280, - [SMALL_STATE(3513)] = 187299, - [SMALL_STATE(3514)] = 187318, - [SMALL_STATE(3515)] = 187337, - [SMALL_STATE(3516)] = 187356, - [SMALL_STATE(3517)] = 187375, - [SMALL_STATE(3518)] = 187394, - [SMALL_STATE(3519)] = 187413, - [SMALL_STATE(3520)] = 187432, - [SMALL_STATE(3521)] = 187451, - [SMALL_STATE(3522)] = 187470, - [SMALL_STATE(3523)] = 187489, - [SMALL_STATE(3524)] = 187508, - [SMALL_STATE(3525)] = 187527, - [SMALL_STATE(3526)] = 187546, - [SMALL_STATE(3527)] = 187565, - [SMALL_STATE(3528)] = 187584, - [SMALL_STATE(3529)] = 187603, - [SMALL_STATE(3530)] = 187622, - [SMALL_STATE(3531)] = 187641, - [SMALL_STATE(3532)] = 187660, - [SMALL_STATE(3533)] = 187679, - [SMALL_STATE(3534)] = 187698, - [SMALL_STATE(3535)] = 187717, - [SMALL_STATE(3536)] = 187736, - [SMALL_STATE(3537)] = 187755, - [SMALL_STATE(3538)] = 187774, - [SMALL_STATE(3539)] = 187793, - [SMALL_STATE(3540)] = 187812, - [SMALL_STATE(3541)] = 187831, - [SMALL_STATE(3542)] = 187850, - [SMALL_STATE(3543)] = 187869, - [SMALL_STATE(3544)] = 187888, - [SMALL_STATE(3545)] = 187907, - [SMALL_STATE(3546)] = 187926, - [SMALL_STATE(3547)] = 187945, - [SMALL_STATE(3548)] = 187964, - [SMALL_STATE(3549)] = 187983, - [SMALL_STATE(3550)] = 188002, - [SMALL_STATE(3551)] = 188021, - [SMALL_STATE(3552)] = 188040, - [SMALL_STATE(3553)] = 188059, - [SMALL_STATE(3554)] = 188078, - [SMALL_STATE(3555)] = 188097, - [SMALL_STATE(3556)] = 188116, - [SMALL_STATE(3557)] = 188135, - [SMALL_STATE(3558)] = 188154, - [SMALL_STATE(3559)] = 188173, - [SMALL_STATE(3560)] = 188192, - [SMALL_STATE(3561)] = 188211, - [SMALL_STATE(3562)] = 188230, - [SMALL_STATE(3563)] = 188249, - [SMALL_STATE(3564)] = 188268, - [SMALL_STATE(3565)] = 188287, - [SMALL_STATE(3566)] = 188306, - [SMALL_STATE(3567)] = 188325, - [SMALL_STATE(3568)] = 188344, - [SMALL_STATE(3569)] = 188363, - [SMALL_STATE(3570)] = 188382, - [SMALL_STATE(3571)] = 188401, - [SMALL_STATE(3572)] = 188420, - [SMALL_STATE(3573)] = 188439, - [SMALL_STATE(3574)] = 188458, - [SMALL_STATE(3575)] = 188477, - [SMALL_STATE(3576)] = 188496, - [SMALL_STATE(3577)] = 188515, - [SMALL_STATE(3578)] = 188534, - [SMALL_STATE(3579)] = 188553, - [SMALL_STATE(3580)] = 188572, - [SMALL_STATE(3581)] = 188591, - [SMALL_STATE(3582)] = 188610, - [SMALL_STATE(3583)] = 188629, - [SMALL_STATE(3584)] = 188648, - [SMALL_STATE(3585)] = 188667, - [SMALL_STATE(3586)] = 188686, - [SMALL_STATE(3587)] = 188705, - [SMALL_STATE(3588)] = 188724, - [SMALL_STATE(3589)] = 188743, - [SMALL_STATE(3590)] = 188762, - [SMALL_STATE(3591)] = 188781, - [SMALL_STATE(3592)] = 188800, - [SMALL_STATE(3593)] = 188819, - [SMALL_STATE(3594)] = 188838, - [SMALL_STATE(3595)] = 188857, - [SMALL_STATE(3596)] = 188876, - [SMALL_STATE(3597)] = 188895, - [SMALL_STATE(3598)] = 188914, - [SMALL_STATE(3599)] = 188933, - [SMALL_STATE(3600)] = 188952, - [SMALL_STATE(3601)] = 188971, - [SMALL_STATE(3602)] = 188990, - [SMALL_STATE(3603)] = 189009, - [SMALL_STATE(3604)] = 189028, - [SMALL_STATE(3605)] = 189047, - [SMALL_STATE(3606)] = 189066, - [SMALL_STATE(3607)] = 189085, - [SMALL_STATE(3608)] = 189104, - [SMALL_STATE(3609)] = 189123, - [SMALL_STATE(3610)] = 189142, - [SMALL_STATE(3611)] = 189161, - [SMALL_STATE(3612)] = 189180, - [SMALL_STATE(3613)] = 189199, - [SMALL_STATE(3614)] = 189218, - [SMALL_STATE(3615)] = 189237, - [SMALL_STATE(3616)] = 189256, - [SMALL_STATE(3617)] = 189275, - [SMALL_STATE(3618)] = 189294, - [SMALL_STATE(3619)] = 189313, - [SMALL_STATE(3620)] = 189332, - [SMALL_STATE(3621)] = 189351, - [SMALL_STATE(3622)] = 189370, - [SMALL_STATE(3623)] = 189389, - [SMALL_STATE(3624)] = 189408, - [SMALL_STATE(3625)] = 189427, - [SMALL_STATE(3626)] = 189446, - [SMALL_STATE(3627)] = 189465, - [SMALL_STATE(3628)] = 189484, - [SMALL_STATE(3629)] = 189503, - [SMALL_STATE(3630)] = 189522, - [SMALL_STATE(3631)] = 189541, - [SMALL_STATE(3632)] = 189560, - [SMALL_STATE(3633)] = 189579, - [SMALL_STATE(3634)] = 189598, - [SMALL_STATE(3635)] = 189617, - [SMALL_STATE(3636)] = 189636, - [SMALL_STATE(3637)] = 189655, - [SMALL_STATE(3638)] = 189674, - [SMALL_STATE(3639)] = 189693, - [SMALL_STATE(3640)] = 189712, - [SMALL_STATE(3641)] = 189731, - [SMALL_STATE(3642)] = 189750, - [SMALL_STATE(3643)] = 189769, - [SMALL_STATE(3644)] = 189788, - [SMALL_STATE(3645)] = 189807, - [SMALL_STATE(3646)] = 189826, - [SMALL_STATE(3647)] = 189845, - [SMALL_STATE(3648)] = 189864, - [SMALL_STATE(3649)] = 189883, - [SMALL_STATE(3650)] = 189902, - [SMALL_STATE(3651)] = 189921, - [SMALL_STATE(3652)] = 189940, - [SMALL_STATE(3653)] = 189959, - [SMALL_STATE(3654)] = 189978, - [SMALL_STATE(3655)] = 189997, - [SMALL_STATE(3656)] = 190016, - [SMALL_STATE(3657)] = 190035, - [SMALL_STATE(3658)] = 190054, - [SMALL_STATE(3659)] = 190073, - [SMALL_STATE(3660)] = 190092, - [SMALL_STATE(3661)] = 190111, - [SMALL_STATE(3662)] = 190130, - [SMALL_STATE(3663)] = 190149, - [SMALL_STATE(3664)] = 190168, - [SMALL_STATE(3665)] = 190187, - [SMALL_STATE(3666)] = 190206, - [SMALL_STATE(3667)] = 190225, - [SMALL_STATE(3668)] = 190244, - [SMALL_STATE(3669)] = 190263, - [SMALL_STATE(3670)] = 190282, - [SMALL_STATE(3671)] = 190301, - [SMALL_STATE(3672)] = 190320, - [SMALL_STATE(3673)] = 190339, - [SMALL_STATE(3674)] = 190358, - [SMALL_STATE(3675)] = 190377, - [SMALL_STATE(3676)] = 190396, - [SMALL_STATE(3677)] = 190415, - [SMALL_STATE(3678)] = 190434, - [SMALL_STATE(3679)] = 190453, - [SMALL_STATE(3680)] = 190472, - [SMALL_STATE(3681)] = 190491, - [SMALL_STATE(3682)] = 190510, - [SMALL_STATE(3683)] = 190529, - [SMALL_STATE(3684)] = 190548, - [SMALL_STATE(3685)] = 190567, - [SMALL_STATE(3686)] = 190586, - [SMALL_STATE(3687)] = 190605, - [SMALL_STATE(3688)] = 190624, - [SMALL_STATE(3689)] = 190643, - [SMALL_STATE(3690)] = 190662, - [SMALL_STATE(3691)] = 190681, - [SMALL_STATE(3692)] = 190700, - [SMALL_STATE(3693)] = 190719, - [SMALL_STATE(3694)] = 190738, - [SMALL_STATE(3695)] = 190757, - [SMALL_STATE(3696)] = 190776, - [SMALL_STATE(3697)] = 190795, - [SMALL_STATE(3698)] = 190814, - [SMALL_STATE(3699)] = 190833, - [SMALL_STATE(3700)] = 190852, - [SMALL_STATE(3701)] = 190871, - [SMALL_STATE(3702)] = 190890, - [SMALL_STATE(3703)] = 190909, - [SMALL_STATE(3704)] = 190928, - [SMALL_STATE(3705)] = 190947, - [SMALL_STATE(3706)] = 190966, - [SMALL_STATE(3707)] = 190985, - [SMALL_STATE(3708)] = 191004, - [SMALL_STATE(3709)] = 191023, - [SMALL_STATE(3710)] = 191042, - [SMALL_STATE(3711)] = 191061, - [SMALL_STATE(3712)] = 191080, - [SMALL_STATE(3713)] = 191099, - [SMALL_STATE(3714)] = 191118, - [SMALL_STATE(3715)] = 191137, - [SMALL_STATE(3716)] = 191156, - [SMALL_STATE(3717)] = 191175, - [SMALL_STATE(3718)] = 191194, - [SMALL_STATE(3719)] = 191213, - [SMALL_STATE(3720)] = 191232, - [SMALL_STATE(3721)] = 191251, - [SMALL_STATE(3722)] = 191270, - [SMALL_STATE(3723)] = 191289, - [SMALL_STATE(3724)] = 191308, - [SMALL_STATE(3725)] = 191327, - [SMALL_STATE(3726)] = 191346, - [SMALL_STATE(3727)] = 191365, - [SMALL_STATE(3728)] = 191384, - [SMALL_STATE(3729)] = 191403, - [SMALL_STATE(3730)] = 191422, - [SMALL_STATE(3731)] = 191441, - [SMALL_STATE(3732)] = 191460, - [SMALL_STATE(3733)] = 191479, - [SMALL_STATE(3734)] = 191498, - [SMALL_STATE(3735)] = 191517, - [SMALL_STATE(3736)] = 191536, - [SMALL_STATE(3737)] = 191555, - [SMALL_STATE(3738)] = 191574, - [SMALL_STATE(3739)] = 191593, - [SMALL_STATE(3740)] = 191612, - [SMALL_STATE(3741)] = 191631, - [SMALL_STATE(3742)] = 191650, - [SMALL_STATE(3743)] = 191669, - [SMALL_STATE(3744)] = 191688, - [SMALL_STATE(3745)] = 191707, - [SMALL_STATE(3746)] = 191726, - [SMALL_STATE(3747)] = 191745, - [SMALL_STATE(3748)] = 191764, - [SMALL_STATE(3749)] = 191783, - [SMALL_STATE(3750)] = 191802, - [SMALL_STATE(3751)] = 191821, - [SMALL_STATE(3752)] = 191840, - [SMALL_STATE(3753)] = 191859, - [SMALL_STATE(3754)] = 191878, - [SMALL_STATE(3755)] = 191897, - [SMALL_STATE(3756)] = 191916, - [SMALL_STATE(3757)] = 191935, - [SMALL_STATE(3758)] = 191954, - [SMALL_STATE(3759)] = 191973, - [SMALL_STATE(3760)] = 191992, - [SMALL_STATE(3761)] = 192011, - [SMALL_STATE(3762)] = 192030, - [SMALL_STATE(3763)] = 192049, - [SMALL_STATE(3764)] = 192068, - [SMALL_STATE(3765)] = 192087, - [SMALL_STATE(3766)] = 192106, - [SMALL_STATE(3767)] = 192125, - [SMALL_STATE(3768)] = 192144, - [SMALL_STATE(3769)] = 192163, - [SMALL_STATE(3770)] = 192182, - [SMALL_STATE(3771)] = 192201, - [SMALL_STATE(3772)] = 192220, - [SMALL_STATE(3773)] = 192239, - [SMALL_STATE(3774)] = 192258, - [SMALL_STATE(3775)] = 192277, - [SMALL_STATE(3776)] = 192296, - [SMALL_STATE(3777)] = 192315, - [SMALL_STATE(3778)] = 192334, - [SMALL_STATE(3779)] = 192353, - [SMALL_STATE(3780)] = 192372, - [SMALL_STATE(3781)] = 192391, - [SMALL_STATE(3782)] = 192410, - [SMALL_STATE(3783)] = 192429, - [SMALL_STATE(3784)] = 192448, - [SMALL_STATE(3785)] = 192467, - [SMALL_STATE(3786)] = 192486, - [SMALL_STATE(3787)] = 192505, - [SMALL_STATE(3788)] = 192524, - [SMALL_STATE(3789)] = 192543, - [SMALL_STATE(3790)] = 192562, - [SMALL_STATE(3791)] = 192581, - [SMALL_STATE(3792)] = 192600, - [SMALL_STATE(3793)] = 192619, - [SMALL_STATE(3794)] = 192638, - [SMALL_STATE(3795)] = 192657, - [SMALL_STATE(3796)] = 192676, - [SMALL_STATE(3797)] = 192695, - [SMALL_STATE(3798)] = 192714, - [SMALL_STATE(3799)] = 192733, - [SMALL_STATE(3800)] = 192752, - [SMALL_STATE(3801)] = 192771, - [SMALL_STATE(3802)] = 192790, - [SMALL_STATE(3803)] = 192809, - [SMALL_STATE(3804)] = 192828, - [SMALL_STATE(3805)] = 192847, - [SMALL_STATE(3806)] = 192866, - [SMALL_STATE(3807)] = 192885, - [SMALL_STATE(3808)] = 192904, - [SMALL_STATE(3809)] = 192923, - [SMALL_STATE(3810)] = 192942, - [SMALL_STATE(3811)] = 192961, - [SMALL_STATE(3812)] = 192980, - [SMALL_STATE(3813)] = 192999, - [SMALL_STATE(3814)] = 193018, - [SMALL_STATE(3815)] = 193037, - [SMALL_STATE(3816)] = 193056, - [SMALL_STATE(3817)] = 193075, - [SMALL_STATE(3818)] = 193094, - [SMALL_STATE(3819)] = 193113, - [SMALL_STATE(3820)] = 193132, - [SMALL_STATE(3821)] = 193151, - [SMALL_STATE(3822)] = 193170, - [SMALL_STATE(3823)] = 193189, - [SMALL_STATE(3824)] = 193208, - [SMALL_STATE(3825)] = 193227, - [SMALL_STATE(3826)] = 193246, - [SMALL_STATE(3827)] = 193265, - [SMALL_STATE(3828)] = 193284, - [SMALL_STATE(3829)] = 193303, - [SMALL_STATE(3830)] = 193322, - [SMALL_STATE(3831)] = 193341, - [SMALL_STATE(3832)] = 193360, - [SMALL_STATE(3833)] = 193379, - [SMALL_STATE(3834)] = 193398, - [SMALL_STATE(3835)] = 193417, - [SMALL_STATE(3836)] = 193436, - [SMALL_STATE(3837)] = 193455, - [SMALL_STATE(3838)] = 193474, - [SMALL_STATE(3839)] = 193493, - [SMALL_STATE(3840)] = 193512, - [SMALL_STATE(3841)] = 193531, - [SMALL_STATE(3842)] = 193550, - [SMALL_STATE(3843)] = 193569, - [SMALL_STATE(3844)] = 193588, - [SMALL_STATE(3845)] = 193607, - [SMALL_STATE(3846)] = 193626, - [SMALL_STATE(3847)] = 193645, - [SMALL_STATE(3848)] = 193664, - [SMALL_STATE(3849)] = 193683, - [SMALL_STATE(3850)] = 193702, - [SMALL_STATE(3851)] = 193721, - [SMALL_STATE(3852)] = 193740, - [SMALL_STATE(3853)] = 193758, - [SMALL_STATE(3854)] = 193776, - [SMALL_STATE(3855)] = 193794, - [SMALL_STATE(3856)] = 193812, - [SMALL_STATE(3857)] = 193830, - [SMALL_STATE(3858)] = 193848, - [SMALL_STATE(3859)] = 193866, - [SMALL_STATE(3860)] = 193884, - [SMALL_STATE(3861)] = 193902, - [SMALL_STATE(3862)] = 193920, - [SMALL_STATE(3863)] = 193938, - [SMALL_STATE(3864)] = 193956, - [SMALL_STATE(3865)] = 193974, - [SMALL_STATE(3866)] = 193992, - [SMALL_STATE(3867)] = 194010, - [SMALL_STATE(3868)] = 194028, - [SMALL_STATE(3869)] = 194046, - [SMALL_STATE(3870)] = 194064, - [SMALL_STATE(3871)] = 194082, - [SMALL_STATE(3872)] = 194100, - [SMALL_STATE(3873)] = 194118, - [SMALL_STATE(3874)] = 194136, - [SMALL_STATE(3875)] = 194154, - [SMALL_STATE(3876)] = 194172, - [SMALL_STATE(3877)] = 194190, - [SMALL_STATE(3878)] = 194208, - [SMALL_STATE(3879)] = 194226, - [SMALL_STATE(3880)] = 194244, - [SMALL_STATE(3881)] = 194262, - [SMALL_STATE(3882)] = 194280, - [SMALL_STATE(3883)] = 194298, - [SMALL_STATE(3884)] = 194316, - [SMALL_STATE(3885)] = 194334, - [SMALL_STATE(3886)] = 194352, - [SMALL_STATE(3887)] = 194372, - [SMALL_STATE(3888)] = 194390, - [SMALL_STATE(3889)] = 194408, - [SMALL_STATE(3890)] = 194426, - [SMALL_STATE(3891)] = 194444, - [SMALL_STATE(3892)] = 194462, - [SMALL_STATE(3893)] = 194480, - [SMALL_STATE(3894)] = 194498, - [SMALL_STATE(3895)] = 194516, - [SMALL_STATE(3896)] = 194534, - [SMALL_STATE(3897)] = 194552, - [SMALL_STATE(3898)] = 194570, - [SMALL_STATE(3899)] = 194588, - [SMALL_STATE(3900)] = 194606, - [SMALL_STATE(3901)] = 194624, - [SMALL_STATE(3902)] = 194642, - [SMALL_STATE(3903)] = 194660, - [SMALL_STATE(3904)] = 194678, - [SMALL_STATE(3905)] = 194696, - [SMALL_STATE(3906)] = 194714, - [SMALL_STATE(3907)] = 194732, - [SMALL_STATE(3908)] = 194750, - [SMALL_STATE(3909)] = 194768, - [SMALL_STATE(3910)] = 194786, - [SMALL_STATE(3911)] = 194804, - [SMALL_STATE(3912)] = 194822, - [SMALL_STATE(3913)] = 194840, - [SMALL_STATE(3914)] = 194858, - [SMALL_STATE(3915)] = 194876, - [SMALL_STATE(3916)] = 194894, - [SMALL_STATE(3917)] = 194912, - [SMALL_STATE(3918)] = 194930, - [SMALL_STATE(3919)] = 194948, - [SMALL_STATE(3920)] = 194966, - [SMALL_STATE(3921)] = 194984, - [SMALL_STATE(3922)] = 195002, - [SMALL_STATE(3923)] = 195020, - [SMALL_STATE(3924)] = 195038, - [SMALL_STATE(3925)] = 195056, - [SMALL_STATE(3926)] = 195074, - [SMALL_STATE(3927)] = 195092, - [SMALL_STATE(3928)] = 195110, - [SMALL_STATE(3929)] = 195128, - [SMALL_STATE(3930)] = 195146, - [SMALL_STATE(3931)] = 195164, - [SMALL_STATE(3932)] = 195182, - [SMALL_STATE(3933)] = 195200, - [SMALL_STATE(3934)] = 195218, - [SMALL_STATE(3935)] = 195236, - [SMALL_STATE(3936)] = 195254, - [SMALL_STATE(3937)] = 195272, - [SMALL_STATE(3938)] = 195290, - [SMALL_STATE(3939)] = 195308, - [SMALL_STATE(3940)] = 195326, - [SMALL_STATE(3941)] = 195344, - [SMALL_STATE(3942)] = 195362, - [SMALL_STATE(3943)] = 195380, - [SMALL_STATE(3944)] = 195398, - [SMALL_STATE(3945)] = 195416, - [SMALL_STATE(3946)] = 195434, - [SMALL_STATE(3947)] = 195452, - [SMALL_STATE(3948)] = 195470, - [SMALL_STATE(3949)] = 195488, - [SMALL_STATE(3950)] = 195506, - [SMALL_STATE(3951)] = 195524, - [SMALL_STATE(3952)] = 195542, - [SMALL_STATE(3953)] = 195560, - [SMALL_STATE(3954)] = 195578, - [SMALL_STATE(3955)] = 195596, - [SMALL_STATE(3956)] = 195614, - [SMALL_STATE(3957)] = 195632, - [SMALL_STATE(3958)] = 195650, - [SMALL_STATE(3959)] = 195668, - [SMALL_STATE(3960)] = 195686, - [SMALL_STATE(3961)] = 195704, - [SMALL_STATE(3962)] = 195722, - [SMALL_STATE(3963)] = 195740, - [SMALL_STATE(3964)] = 195758, - [SMALL_STATE(3965)] = 195776, - [SMALL_STATE(3966)] = 195794, - [SMALL_STATE(3967)] = 195811, - [SMALL_STATE(3968)] = 195824, - [SMALL_STATE(3969)] = 195837, - [SMALL_STATE(3970)] = 195850, - [SMALL_STATE(3971)] = 195869, - [SMALL_STATE(3972)] = 195882, - [SMALL_STATE(3973)] = 195895, - [SMALL_STATE(3974)] = 195912, - [SMALL_STATE(3975)] = 195925, - [SMALL_STATE(3976)] = 195938, - [SMALL_STATE(3977)] = 195951, - [SMALL_STATE(3978)] = 195964, - [SMALL_STATE(3979)] = 195977, - [SMALL_STATE(3980)] = 195987, - [SMALL_STATE(3981)] = 195997, - [SMALL_STATE(3982)] = 196007, - [SMALL_STATE(3983)] = 196017, - [SMALL_STATE(3984)] = 196027, - [SMALL_STATE(3985)] = 196037, - [SMALL_STATE(3986)] = 196047, - [SMALL_STATE(3987)] = 196059, - [SMALL_STATE(3988)] = 196069, - [SMALL_STATE(3989)] = 196079, - [SMALL_STATE(3990)] = 196092, - [SMALL_STATE(3991)] = 196105, - [SMALL_STATE(3992)] = 196118, - [SMALL_STATE(3993)] = 196131, - [SMALL_STATE(3994)] = 196144, - [SMALL_STATE(3995)] = 196157, - [SMALL_STATE(3996)] = 196170, - [SMALL_STATE(3997)] = 196183, - [SMALL_STATE(3998)] = 196196, - [SMALL_STATE(3999)] = 196209, - [SMALL_STATE(4000)] = 196222, - [SMALL_STATE(4001)] = 196235, - [SMALL_STATE(4002)] = 196248, - [SMALL_STATE(4003)] = 196261, - [SMALL_STATE(4004)] = 196274, - [SMALL_STATE(4005)] = 196287, - [SMALL_STATE(4006)] = 196300, - [SMALL_STATE(4007)] = 196313, - [SMALL_STATE(4008)] = 196326, - [SMALL_STATE(4009)] = 196339, - [SMALL_STATE(4010)] = 196352, - [SMALL_STATE(4011)] = 196365, - [SMALL_STATE(4012)] = 196378, - [SMALL_STATE(4013)] = 196391, - [SMALL_STATE(4014)] = 196404, - [SMALL_STATE(4015)] = 196417, - [SMALL_STATE(4016)] = 196430, - [SMALL_STATE(4017)] = 196443, - [SMALL_STATE(4018)] = 196456, - [SMALL_STATE(4019)] = 196469, - [SMALL_STATE(4020)] = 196482, - [SMALL_STATE(4021)] = 196495, - [SMALL_STATE(4022)] = 196508, - [SMALL_STATE(4023)] = 196521, - [SMALL_STATE(4024)] = 196534, - [SMALL_STATE(4025)] = 196547, - [SMALL_STATE(4026)] = 196560, - [SMALL_STATE(4027)] = 196573, - [SMALL_STATE(4028)] = 196586, - [SMALL_STATE(4029)] = 196599, - [SMALL_STATE(4030)] = 196612, - [SMALL_STATE(4031)] = 196625, - [SMALL_STATE(4032)] = 196638, - [SMALL_STATE(4033)] = 196651, - [SMALL_STATE(4034)] = 196664, - [SMALL_STATE(4035)] = 196677, - [SMALL_STATE(4036)] = 196690, - [SMALL_STATE(4037)] = 196703, - [SMALL_STATE(4038)] = 196716, - [SMALL_STATE(4039)] = 196729, - [SMALL_STATE(4040)] = 196742, - [SMALL_STATE(4041)] = 196755, - [SMALL_STATE(4042)] = 196768, - [SMALL_STATE(4043)] = 196781, - [SMALL_STATE(4044)] = 196794, - [SMALL_STATE(4045)] = 196807, - [SMALL_STATE(4046)] = 196820, - [SMALL_STATE(4047)] = 196833, - [SMALL_STATE(4048)] = 196846, - [SMALL_STATE(4049)] = 196859, - [SMALL_STATE(4050)] = 196872, - [SMALL_STATE(4051)] = 196885, - [SMALL_STATE(4052)] = 196898, - [SMALL_STATE(4053)] = 196911, - [SMALL_STATE(4054)] = 196924, - [SMALL_STATE(4055)] = 196937, - [SMALL_STATE(4056)] = 196950, - [SMALL_STATE(4057)] = 196963, - [SMALL_STATE(4058)] = 196976, - [SMALL_STATE(4059)] = 196989, - [SMALL_STATE(4060)] = 197002, - [SMALL_STATE(4061)] = 197015, - [SMALL_STATE(4062)] = 197028, - [SMALL_STATE(4063)] = 197041, - [SMALL_STATE(4064)] = 197054, - [SMALL_STATE(4065)] = 197064, - [SMALL_STATE(4066)] = 197074, - [SMALL_STATE(4067)] = 197084, - [SMALL_STATE(4068)] = 197094, - [SMALL_STATE(4069)] = 197104, - [SMALL_STATE(4070)] = 197114, - [SMALL_STATE(4071)] = 197124, - [SMALL_STATE(4072)] = 197134, - [SMALL_STATE(4073)] = 197144, - [SMALL_STATE(4074)] = 197154, - [SMALL_STATE(4075)] = 197164, - [SMALL_STATE(4076)] = 197174, - [SMALL_STATE(4077)] = 197184, - [SMALL_STATE(4078)] = 197194, - [SMALL_STATE(4079)] = 197204, - [SMALL_STATE(4080)] = 197214, - [SMALL_STATE(4081)] = 197224, - [SMALL_STATE(4082)] = 197234, - [SMALL_STATE(4083)] = 197244, - [SMALL_STATE(4084)] = 197254, - [SMALL_STATE(4085)] = 197264, - [SMALL_STATE(4086)] = 197274, - [SMALL_STATE(4087)] = 197281, - [SMALL_STATE(4088)] = 197288, - [SMALL_STATE(4089)] = 197295, - [SMALL_STATE(4090)] = 197302, - [SMALL_STATE(4091)] = 197309, - [SMALL_STATE(4092)] = 197316, - [SMALL_STATE(4093)] = 197323, - [SMALL_STATE(4094)] = 197330, - [SMALL_STATE(4095)] = 197337, - [SMALL_STATE(4096)] = 197344, - [SMALL_STATE(4097)] = 197351, - [SMALL_STATE(4098)] = 197358, - [SMALL_STATE(4099)] = 197365, - [SMALL_STATE(4100)] = 197372, - [SMALL_STATE(4101)] = 197379, - [SMALL_STATE(4102)] = 197386, - [SMALL_STATE(4103)] = 197393, - [SMALL_STATE(4104)] = 197400, - [SMALL_STATE(4105)] = 197407, - [SMALL_STATE(4106)] = 197414, - [SMALL_STATE(4107)] = 197421, - [SMALL_STATE(4108)] = 197428, - [SMALL_STATE(4109)] = 197435, - [SMALL_STATE(4110)] = 197442, - [SMALL_STATE(4111)] = 197449, - [SMALL_STATE(4112)] = 197456, - [SMALL_STATE(4113)] = 197463, - [SMALL_STATE(4114)] = 197470, - [SMALL_STATE(4115)] = 197477, - [SMALL_STATE(4116)] = 197484, - [SMALL_STATE(4117)] = 197491, - [SMALL_STATE(4118)] = 197498, - [SMALL_STATE(4119)] = 197505, - [SMALL_STATE(4120)] = 197512, - [SMALL_STATE(4121)] = 197519, - [SMALL_STATE(4122)] = 197526, - [SMALL_STATE(4123)] = 197533, - [SMALL_STATE(4124)] = 197540, - [SMALL_STATE(4125)] = 197547, - [SMALL_STATE(4126)] = 197554, - [SMALL_STATE(4127)] = 197561, - [SMALL_STATE(4128)] = 197568, - [SMALL_STATE(4129)] = 197575, - [SMALL_STATE(4130)] = 197582, - [SMALL_STATE(4131)] = 197589, + [SMALL_STATE(1487)] = 112898, + [SMALL_STATE(1488)] = 112954, + [SMALL_STATE(1489)] = 113008, + [SMALL_STATE(1490)] = 113066, + [SMALL_STATE(1491)] = 113124, + [SMALL_STATE(1492)] = 113182, + [SMALL_STATE(1493)] = 113235, + [SMALL_STATE(1494)] = 113288, + [SMALL_STATE(1495)] = 113341, + [SMALL_STATE(1496)] = 113394, + [SMALL_STATE(1497)] = 113447, + [SMALL_STATE(1498)] = 113500, + [SMALL_STATE(1499)] = 113553, + [SMALL_STATE(1500)] = 113606, + [SMALL_STATE(1501)] = 113659, + [SMALL_STATE(1502)] = 113712, + [SMALL_STATE(1503)] = 113765, + [SMALL_STATE(1504)] = 113818, + [SMALL_STATE(1505)] = 113871, + [SMALL_STATE(1506)] = 113924, + [SMALL_STATE(1507)] = 113977, + [SMALL_STATE(1508)] = 114030, + [SMALL_STATE(1509)] = 114083, + [SMALL_STATE(1510)] = 114136, + [SMALL_STATE(1511)] = 114189, + [SMALL_STATE(1512)] = 114242, + [SMALL_STATE(1513)] = 114295, + [SMALL_STATE(1514)] = 114348, + [SMALL_STATE(1515)] = 114401, + [SMALL_STATE(1516)] = 114454, + [SMALL_STATE(1517)] = 114507, + [SMALL_STATE(1518)] = 114560, + [SMALL_STATE(1519)] = 114613, + [SMALL_STATE(1520)] = 114666, + [SMALL_STATE(1521)] = 114719, + [SMALL_STATE(1522)] = 114772, + [SMALL_STATE(1523)] = 114825, + [SMALL_STATE(1524)] = 114878, + [SMALL_STATE(1525)] = 114931, + [SMALL_STATE(1526)] = 114984, + [SMALL_STATE(1527)] = 115037, + [SMALL_STATE(1528)] = 115090, + [SMALL_STATE(1529)] = 115143, + [SMALL_STATE(1530)] = 115196, + [SMALL_STATE(1531)] = 115249, + [SMALL_STATE(1532)] = 115302, + [SMALL_STATE(1533)] = 115355, + [SMALL_STATE(1534)] = 115408, + [SMALL_STATE(1535)] = 115461, + [SMALL_STATE(1536)] = 115514, + [SMALL_STATE(1537)] = 115567, + [SMALL_STATE(1538)] = 115620, + [SMALL_STATE(1539)] = 115673, + [SMALL_STATE(1540)] = 115726, + [SMALL_STATE(1541)] = 115779, + [SMALL_STATE(1542)] = 115832, + [SMALL_STATE(1543)] = 115885, + [SMALL_STATE(1544)] = 115938, + [SMALL_STATE(1545)] = 115991, + [SMALL_STATE(1546)] = 116044, + [SMALL_STATE(1547)] = 116097, + [SMALL_STATE(1548)] = 116150, + [SMALL_STATE(1549)] = 116203, + [SMALL_STATE(1550)] = 116256, + [SMALL_STATE(1551)] = 116309, + [SMALL_STATE(1552)] = 116362, + [SMALL_STATE(1553)] = 116415, + [SMALL_STATE(1554)] = 116468, + [SMALL_STATE(1555)] = 116521, + [SMALL_STATE(1556)] = 116574, + [SMALL_STATE(1557)] = 116627, + [SMALL_STATE(1558)] = 116680, + [SMALL_STATE(1559)] = 116733, + [SMALL_STATE(1560)] = 116786, + [SMALL_STATE(1561)] = 116839, + [SMALL_STATE(1562)] = 116892, + [SMALL_STATE(1563)] = 116945, + [SMALL_STATE(1564)] = 116998, + [SMALL_STATE(1565)] = 117051, + [SMALL_STATE(1566)] = 117104, + [SMALL_STATE(1567)] = 117157, + [SMALL_STATE(1568)] = 117210, + [SMALL_STATE(1569)] = 117263, + [SMALL_STATE(1570)] = 117316, + [SMALL_STATE(1571)] = 117369, + [SMALL_STATE(1572)] = 117422, + [SMALL_STATE(1573)] = 117475, + [SMALL_STATE(1574)] = 117528, + [SMALL_STATE(1575)] = 117581, + [SMALL_STATE(1576)] = 117634, + [SMALL_STATE(1577)] = 117687, + [SMALL_STATE(1578)] = 117740, + [SMALL_STATE(1579)] = 117793, + [SMALL_STATE(1580)] = 117846, + [SMALL_STATE(1581)] = 117899, + [SMALL_STATE(1582)] = 117952, + [SMALL_STATE(1583)] = 118005, + [SMALL_STATE(1584)] = 118058, + [SMALL_STATE(1585)] = 118111, + [SMALL_STATE(1586)] = 118164, + [SMALL_STATE(1587)] = 118217, + [SMALL_STATE(1588)] = 118270, + [SMALL_STATE(1589)] = 118323, + [SMALL_STATE(1590)] = 118376, + [SMALL_STATE(1591)] = 118429, + [SMALL_STATE(1592)] = 118482, + [SMALL_STATE(1593)] = 118535, + [SMALL_STATE(1594)] = 118588, + [SMALL_STATE(1595)] = 118641, + [SMALL_STATE(1596)] = 118694, + [SMALL_STATE(1597)] = 118747, + [SMALL_STATE(1598)] = 118800, + [SMALL_STATE(1599)] = 118853, + [SMALL_STATE(1600)] = 118906, + [SMALL_STATE(1601)] = 118959, + [SMALL_STATE(1602)] = 119012, + [SMALL_STATE(1603)] = 119065, + [SMALL_STATE(1604)] = 119118, + [SMALL_STATE(1605)] = 119171, + [SMALL_STATE(1606)] = 119224, + [SMALL_STATE(1607)] = 119277, + [SMALL_STATE(1608)] = 119330, + [SMALL_STATE(1609)] = 119383, + [SMALL_STATE(1610)] = 119436, + [SMALL_STATE(1611)] = 119489, + [SMALL_STATE(1612)] = 119542, + [SMALL_STATE(1613)] = 119595, + [SMALL_STATE(1614)] = 119656, + [SMALL_STATE(1615)] = 119717, + [SMALL_STATE(1616)] = 119778, + [SMALL_STATE(1617)] = 119839, + [SMALL_STATE(1618)] = 119900, + [SMALL_STATE(1619)] = 119961, + [SMALL_STATE(1620)] = 120022, + [SMALL_STATE(1621)] = 120083, + [SMALL_STATE(1622)] = 120144, + [SMALL_STATE(1623)] = 120205, + [SMALL_STATE(1624)] = 120255, + [SMALL_STATE(1625)] = 120302, + [SMALL_STATE(1626)] = 120349, + [SMALL_STATE(1627)] = 120396, + [SMALL_STATE(1628)] = 120443, + [SMALL_STATE(1629)] = 120490, + [SMALL_STATE(1630)] = 120537, + [SMALL_STATE(1631)] = 120584, + [SMALL_STATE(1632)] = 120631, + [SMALL_STATE(1633)] = 120678, + [SMALL_STATE(1634)] = 120725, + [SMALL_STATE(1635)] = 120772, + [SMALL_STATE(1636)] = 120819, + [SMALL_STATE(1637)] = 120866, + [SMALL_STATE(1638)] = 120913, + [SMALL_STATE(1639)] = 120960, + [SMALL_STATE(1640)] = 121007, + [SMALL_STATE(1641)] = 121054, + [SMALL_STATE(1642)] = 121101, + [SMALL_STATE(1643)] = 121148, + [SMALL_STATE(1644)] = 121195, + [SMALL_STATE(1645)] = 121242, + [SMALL_STATE(1646)] = 121289, + [SMALL_STATE(1647)] = 121336, + [SMALL_STATE(1648)] = 121383, + [SMALL_STATE(1649)] = 121430, + [SMALL_STATE(1650)] = 121477, + [SMALL_STATE(1651)] = 121524, + [SMALL_STATE(1652)] = 121571, + [SMALL_STATE(1653)] = 121618, + [SMALL_STATE(1654)] = 121665, + [SMALL_STATE(1655)] = 121712, + [SMALL_STATE(1656)] = 121759, + [SMALL_STATE(1657)] = 121806, + [SMALL_STATE(1658)] = 121853, + [SMALL_STATE(1659)] = 121900, + [SMALL_STATE(1660)] = 121947, + [SMALL_STATE(1661)] = 121994, + [SMALL_STATE(1662)] = 122041, + [SMALL_STATE(1663)] = 122088, + [SMALL_STATE(1664)] = 122135, + [SMALL_STATE(1665)] = 122182, + [SMALL_STATE(1666)] = 122229, + [SMALL_STATE(1667)] = 122276, + [SMALL_STATE(1668)] = 122323, + [SMALL_STATE(1669)] = 122370, + [SMALL_STATE(1670)] = 122417, + [SMALL_STATE(1671)] = 122464, + [SMALL_STATE(1672)] = 122515, + [SMALL_STATE(1673)] = 122566, + [SMALL_STATE(1674)] = 122613, + [SMALL_STATE(1675)] = 122660, + [SMALL_STATE(1676)] = 122707, + [SMALL_STATE(1677)] = 122754, + [SMALL_STATE(1678)] = 122801, + [SMALL_STATE(1679)] = 122848, + [SMALL_STATE(1680)] = 122899, + [SMALL_STATE(1681)] = 122946, + [SMALL_STATE(1682)] = 122993, + [SMALL_STATE(1683)] = 123040, + [SMALL_STATE(1684)] = 123087, + [SMALL_STATE(1685)] = 123134, + [SMALL_STATE(1686)] = 123181, + [SMALL_STATE(1687)] = 123228, + [SMALL_STATE(1688)] = 123275, + [SMALL_STATE(1689)] = 123322, + [SMALL_STATE(1690)] = 123369, + [SMALL_STATE(1691)] = 123416, + [SMALL_STATE(1692)] = 123463, + [SMALL_STATE(1693)] = 123510, + [SMALL_STATE(1694)] = 123557, + [SMALL_STATE(1695)] = 123604, + [SMALL_STATE(1696)] = 123651, + [SMALL_STATE(1697)] = 123698, + [SMALL_STATE(1698)] = 123745, + [SMALL_STATE(1699)] = 123792, + [SMALL_STATE(1700)] = 123839, + [SMALL_STATE(1701)] = 123886, + [SMALL_STATE(1702)] = 123933, + [SMALL_STATE(1703)] = 123980, + [SMALL_STATE(1704)] = 124027, + [SMALL_STATE(1705)] = 124074, + [SMALL_STATE(1706)] = 124121, + [SMALL_STATE(1707)] = 124168, + [SMALL_STATE(1708)] = 124215, + [SMALL_STATE(1709)] = 124262, + [SMALL_STATE(1710)] = 124309, + [SMALL_STATE(1711)] = 124356, + [SMALL_STATE(1712)] = 124403, + [SMALL_STATE(1713)] = 124450, + [SMALL_STATE(1714)] = 124497, + [SMALL_STATE(1715)] = 124544, + [SMALL_STATE(1716)] = 124591, + [SMALL_STATE(1717)] = 124638, + [SMALL_STATE(1718)] = 124685, + [SMALL_STATE(1719)] = 124732, + [SMALL_STATE(1720)] = 124779, + [SMALL_STATE(1721)] = 124826, + [SMALL_STATE(1722)] = 124873, + [SMALL_STATE(1723)] = 124920, + [SMALL_STATE(1724)] = 124967, + [SMALL_STATE(1725)] = 125014, + [SMALL_STATE(1726)] = 125061, + [SMALL_STATE(1727)] = 125108, + [SMALL_STATE(1728)] = 125155, + [SMALL_STATE(1729)] = 125202, + [SMALL_STATE(1730)] = 125249, + [SMALL_STATE(1731)] = 125296, + [SMALL_STATE(1732)] = 125343, + [SMALL_STATE(1733)] = 125390, + [SMALL_STATE(1734)] = 125437, + [SMALL_STATE(1735)] = 125484, + [SMALL_STATE(1736)] = 125531, + [SMALL_STATE(1737)] = 125578, + [SMALL_STATE(1738)] = 125625, + [SMALL_STATE(1739)] = 125672, + [SMALL_STATE(1740)] = 125719, + [SMALL_STATE(1741)] = 125766, + [SMALL_STATE(1742)] = 125813, + [SMALL_STATE(1743)] = 125860, + [SMALL_STATE(1744)] = 125907, + [SMALL_STATE(1745)] = 125954, + [SMALL_STATE(1746)] = 126001, + [SMALL_STATE(1747)] = 126073, + [SMALL_STATE(1748)] = 126145, + [SMALL_STATE(1749)] = 126217, + [SMALL_STATE(1750)] = 126289, + [SMALL_STATE(1751)] = 126361, + [SMALL_STATE(1752)] = 126433, + [SMALL_STATE(1753)] = 126505, + [SMALL_STATE(1754)] = 126577, + [SMALL_STATE(1755)] = 126649, + [SMALL_STATE(1756)] = 126721, + [SMALL_STATE(1757)] = 126793, + [SMALL_STATE(1758)] = 126865, + [SMALL_STATE(1759)] = 126937, + [SMALL_STATE(1760)] = 127009, + [SMALL_STATE(1761)] = 127081, + [SMALL_STATE(1762)] = 127153, + [SMALL_STATE(1763)] = 127225, + [SMALL_STATE(1764)] = 127297, + [SMALL_STATE(1765)] = 127369, + [SMALL_STATE(1766)] = 127441, + [SMALL_STATE(1767)] = 127510, + [SMALL_STATE(1768)] = 127554, + [SMALL_STATE(1769)] = 127598, + [SMALL_STATE(1770)] = 127642, + [SMALL_STATE(1771)] = 127686, + [SMALL_STATE(1772)] = 127730, + [SMALL_STATE(1773)] = 127774, + [SMALL_STATE(1774)] = 127818, + [SMALL_STATE(1775)] = 127866, + [SMALL_STATE(1776)] = 127914, + [SMALL_STATE(1777)] = 127958, + [SMALL_STATE(1778)] = 128006, + [SMALL_STATE(1779)] = 128050, + [SMALL_STATE(1780)] = 128094, + [SMALL_STATE(1781)] = 128138, + [SMALL_STATE(1782)] = 128182, + [SMALL_STATE(1783)] = 128226, + [SMALL_STATE(1784)] = 128270, + [SMALL_STATE(1785)] = 128314, + [SMALL_STATE(1786)] = 128358, + [SMALL_STATE(1787)] = 128402, + [SMALL_STATE(1788)] = 128446, + [SMALL_STATE(1789)] = 128490, + [SMALL_STATE(1790)] = 128534, + [SMALL_STATE(1791)] = 128578, + [SMALL_STATE(1792)] = 128622, + [SMALL_STATE(1793)] = 128666, + [SMALL_STATE(1794)] = 128710, + [SMALL_STATE(1795)] = 128754, + [SMALL_STATE(1796)] = 128798, + [SMALL_STATE(1797)] = 128842, + [SMALL_STATE(1798)] = 128886, + [SMALL_STATE(1799)] = 128930, + [SMALL_STATE(1800)] = 128974, + [SMALL_STATE(1801)] = 129018, + [SMALL_STATE(1802)] = 129062, + [SMALL_STATE(1803)] = 129106, + [SMALL_STATE(1804)] = 129150, + [SMALL_STATE(1805)] = 129194, + [SMALL_STATE(1806)] = 129238, + [SMALL_STATE(1807)] = 129282, + [SMALL_STATE(1808)] = 129326, + [SMALL_STATE(1809)] = 129370, + [SMALL_STATE(1810)] = 129414, + [SMALL_STATE(1811)] = 129458, + [SMALL_STATE(1812)] = 129502, + [SMALL_STATE(1813)] = 129546, + [SMALL_STATE(1814)] = 129590, + [SMALL_STATE(1815)] = 129634, + [SMALL_STATE(1816)] = 129678, + [SMALL_STATE(1817)] = 129722, + [SMALL_STATE(1818)] = 129766, + [SMALL_STATE(1819)] = 129810, + [SMALL_STATE(1820)] = 129854, + [SMALL_STATE(1821)] = 129898, + [SMALL_STATE(1822)] = 129942, + [SMALL_STATE(1823)] = 129986, + [SMALL_STATE(1824)] = 130030, + [SMALL_STATE(1825)] = 130074, + [SMALL_STATE(1826)] = 130118, + [SMALL_STATE(1827)] = 130162, + [SMALL_STATE(1828)] = 130206, + [SMALL_STATE(1829)] = 130250, + [SMALL_STATE(1830)] = 130294, + [SMALL_STATE(1831)] = 130338, + [SMALL_STATE(1832)] = 130382, + [SMALL_STATE(1833)] = 130426, + [SMALL_STATE(1834)] = 130470, + [SMALL_STATE(1835)] = 130514, + [SMALL_STATE(1836)] = 130558, + [SMALL_STATE(1837)] = 130602, + [SMALL_STATE(1838)] = 130646, + [SMALL_STATE(1839)] = 130690, + [SMALL_STATE(1840)] = 130734, + [SMALL_STATE(1841)] = 130778, + [SMALL_STATE(1842)] = 130822, + [SMALL_STATE(1843)] = 130866, + [SMALL_STATE(1844)] = 130910, + [SMALL_STATE(1845)] = 130954, + [SMALL_STATE(1846)] = 130998, + [SMALL_STATE(1847)] = 131042, + [SMALL_STATE(1848)] = 131086, + [SMALL_STATE(1849)] = 131130, + [SMALL_STATE(1850)] = 131174, + [SMALL_STATE(1851)] = 131218, + [SMALL_STATE(1852)] = 131262, + [SMALL_STATE(1853)] = 131306, + [SMALL_STATE(1854)] = 131350, + [SMALL_STATE(1855)] = 131394, + [SMALL_STATE(1856)] = 131438, + [SMALL_STATE(1857)] = 131482, + [SMALL_STATE(1858)] = 131526, + [SMALL_STATE(1859)] = 131570, + [SMALL_STATE(1860)] = 131614, + [SMALL_STATE(1861)] = 131658, + [SMALL_STATE(1862)] = 131702, + [SMALL_STATE(1863)] = 131746, + [SMALL_STATE(1864)] = 131790, + [SMALL_STATE(1865)] = 131834, + [SMALL_STATE(1866)] = 131878, + [SMALL_STATE(1867)] = 131922, + [SMALL_STATE(1868)] = 131966, + [SMALL_STATE(1869)] = 132010, + [SMALL_STATE(1870)] = 132054, + [SMALL_STATE(1871)] = 132098, + [SMALL_STATE(1872)] = 132142, + [SMALL_STATE(1873)] = 132186, + [SMALL_STATE(1874)] = 132230, + [SMALL_STATE(1875)] = 132274, + [SMALL_STATE(1876)] = 132318, + [SMALL_STATE(1877)] = 132362, + [SMALL_STATE(1878)] = 132406, + [SMALL_STATE(1879)] = 132450, + [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)] = 132892, + [SMALL_STATE(1890)] = 132936, + [SMALL_STATE(1891)] = 132979, + [SMALL_STATE(1892)] = 133022, + [SMALL_STATE(1893)] = 133065, + [SMALL_STATE(1894)] = 133108, + [SMALL_STATE(1895)] = 133151, + [SMALL_STATE(1896)] = 133194, + [SMALL_STATE(1897)] = 133237, + [SMALL_STATE(1898)] = 133280, + [SMALL_STATE(1899)] = 133323, + [SMALL_STATE(1900)] = 133366, + [SMALL_STATE(1901)] = 133409, + [SMALL_STATE(1902)] = 133452, + [SMALL_STATE(1903)] = 133495, + [SMALL_STATE(1904)] = 133538, + [SMALL_STATE(1905)] = 133581, + [SMALL_STATE(1906)] = 133624, + [SMALL_STATE(1907)] = 133667, + [SMALL_STATE(1908)] = 133710, + [SMALL_STATE(1909)] = 133759, + [SMALL_STATE(1910)] = 133802, + [SMALL_STATE(1911)] = 133845, + [SMALL_STATE(1912)] = 133888, + [SMALL_STATE(1913)] = 133931, + [SMALL_STATE(1914)] = 133974, + [SMALL_STATE(1915)] = 134017, + [SMALL_STATE(1916)] = 134060, + [SMALL_STATE(1917)] = 134103, + [SMALL_STATE(1918)] = 134146, + [SMALL_STATE(1919)] = 134189, + [SMALL_STATE(1920)] = 134232, + [SMALL_STATE(1921)] = 134275, + [SMALL_STATE(1922)] = 134318, + [SMALL_STATE(1923)] = 134361, + [SMALL_STATE(1924)] = 134404, + [SMALL_STATE(1925)] = 134447, + [SMALL_STATE(1926)] = 134490, + [SMALL_STATE(1927)] = 134533, + [SMALL_STATE(1928)] = 134576, + [SMALL_STATE(1929)] = 134619, + [SMALL_STATE(1930)] = 134662, + [SMALL_STATE(1931)] = 134705, + [SMALL_STATE(1932)] = 134748, + [SMALL_STATE(1933)] = 134791, + [SMALL_STATE(1934)] = 134834, + [SMALL_STATE(1935)] = 134877, + [SMALL_STATE(1936)] = 134920, + [SMALL_STATE(1937)] = 134963, + [SMALL_STATE(1938)] = 135006, + [SMALL_STATE(1939)] = 135049, + [SMALL_STATE(1940)] = 135092, + [SMALL_STATE(1941)] = 135135, + [SMALL_STATE(1942)] = 135178, + [SMALL_STATE(1943)] = 135221, + [SMALL_STATE(1944)] = 135264, + [SMALL_STATE(1945)] = 135307, + [SMALL_STATE(1946)] = 135350, + [SMALL_STATE(1947)] = 135393, + [SMALL_STATE(1948)] = 135436, + [SMALL_STATE(1949)] = 135479, + [SMALL_STATE(1950)] = 135522, + [SMALL_STATE(1951)] = 135565, + [SMALL_STATE(1952)] = 135608, + [SMALL_STATE(1953)] = 135651, + [SMALL_STATE(1954)] = 135694, + [SMALL_STATE(1955)] = 135737, + [SMALL_STATE(1956)] = 135780, + [SMALL_STATE(1957)] = 135823, + [SMALL_STATE(1958)] = 135866, + [SMALL_STATE(1959)] = 135909, + [SMALL_STATE(1960)] = 135952, + [SMALL_STATE(1961)] = 135995, + [SMALL_STATE(1962)] = 136038, + [SMALL_STATE(1963)] = 136081, + [SMALL_STATE(1964)] = 136124, + [SMALL_STATE(1965)] = 136167, + [SMALL_STATE(1966)] = 136210, + [SMALL_STATE(1967)] = 136253, + [SMALL_STATE(1968)] = 136296, + [SMALL_STATE(1969)] = 136339, + [SMALL_STATE(1970)] = 136382, + [SMALL_STATE(1971)] = 136425, + [SMALL_STATE(1972)] = 136468, + [SMALL_STATE(1973)] = 136511, + [SMALL_STATE(1974)] = 136554, + [SMALL_STATE(1975)] = 136597, + [SMALL_STATE(1976)] = 136640, + [SMALL_STATE(1977)] = 136683, + [SMALL_STATE(1978)] = 136726, + [SMALL_STATE(1979)] = 136769, + [SMALL_STATE(1980)] = 136812, + [SMALL_STATE(1981)] = 136855, + [SMALL_STATE(1982)] = 136898, + [SMALL_STATE(1983)] = 136941, + [SMALL_STATE(1984)] = 136984, + [SMALL_STATE(1985)] = 137026, + [SMALL_STATE(1986)] = 137067, + [SMALL_STATE(1987)] = 137112, + [SMALL_STATE(1988)] = 137153, + [SMALL_STATE(1989)] = 137194, + [SMALL_STATE(1990)] = 137235, + [SMALL_STATE(1991)] = 137276, + [SMALL_STATE(1992)] = 137317, + [SMALL_STATE(1993)] = 137358, + [SMALL_STATE(1994)] = 137403, + [SMALL_STATE(1995)] = 137444, + [SMALL_STATE(1996)] = 137485, + [SMALL_STATE(1997)] = 137526, + [SMALL_STATE(1998)] = 137567, + [SMALL_STATE(1999)] = 137608, + [SMALL_STATE(2000)] = 137649, + [SMALL_STATE(2001)] = 137690, + [SMALL_STATE(2002)] = 137731, + [SMALL_STATE(2003)] = 137772, + [SMALL_STATE(2004)] = 137813, + [SMALL_STATE(2005)] = 137854, + [SMALL_STATE(2006)] = 137895, + [SMALL_STATE(2007)] = 137936, + [SMALL_STATE(2008)] = 137977, + [SMALL_STATE(2009)] = 138018, + [SMALL_STATE(2010)] = 138059, + [SMALL_STATE(2011)] = 138104, + [SMALL_STATE(2012)] = 138145, + [SMALL_STATE(2013)] = 138186, + [SMALL_STATE(2014)] = 138227, + [SMALL_STATE(2015)] = 138272, + [SMALL_STATE(2016)] = 138313, + [SMALL_STATE(2017)] = 138354, + [SMALL_STATE(2018)] = 138399, + [SMALL_STATE(2019)] = 138444, + [SMALL_STATE(2020)] = 138489, + [SMALL_STATE(2021)] = 138534, + [SMALL_STATE(2022)] = 138575, + [SMALL_STATE(2023)] = 138620, + [SMALL_STATE(2024)] = 138665, + [SMALL_STATE(2025)] = 138706, + [SMALL_STATE(2026)] = 138747, + [SMALL_STATE(2027)] = 138788, + [SMALL_STATE(2028)] = 138829, + [SMALL_STATE(2029)] = 138870, + [SMALL_STATE(2030)] = 138911, + [SMALL_STATE(2031)] = 138952, + [SMALL_STATE(2032)] = 138993, + [SMALL_STATE(2033)] = 139034, + [SMALL_STATE(2034)] = 139075, + [SMALL_STATE(2035)] = 139116, + [SMALL_STATE(2036)] = 139157, + [SMALL_STATE(2037)] = 139198, + [SMALL_STATE(2038)] = 139239, + [SMALL_STATE(2039)] = 139298, + [SMALL_STATE(2040)] = 139338, + [SMALL_STATE(2041)] = 139378, + [SMALL_STATE(2042)] = 139418, + [SMALL_STATE(2043)] = 139458, + [SMALL_STATE(2044)] = 139498, + [SMALL_STATE(2045)] = 139548, + [SMALL_STATE(2046)] = 139588, + [SMALL_STATE(2047)] = 139628, + [SMALL_STATE(2048)] = 139678, + [SMALL_STATE(2049)] = 139718, + [SMALL_STATE(2050)] = 139761, + [SMALL_STATE(2051)] = 139804, + [SMALL_STATE(2052)] = 139847, + [SMALL_STATE(2053)] = 139890, + [SMALL_STATE(2054)] = 139933, + [SMALL_STATE(2055)] = 139976, + [SMALL_STATE(2056)] = 140019, + [SMALL_STATE(2057)] = 140062, + [SMALL_STATE(2058)] = 140105, + [SMALL_STATE(2059)] = 140148, + [SMALL_STATE(2060)] = 140191, + [SMALL_STATE(2061)] = 140234, + [SMALL_STATE(2062)] = 140277, + [SMALL_STATE(2063)] = 140320, + [SMALL_STATE(2064)] = 140363, + [SMALL_STATE(2065)] = 140406, + [SMALL_STATE(2066)] = 140449, + [SMALL_STATE(2067)] = 140492, + [SMALL_STATE(2068)] = 140535, + [SMALL_STATE(2069)] = 140578, + [SMALL_STATE(2070)] = 140621, + [SMALL_STATE(2071)] = 140664, + [SMALL_STATE(2072)] = 140707, + [SMALL_STATE(2073)] = 140750, + [SMALL_STATE(2074)] = 140793, + [SMALL_STATE(2075)] = 140836, + [SMALL_STATE(2076)] = 140879, + [SMALL_STATE(2077)] = 140922, + [SMALL_STATE(2078)] = 140965, + [SMALL_STATE(2079)] = 141008, + [SMALL_STATE(2080)] = 141051, + [SMALL_STATE(2081)] = 141094, + [SMALL_STATE(2082)] = 141137, + [SMALL_STATE(2083)] = 141180, + [SMALL_STATE(2084)] = 141223, + [SMALL_STATE(2085)] = 141266, + [SMALL_STATE(2086)] = 141309, + [SMALL_STATE(2087)] = 141352, + [SMALL_STATE(2088)] = 141395, + [SMALL_STATE(2089)] = 141438, + [SMALL_STATE(2090)] = 141481, + [SMALL_STATE(2091)] = 141524, + [SMALL_STATE(2092)] = 141567, + [SMALL_STATE(2093)] = 141610, + [SMALL_STATE(2094)] = 141653, + [SMALL_STATE(2095)] = 141696, + [SMALL_STATE(2096)] = 141739, + [SMALL_STATE(2097)] = 141782, + [SMALL_STATE(2098)] = 141825, + [SMALL_STATE(2099)] = 141868, + [SMALL_STATE(2100)] = 141911, + [SMALL_STATE(2101)] = 141954, + [SMALL_STATE(2102)] = 141997, + [SMALL_STATE(2103)] = 142040, + [SMALL_STATE(2104)] = 142083, + [SMALL_STATE(2105)] = 142126, + [SMALL_STATE(2106)] = 142169, + [SMALL_STATE(2107)] = 142212, + [SMALL_STATE(2108)] = 142255, + [SMALL_STATE(2109)] = 142298, + [SMALL_STATE(2110)] = 142341, + [SMALL_STATE(2111)] = 142384, + [SMALL_STATE(2112)] = 142427, + [SMALL_STATE(2113)] = 142470, + [SMALL_STATE(2114)] = 142513, + [SMALL_STATE(2115)] = 142556, + [SMALL_STATE(2116)] = 142599, + [SMALL_STATE(2117)] = 142642, + [SMALL_STATE(2118)] = 142685, + [SMALL_STATE(2119)] = 142728, + [SMALL_STATE(2120)] = 142771, + [SMALL_STATE(2121)] = 142814, + [SMALL_STATE(2122)] = 142857, + [SMALL_STATE(2123)] = 142900, + [SMALL_STATE(2124)] = 142943, + [SMALL_STATE(2125)] = 142986, + [SMALL_STATE(2126)] = 143029, + [SMALL_STATE(2127)] = 143072, + [SMALL_STATE(2128)] = 143115, + [SMALL_STATE(2129)] = 143158, + [SMALL_STATE(2130)] = 143201, + [SMALL_STATE(2131)] = 143244, + [SMALL_STATE(2132)] = 143287, + [SMALL_STATE(2133)] = 143330, + [SMALL_STATE(2134)] = 143373, + [SMALL_STATE(2135)] = 143416, + [SMALL_STATE(2136)] = 143459, + [SMALL_STATE(2137)] = 143502, + [SMALL_STATE(2138)] = 143545, + [SMALL_STATE(2139)] = 143588, + [SMALL_STATE(2140)] = 143631, + [SMALL_STATE(2141)] = 143674, + [SMALL_STATE(2142)] = 143717, + [SMALL_STATE(2143)] = 143760, + [SMALL_STATE(2144)] = 143803, + [SMALL_STATE(2145)] = 143846, + [SMALL_STATE(2146)] = 143889, + [SMALL_STATE(2147)] = 143932, + [SMALL_STATE(2148)] = 143975, + [SMALL_STATE(2149)] = 144018, + [SMALL_STATE(2150)] = 144061, + [SMALL_STATE(2151)] = 144104, + [SMALL_STATE(2152)] = 144147, + [SMALL_STATE(2153)] = 144190, + [SMALL_STATE(2154)] = 144233, + [SMALL_STATE(2155)] = 144276, + [SMALL_STATE(2156)] = 144319, + [SMALL_STATE(2157)] = 144362, + [SMALL_STATE(2158)] = 144405, + [SMALL_STATE(2159)] = 144448, + [SMALL_STATE(2160)] = 144491, + [SMALL_STATE(2161)] = 144534, + [SMALL_STATE(2162)] = 144577, + [SMALL_STATE(2163)] = 144620, + [SMALL_STATE(2164)] = 144663, + [SMALL_STATE(2165)] = 144706, + [SMALL_STATE(2166)] = 144749, + [SMALL_STATE(2167)] = 144792, + [SMALL_STATE(2168)] = 144835, + [SMALL_STATE(2169)] = 144878, + [SMALL_STATE(2170)] = 144921, + [SMALL_STATE(2171)] = 144964, + [SMALL_STATE(2172)] = 145007, + [SMALL_STATE(2173)] = 145050, + [SMALL_STATE(2174)] = 145093, + [SMALL_STATE(2175)] = 145136, + [SMALL_STATE(2176)] = 145179, + [SMALL_STATE(2177)] = 145222, + [SMALL_STATE(2178)] = 145265, + [SMALL_STATE(2179)] = 145308, + [SMALL_STATE(2180)] = 145351, + [SMALL_STATE(2181)] = 145394, + [SMALL_STATE(2182)] = 145437, + [SMALL_STATE(2183)] = 145480, + [SMALL_STATE(2184)] = 145523, + [SMALL_STATE(2185)] = 145566, + [SMALL_STATE(2186)] = 145609, + [SMALL_STATE(2187)] = 145652, + [SMALL_STATE(2188)] = 145695, + [SMALL_STATE(2189)] = 145738, + [SMALL_STATE(2190)] = 145781, + [SMALL_STATE(2191)] = 145824, + [SMALL_STATE(2192)] = 145867, + [SMALL_STATE(2193)] = 145910, + [SMALL_STATE(2194)] = 145953, + [SMALL_STATE(2195)] = 145996, + [SMALL_STATE(2196)] = 146039, + [SMALL_STATE(2197)] = 146082, + [SMALL_STATE(2198)] = 146125, + [SMALL_STATE(2199)] = 146168, + [SMALL_STATE(2200)] = 146211, + [SMALL_STATE(2201)] = 146254, + [SMALL_STATE(2202)] = 146297, + [SMALL_STATE(2203)] = 146340, + [SMALL_STATE(2204)] = 146383, + [SMALL_STATE(2205)] = 146426, + [SMALL_STATE(2206)] = 146469, + [SMALL_STATE(2207)] = 146512, + [SMALL_STATE(2208)] = 146555, + [SMALL_STATE(2209)] = 146598, + [SMALL_STATE(2210)] = 146641, + [SMALL_STATE(2211)] = 146684, + [SMALL_STATE(2212)] = 146727, + [SMALL_STATE(2213)] = 146770, + [SMALL_STATE(2214)] = 146813, + [SMALL_STATE(2215)] = 146856, + [SMALL_STATE(2216)] = 146899, + [SMALL_STATE(2217)] = 146942, + [SMALL_STATE(2218)] = 146985, + [SMALL_STATE(2219)] = 147028, + [SMALL_STATE(2220)] = 147071, + [SMALL_STATE(2221)] = 147114, + [SMALL_STATE(2222)] = 147157, + [SMALL_STATE(2223)] = 147200, + [SMALL_STATE(2224)] = 147243, + [SMALL_STATE(2225)] = 147286, + [SMALL_STATE(2226)] = 147329, + [SMALL_STATE(2227)] = 147372, + [SMALL_STATE(2228)] = 147415, + [SMALL_STATE(2229)] = 147458, + [SMALL_STATE(2230)] = 147501, + [SMALL_STATE(2231)] = 147544, + [SMALL_STATE(2232)] = 147587, + [SMALL_STATE(2233)] = 147630, + [SMALL_STATE(2234)] = 147673, + [SMALL_STATE(2235)] = 147716, + [SMALL_STATE(2236)] = 147759, + [SMALL_STATE(2237)] = 147802, + [SMALL_STATE(2238)] = 147845, + [SMALL_STATE(2239)] = 147888, + [SMALL_STATE(2240)] = 147931, + [SMALL_STATE(2241)] = 147974, + [SMALL_STATE(2242)] = 148017, + [SMALL_STATE(2243)] = 148060, + [SMALL_STATE(2244)] = 148103, + [SMALL_STATE(2245)] = 148146, + [SMALL_STATE(2246)] = 148189, + [SMALL_STATE(2247)] = 148232, + [SMALL_STATE(2248)] = 148275, + [SMALL_STATE(2249)] = 148318, + [SMALL_STATE(2250)] = 148361, + [SMALL_STATE(2251)] = 148404, + [SMALL_STATE(2252)] = 148447, + [SMALL_STATE(2253)] = 148490, + [SMALL_STATE(2254)] = 148533, + [SMALL_STATE(2255)] = 148576, + [SMALL_STATE(2256)] = 148619, + [SMALL_STATE(2257)] = 148662, + [SMALL_STATE(2258)] = 148705, + [SMALL_STATE(2259)] = 148748, + [SMALL_STATE(2260)] = 148791, + [SMALL_STATE(2261)] = 148834, + [SMALL_STATE(2262)] = 148877, + [SMALL_STATE(2263)] = 148920, + [SMALL_STATE(2264)] = 148963, + [SMALL_STATE(2265)] = 149006, + [SMALL_STATE(2266)] = 149049, + [SMALL_STATE(2267)] = 149092, + [SMALL_STATE(2268)] = 149135, + [SMALL_STATE(2269)] = 149178, + [SMALL_STATE(2270)] = 149221, + [SMALL_STATE(2271)] = 149264, + [SMALL_STATE(2272)] = 149307, + [SMALL_STATE(2273)] = 149350, + [SMALL_STATE(2274)] = 149393, + [SMALL_STATE(2275)] = 149436, + [SMALL_STATE(2276)] = 149479, + [SMALL_STATE(2277)] = 149522, + [SMALL_STATE(2278)] = 149565, + [SMALL_STATE(2279)] = 149608, + [SMALL_STATE(2280)] = 149651, + [SMALL_STATE(2281)] = 149694, + [SMALL_STATE(2282)] = 149737, + [SMALL_STATE(2283)] = 149780, + [SMALL_STATE(2284)] = 149823, + [SMALL_STATE(2285)] = 149866, + [SMALL_STATE(2286)] = 149909, + [SMALL_STATE(2287)] = 149952, + [SMALL_STATE(2288)] = 149995, + [SMALL_STATE(2289)] = 150038, + [SMALL_STATE(2290)] = 150081, + [SMALL_STATE(2291)] = 150124, + [SMALL_STATE(2292)] = 150167, + [SMALL_STATE(2293)] = 150210, + [SMALL_STATE(2294)] = 150253, + [SMALL_STATE(2295)] = 150296, + [SMALL_STATE(2296)] = 150339, + [SMALL_STATE(2297)] = 150382, + [SMALL_STATE(2298)] = 150425, + [SMALL_STATE(2299)] = 150468, + [SMALL_STATE(2300)] = 150511, + [SMALL_STATE(2301)] = 150554, + [SMALL_STATE(2302)] = 150597, + [SMALL_STATE(2303)] = 150640, + [SMALL_STATE(2304)] = 150683, + [SMALL_STATE(2305)] = 150726, + [SMALL_STATE(2306)] = 150769, + [SMALL_STATE(2307)] = 150812, + [SMALL_STATE(2308)] = 150855, + [SMALL_STATE(2309)] = 150898, + [SMALL_STATE(2310)] = 150941, + [SMALL_STATE(2311)] = 150984, + [SMALL_STATE(2312)] = 151027, + [SMALL_STATE(2313)] = 151070, + [SMALL_STATE(2314)] = 151113, + [SMALL_STATE(2315)] = 151156, + [SMALL_STATE(2316)] = 151199, + [SMALL_STATE(2317)] = 151242, + [SMALL_STATE(2318)] = 151285, + [SMALL_STATE(2319)] = 151328, + [SMALL_STATE(2320)] = 151371, + [SMALL_STATE(2321)] = 151414, + [SMALL_STATE(2322)] = 151457, + [SMALL_STATE(2323)] = 151500, + [SMALL_STATE(2324)] = 151543, + [SMALL_STATE(2325)] = 151586, + [SMALL_STATE(2326)] = 151629, + [SMALL_STATE(2327)] = 151672, + [SMALL_STATE(2328)] = 151715, + [SMALL_STATE(2329)] = 151758, + [SMALL_STATE(2330)] = 151801, + [SMALL_STATE(2331)] = 151844, + [SMALL_STATE(2332)] = 151887, + [SMALL_STATE(2333)] = 151930, + [SMALL_STATE(2334)] = 151973, + [SMALL_STATE(2335)] = 152016, + [SMALL_STATE(2336)] = 152059, + [SMALL_STATE(2337)] = 152102, + [SMALL_STATE(2338)] = 152145, + [SMALL_STATE(2339)] = 152188, + [SMALL_STATE(2340)] = 152231, + [SMALL_STATE(2341)] = 152274, + [SMALL_STATE(2342)] = 152317, + [SMALL_STATE(2343)] = 152360, + [SMALL_STATE(2344)] = 152403, + [SMALL_STATE(2345)] = 152446, + [SMALL_STATE(2346)] = 152489, + [SMALL_STATE(2347)] = 152532, + [SMALL_STATE(2348)] = 152575, + [SMALL_STATE(2349)] = 152618, + [SMALL_STATE(2350)] = 152661, + [SMALL_STATE(2351)] = 152704, + [SMALL_STATE(2352)] = 152747, + [SMALL_STATE(2353)] = 152790, + [SMALL_STATE(2354)] = 152833, + [SMALL_STATE(2355)] = 152876, + [SMALL_STATE(2356)] = 152919, + [SMALL_STATE(2357)] = 152962, + [SMALL_STATE(2358)] = 153005, + [SMALL_STATE(2359)] = 153048, + [SMALL_STATE(2360)] = 153091, + [SMALL_STATE(2361)] = 153134, + [SMALL_STATE(2362)] = 153177, + [SMALL_STATE(2363)] = 153220, + [SMALL_STATE(2364)] = 153263, + [SMALL_STATE(2365)] = 153306, + [SMALL_STATE(2366)] = 153349, + [SMALL_STATE(2367)] = 153392, + [SMALL_STATE(2368)] = 153435, + [SMALL_STATE(2369)] = 153478, + [SMALL_STATE(2370)] = 153521, + [SMALL_STATE(2371)] = 153564, + [SMALL_STATE(2372)] = 153607, + [SMALL_STATE(2373)] = 153650, + [SMALL_STATE(2374)] = 153693, + [SMALL_STATE(2375)] = 153736, + [SMALL_STATE(2376)] = 153779, + [SMALL_STATE(2377)] = 153822, + [SMALL_STATE(2378)] = 153865, + [SMALL_STATE(2379)] = 153908, + [SMALL_STATE(2380)] = 153951, + [SMALL_STATE(2381)] = 153994, + [SMALL_STATE(2382)] = 154037, + [SMALL_STATE(2383)] = 154080, + [SMALL_STATE(2384)] = 154123, + [SMALL_STATE(2385)] = 154166, + [SMALL_STATE(2386)] = 154209, + [SMALL_STATE(2387)] = 154252, + [SMALL_STATE(2388)] = 154295, + [SMALL_STATE(2389)] = 154338, + [SMALL_STATE(2390)] = 154381, + [SMALL_STATE(2391)] = 154424, + [SMALL_STATE(2392)] = 154467, + [SMALL_STATE(2393)] = 154510, + [SMALL_STATE(2394)] = 154553, + [SMALL_STATE(2395)] = 154596, + [SMALL_STATE(2396)] = 154639, + [SMALL_STATE(2397)] = 154682, + [SMALL_STATE(2398)] = 154725, + [SMALL_STATE(2399)] = 154768, + [SMALL_STATE(2400)] = 154811, + [SMALL_STATE(2401)] = 154854, + [SMALL_STATE(2402)] = 154897, + [SMALL_STATE(2403)] = 154940, + [SMALL_STATE(2404)] = 154983, + [SMALL_STATE(2405)] = 155026, + [SMALL_STATE(2406)] = 155069, + [SMALL_STATE(2407)] = 155112, + [SMALL_STATE(2408)] = 155155, + [SMALL_STATE(2409)] = 155198, + [SMALL_STATE(2410)] = 155241, + [SMALL_STATE(2411)] = 155284, + [SMALL_STATE(2412)] = 155327, + [SMALL_STATE(2413)] = 155370, + [SMALL_STATE(2414)] = 155413, + [SMALL_STATE(2415)] = 155456, + [SMALL_STATE(2416)] = 155499, + [SMALL_STATE(2417)] = 155542, + [SMALL_STATE(2418)] = 155585, + [SMALL_STATE(2419)] = 155628, + [SMALL_STATE(2420)] = 155671, + [SMALL_STATE(2421)] = 155714, + [SMALL_STATE(2422)] = 155757, + [SMALL_STATE(2423)] = 155800, + [SMALL_STATE(2424)] = 155843, + [SMALL_STATE(2425)] = 155886, + [SMALL_STATE(2426)] = 155929, + [SMALL_STATE(2427)] = 155972, + [SMALL_STATE(2428)] = 156015, + [SMALL_STATE(2429)] = 156058, + [SMALL_STATE(2430)] = 156101, + [SMALL_STATE(2431)] = 156144, + [SMALL_STATE(2432)] = 156187, + [SMALL_STATE(2433)] = 156230, + [SMALL_STATE(2434)] = 156273, + [SMALL_STATE(2435)] = 156316, + [SMALL_STATE(2436)] = 156359, + [SMALL_STATE(2437)] = 156402, + [SMALL_STATE(2438)] = 156445, + [SMALL_STATE(2439)] = 156484, + [SMALL_STATE(2440)] = 156527, + [SMALL_STATE(2441)] = 156570, + [SMALL_STATE(2442)] = 156613, + [SMALL_STATE(2443)] = 156656, + [SMALL_STATE(2444)] = 156699, + [SMALL_STATE(2445)] = 156742, + [SMALL_STATE(2446)] = 156785, + [SMALL_STATE(2447)] = 156828, + [SMALL_STATE(2448)] = 156871, + [SMALL_STATE(2449)] = 156914, + [SMALL_STATE(2450)] = 156957, + [SMALL_STATE(2451)] = 157000, + [SMALL_STATE(2452)] = 157043, + [SMALL_STATE(2453)] = 157086, + [SMALL_STATE(2454)] = 157129, + [SMALL_STATE(2455)] = 157172, + [SMALL_STATE(2456)] = 157215, + [SMALL_STATE(2457)] = 157258, + [SMALL_STATE(2458)] = 157301, + [SMALL_STATE(2459)] = 157344, + [SMALL_STATE(2460)] = 157387, + [SMALL_STATE(2461)] = 157430, + [SMALL_STATE(2462)] = 157473, + [SMALL_STATE(2463)] = 157516, + [SMALL_STATE(2464)] = 157559, + [SMALL_STATE(2465)] = 157602, + [SMALL_STATE(2466)] = 157645, + [SMALL_STATE(2467)] = 157688, + [SMALL_STATE(2468)] = 157731, + [SMALL_STATE(2469)] = 157774, + [SMALL_STATE(2470)] = 157817, + [SMALL_STATE(2471)] = 157860, + [SMALL_STATE(2472)] = 157903, + [SMALL_STATE(2473)] = 157946, + [SMALL_STATE(2474)] = 157989, + [SMALL_STATE(2475)] = 158032, + [SMALL_STATE(2476)] = 158075, + [SMALL_STATE(2477)] = 158118, + [SMALL_STATE(2478)] = 158161, + [SMALL_STATE(2479)] = 158204, + [SMALL_STATE(2480)] = 158247, + [SMALL_STATE(2481)] = 158290, + [SMALL_STATE(2482)] = 158333, + [SMALL_STATE(2483)] = 158376, + [SMALL_STATE(2484)] = 158419, + [SMALL_STATE(2485)] = 158462, + [SMALL_STATE(2486)] = 158505, + [SMALL_STATE(2487)] = 158548, + [SMALL_STATE(2488)] = 158591, + [SMALL_STATE(2489)] = 158634, + [SMALL_STATE(2490)] = 158677, + [SMALL_STATE(2491)] = 158720, + [SMALL_STATE(2492)] = 158761, + [SMALL_STATE(2493)] = 158802, + [SMALL_STATE(2494)] = 158839, + [SMALL_STATE(2495)] = 158882, + [SMALL_STATE(2496)] = 158919, + [SMALL_STATE(2497)] = 158960, + [SMALL_STATE(2498)] = 159003, + [SMALL_STATE(2499)] = 159046, + [SMALL_STATE(2500)] = 159083, + [SMALL_STATE(2501)] = 159126, + [SMALL_STATE(2502)] = 159169, + [SMALL_STATE(2503)] = 159212, + [SMALL_STATE(2504)] = 159255, + [SMALL_STATE(2505)] = 159298, + [SMALL_STATE(2506)] = 159341, + [SMALL_STATE(2507)] = 159378, + [SMALL_STATE(2508)] = 159421, + [SMALL_STATE(2509)] = 159464, + [SMALL_STATE(2510)] = 159507, + [SMALL_STATE(2511)] = 159544, + [SMALL_STATE(2512)] = 159587, + [SMALL_STATE(2513)] = 159630, + [SMALL_STATE(2514)] = 159673, + [SMALL_STATE(2515)] = 159716, + [SMALL_STATE(2516)] = 159759, + [SMALL_STATE(2517)] = 159796, + [SMALL_STATE(2518)] = 159839, + [SMALL_STATE(2519)] = 159882, + [SMALL_STATE(2520)] = 159925, + [SMALL_STATE(2521)] = 159968, + [SMALL_STATE(2522)] = 160011, + [SMALL_STATE(2523)] = 160054, + [SMALL_STATE(2524)] = 160097, + [SMALL_STATE(2525)] = 160140, + [SMALL_STATE(2526)] = 160177, + [SMALL_STATE(2527)] = 160220, + [SMALL_STATE(2528)] = 160257, + [SMALL_STATE(2529)] = 160300, + [SMALL_STATE(2530)] = 160343, + [SMALL_STATE(2531)] = 160380, + [SMALL_STATE(2532)] = 160417, + [SMALL_STATE(2533)] = 160460, + [SMALL_STATE(2534)] = 160503, + [SMALL_STATE(2535)] = 160540, + [SMALL_STATE(2536)] = 160577, + [SMALL_STATE(2537)] = 160614, + [SMALL_STATE(2538)] = 160657, + [SMALL_STATE(2539)] = 160700, + [SMALL_STATE(2540)] = 160743, + [SMALL_STATE(2541)] = 160786, + [SMALL_STATE(2542)] = 160829, + [SMALL_STATE(2543)] = 160872, + [SMALL_STATE(2544)] = 160915, + [SMALL_STATE(2545)] = 160958, + [SMALL_STATE(2546)] = 161001, + [SMALL_STATE(2547)] = 161038, + [SMALL_STATE(2548)] = 161075, + [SMALL_STATE(2549)] = 161118, + [SMALL_STATE(2550)] = 161155, + [SMALL_STATE(2551)] = 161191, + [SMALL_STATE(2552)] = 161227, + [SMALL_STATE(2553)] = 161263, + [SMALL_STATE(2554)] = 161299, + [SMALL_STATE(2555)] = 161335, + [SMALL_STATE(2556)] = 161371, + [SMALL_STATE(2557)] = 161407, + [SMALL_STATE(2558)] = 161443, + [SMALL_STATE(2559)] = 161479, + [SMALL_STATE(2560)] = 161515, + [SMALL_STATE(2561)] = 161551, + [SMALL_STATE(2562)] = 161587, + [SMALL_STATE(2563)] = 161623, + [SMALL_STATE(2564)] = 161659, + [SMALL_STATE(2565)] = 161695, + [SMALL_STATE(2566)] = 161731, + [SMALL_STATE(2567)] = 161767, + [SMALL_STATE(2568)] = 161803, + [SMALL_STATE(2569)] = 161839, + [SMALL_STATE(2570)] = 161875, + [SMALL_STATE(2571)] = 161911, + [SMALL_STATE(2572)] = 161947, + [SMALL_STATE(2573)] = 161983, + [SMALL_STATE(2574)] = 162019, + [SMALL_STATE(2575)] = 162055, + [SMALL_STATE(2576)] = 162091, + [SMALL_STATE(2577)] = 162127, + [SMALL_STATE(2578)] = 162163, + [SMALL_STATE(2579)] = 162199, + [SMALL_STATE(2580)] = 162235, + [SMALL_STATE(2581)] = 162271, + [SMALL_STATE(2582)] = 162307, + [SMALL_STATE(2583)] = 162343, + [SMALL_STATE(2584)] = 162379, + [SMALL_STATE(2585)] = 162415, + [SMALL_STATE(2586)] = 162451, + [SMALL_STATE(2587)] = 162487, + [SMALL_STATE(2588)] = 162523, + [SMALL_STATE(2589)] = 162559, + [SMALL_STATE(2590)] = 162595, + [SMALL_STATE(2591)] = 162633, + [SMALL_STATE(2592)] = 162669, + [SMALL_STATE(2593)] = 162705, + [SMALL_STATE(2594)] = 162741, + [SMALL_STATE(2595)] = 162777, + [SMALL_STATE(2596)] = 162813, + [SMALL_STATE(2597)] = 162849, + [SMALL_STATE(2598)] = 162885, + [SMALL_STATE(2599)] = 162921, + [SMALL_STATE(2600)] = 162957, + [SMALL_STATE(2601)] = 162993, + [SMALL_STATE(2602)] = 163029, + [SMALL_STATE(2603)] = 163065, + [SMALL_STATE(2604)] = 163101, + [SMALL_STATE(2605)] = 163137, + [SMALL_STATE(2606)] = 163173, + [SMALL_STATE(2607)] = 163209, + [SMALL_STATE(2608)] = 163245, + [SMALL_STATE(2609)] = 163281, + [SMALL_STATE(2610)] = 163317, + [SMALL_STATE(2611)] = 163353, + [SMALL_STATE(2612)] = 163389, + [SMALL_STATE(2613)] = 163425, + [SMALL_STATE(2614)] = 163461, + [SMALL_STATE(2615)] = 163497, + [SMALL_STATE(2616)] = 163533, + [SMALL_STATE(2617)] = 163569, + [SMALL_STATE(2618)] = 163605, + [SMALL_STATE(2619)] = 163641, + [SMALL_STATE(2620)] = 163677, + [SMALL_STATE(2621)] = 163713, + [SMALL_STATE(2622)] = 163749, + [SMALL_STATE(2623)] = 163785, + [SMALL_STATE(2624)] = 163821, + [SMALL_STATE(2625)] = 163857, + [SMALL_STATE(2626)] = 163893, + [SMALL_STATE(2627)] = 163929, + [SMALL_STATE(2628)] = 163965, + [SMALL_STATE(2629)] = 164001, + [SMALL_STATE(2630)] = 164037, + [SMALL_STATE(2631)] = 164073, + [SMALL_STATE(2632)] = 164109, + [SMALL_STATE(2633)] = 164145, + [SMALL_STATE(2634)] = 164181, + [SMALL_STATE(2635)] = 164217, + [SMALL_STATE(2636)] = 164253, + [SMALL_STATE(2637)] = 164289, + [SMALL_STATE(2638)] = 164325, + [SMALL_STATE(2639)] = 164361, + [SMALL_STATE(2640)] = 164397, + [SMALL_STATE(2641)] = 164433, + [SMALL_STATE(2642)] = 164469, + [SMALL_STATE(2643)] = 164505, + [SMALL_STATE(2644)] = 164541, + [SMALL_STATE(2645)] = 164577, + [SMALL_STATE(2646)] = 164613, + [SMALL_STATE(2647)] = 164649, + [SMALL_STATE(2648)] = 164685, + [SMALL_STATE(2649)] = 164721, + [SMALL_STATE(2650)] = 164757, + [SMALL_STATE(2651)] = 164793, + [SMALL_STATE(2652)] = 164829, + [SMALL_STATE(2653)] = 164865, + [SMALL_STATE(2654)] = 164904, + [SMALL_STATE(2655)] = 164941, + [SMALL_STATE(2656)] = 164980, + [SMALL_STATE(2657)] = 165019, + [SMALL_STATE(2658)] = 165058, + [SMALL_STATE(2659)] = 165097, + [SMALL_STATE(2660)] = 165136, + [SMALL_STATE(2661)] = 165175, + [SMALL_STATE(2662)] = 165214, + [SMALL_STATE(2663)] = 165253, + [SMALL_STATE(2664)] = 165292, + [SMALL_STATE(2665)] = 165331, + [SMALL_STATE(2666)] = 165370, + [SMALL_STATE(2667)] = 165409, + [SMALL_STATE(2668)] = 165448, + [SMALL_STATE(2669)] = 165487, + [SMALL_STATE(2670)] = 165526, + [SMALL_STATE(2671)] = 165565, + [SMALL_STATE(2672)] = 165604, + [SMALL_STATE(2673)] = 165643, + [SMALL_STATE(2674)] = 165682, + [SMALL_STATE(2675)] = 165721, + [SMALL_STATE(2676)] = 165760, + [SMALL_STATE(2677)] = 165799, + [SMALL_STATE(2678)] = 165838, + [SMALL_STATE(2679)] = 165872, + [SMALL_STATE(2680)] = 165924, + [SMALL_STATE(2681)] = 165976, + [SMALL_STATE(2682)] = 166028, + [SMALL_STATE(2683)] = 166062, + [SMALL_STATE(2684)] = 166114, + [SMALL_STATE(2685)] = 166148, + [SMALL_STATE(2686)] = 166182, + [SMALL_STATE(2687)] = 166216, + [SMALL_STATE(2688)] = 166250, + [SMALL_STATE(2689)] = 166302, + [SMALL_STATE(2690)] = 166336, + [SMALL_STATE(2691)] = 166370, + [SMALL_STATE(2692)] = 166404, + [SMALL_STATE(2693)] = 166438, + [SMALL_STATE(2694)] = 166472, + [SMALL_STATE(2695)] = 166506, + [SMALL_STATE(2696)] = 166540, + [SMALL_STATE(2697)] = 166574, + [SMALL_STATE(2698)] = 166608, + [SMALL_STATE(2699)] = 166642, + [SMALL_STATE(2700)] = 166676, + [SMALL_STATE(2701)] = 166710, + [SMALL_STATE(2702)] = 166758, + [SMALL_STATE(2703)] = 166792, + [SMALL_STATE(2704)] = 166826, + [SMALL_STATE(2705)] = 166878, + [SMALL_STATE(2706)] = 166912, + [SMALL_STATE(2707)] = 166964, + [SMALL_STATE(2708)] = 166998, + [SMALL_STATE(2709)] = 167032, + [SMALL_STATE(2710)] = 167066, + [SMALL_STATE(2711)] = 167100, + [SMALL_STATE(2712)] = 167134, + [SMALL_STATE(2713)] = 167168, + [SMALL_STATE(2714)] = 167202, + [SMALL_STATE(2715)] = 167236, + [SMALL_STATE(2716)] = 167270, + [SMALL_STATE(2717)] = 167304, + [SMALL_STATE(2718)] = 167356, + [SMALL_STATE(2719)] = 167408, + [SMALL_STATE(2720)] = 167442, + [SMALL_STATE(2721)] = 167494, + [SMALL_STATE(2722)] = 167528, + [SMALL_STATE(2723)] = 167576, + [SMALL_STATE(2724)] = 167610, + [SMALL_STATE(2725)] = 167644, + [SMALL_STATE(2726)] = 167678, + [SMALL_STATE(2727)] = 167712, + [SMALL_STATE(2728)] = 167764, + [SMALL_STATE(2729)] = 167816, + [SMALL_STATE(2730)] = 167850, + [SMALL_STATE(2731)] = 167884, + [SMALL_STATE(2732)] = 167936, + [SMALL_STATE(2733)] = 167988, + [SMALL_STATE(2734)] = 168022, + [SMALL_STATE(2735)] = 168056, + [SMALL_STATE(2736)] = 168090, + [SMALL_STATE(2737)] = 168124, + [SMALL_STATE(2738)] = 168176, + [SMALL_STATE(2739)] = 168210, + [SMALL_STATE(2740)] = 168244, + [SMALL_STATE(2741)] = 168278, + [SMALL_STATE(2742)] = 168312, + [SMALL_STATE(2743)] = 168346, + [SMALL_STATE(2744)] = 168398, + [SMALL_STATE(2745)] = 168450, + [SMALL_STATE(2746)] = 168502, + [SMALL_STATE(2747)] = 168536, + [SMALL_STATE(2748)] = 168570, + [SMALL_STATE(2749)] = 168604, + [SMALL_STATE(2750)] = 168638, + [SMALL_STATE(2751)] = 168684, + [SMALL_STATE(2752)] = 168715, + [SMALL_STATE(2753)] = 168746, + [SMALL_STATE(2754)] = 168785, + [SMALL_STATE(2755)] = 168847, + [SMALL_STATE(2756)] = 168909, + [SMALL_STATE(2757)] = 168971, + [SMALL_STATE(2758)] = 169033, + [SMALL_STATE(2759)] = 169099, + [SMALL_STATE(2760)] = 169165, + [SMALL_STATE(2761)] = 169231, + [SMALL_STATE(2762)] = 169293, + [SMALL_STATE(2763)] = 169355, + [SMALL_STATE(2764)] = 169417, + [SMALL_STATE(2765)] = 169479, + [SMALL_STATE(2766)] = 169545, + [SMALL_STATE(2767)] = 169580, + [SMALL_STATE(2768)] = 169611, + [SMALL_STATE(2769)] = 169646, + [SMALL_STATE(2770)] = 169681, + [SMALL_STATE(2771)] = 169714, + [SMALL_STATE(2772)] = 169749, + [SMALL_STATE(2773)] = 169779, + [SMALL_STATE(2774)] = 169809, + [SMALL_STATE(2775)] = 169839, + [SMALL_STATE(2776)] = 169869, + [SMALL_STATE(2777)] = 169899, + [SMALL_STATE(2778)] = 169929, + [SMALL_STATE(2779)] = 169959, + [SMALL_STATE(2780)] = 169989, + [SMALL_STATE(2781)] = 170019, + [SMALL_STATE(2782)] = 170049, + [SMALL_STATE(2783)] = 170079, + [SMALL_STATE(2784)] = 170109, + [SMALL_STATE(2785)] = 170139, + [SMALL_STATE(2786)] = 170169, + [SMALL_STATE(2787)] = 170199, + [SMALL_STATE(2788)] = 170229, + [SMALL_STATE(2789)] = 170259, + [SMALL_STATE(2790)] = 170289, + [SMALL_STATE(2791)] = 170319, + [SMALL_STATE(2792)] = 170349, + [SMALL_STATE(2793)] = 170379, + [SMALL_STATE(2794)] = 170409, + [SMALL_STATE(2795)] = 170439, + [SMALL_STATE(2796)] = 170469, + [SMALL_STATE(2797)] = 170499, + [SMALL_STATE(2798)] = 170562, + [SMALL_STATE(2799)] = 170591, + [SMALL_STATE(2800)] = 170620, + [SMALL_STATE(2801)] = 170649, + [SMALL_STATE(2802)] = 170678, + [SMALL_STATE(2803)] = 170707, + [SMALL_STATE(2804)] = 170770, + [SMALL_STATE(2805)] = 170833, + [SMALL_STATE(2806)] = 170862, + [SMALL_STATE(2807)] = 170891, + [SMALL_STATE(2808)] = 170920, + [SMALL_STATE(2809)] = 170983, + [SMALL_STATE(2810)] = 171012, + [SMALL_STATE(2811)] = 171041, + [SMALL_STATE(2812)] = 171104, + [SMALL_STATE(2813)] = 171133, + [SMALL_STATE(2814)] = 171162, + [SMALL_STATE(2815)] = 171191, + [SMALL_STATE(2816)] = 171220, + [SMALL_STATE(2817)] = 171283, + [SMALL_STATE(2818)] = 171346, + [SMALL_STATE(2819)] = 171375, + [SMALL_STATE(2820)] = 171404, + [SMALL_STATE(2821)] = 171433, + [SMALL_STATE(2822)] = 171496, + [SMALL_STATE(2823)] = 171559, + [SMALL_STATE(2824)] = 171588, + [SMALL_STATE(2825)] = 171617, + [SMALL_STATE(2826)] = 171680, + [SMALL_STATE(2827)] = 171709, + [SMALL_STATE(2828)] = 171772, + [SMALL_STATE(2829)] = 171801, + [SMALL_STATE(2830)] = 171830, + [SMALL_STATE(2831)] = 171859, + [SMALL_STATE(2832)] = 171922, + [SMALL_STATE(2833)] = 171951, + [SMALL_STATE(2834)] = 172014, + [SMALL_STATE(2835)] = 172077, + [SMALL_STATE(2836)] = 172106, + [SMALL_STATE(2837)] = 172135, + [SMALL_STATE(2838)] = 172186, + [SMALL_STATE(2839)] = 172237, + [SMALL_STATE(2840)] = 172288, + [SMALL_STATE(2841)] = 172321, + [SMALL_STATE(2842)] = 172352, + [SMALL_STATE(2843)] = 172403, + [SMALL_STATE(2844)] = 172454, + [SMALL_STATE(2845)] = 172505, + [SMALL_STATE(2846)] = 172556, + [SMALL_STATE(2847)] = 172599, + [SMALL_STATE(2848)] = 172630, + [SMALL_STATE(2849)] = 172681, + [SMALL_STATE(2850)] = 172732, + [SMALL_STATE(2851)] = 172765, + [SMALL_STATE(2852)] = 172798, + [SMALL_STATE(2853)] = 172831, + [SMALL_STATE(2854)] = 172882, + [SMALL_STATE(2855)] = 172931, + [SMALL_STATE(2856)] = 172974, + [SMALL_STATE(2857)] = 173025, + [SMALL_STATE(2858)] = 173076, + [SMALL_STATE(2859)] = 173109, + [SMALL_STATE(2860)] = 173158, + [SMALL_STATE(2861)] = 173209, + [SMALL_STATE(2862)] = 173260, + [SMALL_STATE(2863)] = 173311, + [SMALL_STATE(2864)] = 173362, + [SMALL_STATE(2865)] = 173392, + [SMALL_STATE(2866)] = 173422, + [SMALL_STATE(2867)] = 173452, + [SMALL_STATE(2868)] = 173477, + [SMALL_STATE(2869)] = 173514, + [SMALL_STATE(2870)] = 173539, + [SMALL_STATE(2871)] = 173564, + [SMALL_STATE(2872)] = 173589, + [SMALL_STATE(2873)] = 173616, + [SMALL_STATE(2874)] = 173641, + [SMALL_STATE(2875)] = 173666, + [SMALL_STATE(2876)] = 173691, + [SMALL_STATE(2877)] = 173716, + [SMALL_STATE(2878)] = 173741, + [SMALL_STATE(2879)] = 173766, + [SMALL_STATE(2880)] = 173811, + [SMALL_STATE(2881)] = 173856, + [SMALL_STATE(2882)] = 173901, + [SMALL_STATE(2883)] = 173946, + [SMALL_STATE(2884)] = 173991, + [SMALL_STATE(2885)] = 174036, + [SMALL_STATE(2886)] = 174081, + [SMALL_STATE(2887)] = 174126, + [SMALL_STATE(2888)] = 174171, + [SMALL_STATE(2889)] = 174216, + [SMALL_STATE(2890)] = 174261, + [SMALL_STATE(2891)] = 174306, + [SMALL_STATE(2892)] = 174334, + [SMALL_STATE(2893)] = 174356, + [SMALL_STATE(2894)] = 174380, + [SMALL_STATE(2895)] = 174406, + [SMALL_STATE(2896)] = 174427, + [SMALL_STATE(2897)] = 174448, + [SMALL_STATE(2898)] = 174469, + [SMALL_STATE(2899)] = 174490, + [SMALL_STATE(2900)] = 174511, + [SMALL_STATE(2901)] = 174532, + [SMALL_STATE(2902)] = 174553, + [SMALL_STATE(2903)] = 174574, + [SMALL_STATE(2904)] = 174595, + [SMALL_STATE(2905)] = 174622, + [SMALL_STATE(2906)] = 174643, + [SMALL_STATE(2907)] = 174664, + [SMALL_STATE(2908)] = 174689, + [SMALL_STATE(2909)] = 174710, + [SMALL_STATE(2910)] = 174731, + [SMALL_STATE(2911)] = 174752, + [SMALL_STATE(2912)] = 174777, + [SMALL_STATE(2913)] = 174798, + [SMALL_STATE(2914)] = 174823, + [SMALL_STATE(2915)] = 174848, + [SMALL_STATE(2916)] = 174873, + [SMALL_STATE(2917)] = 174894, + [SMALL_STATE(2918)] = 174915, + [SMALL_STATE(2919)] = 174936, + [SMALL_STATE(2920)] = 174957, + [SMALL_STATE(2921)] = 174978, + [SMALL_STATE(2922)] = 174999, + [SMALL_STATE(2923)] = 175020, + [SMALL_STATE(2924)] = 175041, + [SMALL_STATE(2925)] = 175062, + [SMALL_STATE(2926)] = 175083, + [SMALL_STATE(2927)] = 175104, + [SMALL_STATE(2928)] = 175125, + [SMALL_STATE(2929)] = 175146, + [SMALL_STATE(2930)] = 175167, + [SMALL_STATE(2931)] = 175188, + [SMALL_STATE(2932)] = 175209, + [SMALL_STATE(2933)] = 175230, + [SMALL_STATE(2934)] = 175251, + [SMALL_STATE(2935)] = 175272, + [SMALL_STATE(2936)] = 175293, + [SMALL_STATE(2937)] = 175314, + [SMALL_STATE(2938)] = 175335, + [SMALL_STATE(2939)] = 175356, + [SMALL_STATE(2940)] = 175377, + [SMALL_STATE(2941)] = 175398, + [SMALL_STATE(2942)] = 175419, + [SMALL_STATE(2943)] = 175440, + [SMALL_STATE(2944)] = 175461, + [SMALL_STATE(2945)] = 175482, + [SMALL_STATE(2946)] = 175503, + [SMALL_STATE(2947)] = 175524, + [SMALL_STATE(2948)] = 175545, + [SMALL_STATE(2949)] = 175566, + [SMALL_STATE(2950)] = 175587, + [SMALL_STATE(2951)] = 175608, + [SMALL_STATE(2952)] = 175629, + [SMALL_STATE(2953)] = 175650, + [SMALL_STATE(2954)] = 175671, + [SMALL_STATE(2955)] = 175692, + [SMALL_STATE(2956)] = 175713, + [SMALL_STATE(2957)] = 175734, + [SMALL_STATE(2958)] = 175755, + [SMALL_STATE(2959)] = 175776, + [SMALL_STATE(2960)] = 175797, + [SMALL_STATE(2961)] = 175818, + [SMALL_STATE(2962)] = 175839, + [SMALL_STATE(2963)] = 175860, + [SMALL_STATE(2964)] = 175881, + [SMALL_STATE(2965)] = 175902, + [SMALL_STATE(2966)] = 175923, + [SMALL_STATE(2967)] = 175944, + [SMALL_STATE(2968)] = 175965, + [SMALL_STATE(2969)] = 175986, + [SMALL_STATE(2970)] = 176007, + [SMALL_STATE(2971)] = 176028, + [SMALL_STATE(2972)] = 176049, + [SMALL_STATE(2973)] = 176070, + [SMALL_STATE(2974)] = 176091, + [SMALL_STATE(2975)] = 176112, + [SMALL_STATE(2976)] = 176133, + [SMALL_STATE(2977)] = 176154, + [SMALL_STATE(2978)] = 176175, + [SMALL_STATE(2979)] = 176196, + [SMALL_STATE(2980)] = 176217, + [SMALL_STATE(2981)] = 176238, + [SMALL_STATE(2982)] = 176259, + [SMALL_STATE(2983)] = 176280, + [SMALL_STATE(2984)] = 176301, + [SMALL_STATE(2985)] = 176322, + [SMALL_STATE(2986)] = 176343, + [SMALL_STATE(2987)] = 176364, + [SMALL_STATE(2988)] = 176385, + [SMALL_STATE(2989)] = 176406, + [SMALL_STATE(2990)] = 176427, + [SMALL_STATE(2991)] = 176448, + [SMALL_STATE(2992)] = 176469, + [SMALL_STATE(2993)] = 176490, + [SMALL_STATE(2994)] = 176511, + [SMALL_STATE(2995)] = 176532, + [SMALL_STATE(2996)] = 176553, + [SMALL_STATE(2997)] = 176573, + [SMALL_STATE(2998)] = 176602, + [SMALL_STATE(2999)] = 176635, + [SMALL_STATE(3000)] = 176668, + [SMALL_STATE(3001)] = 176697, + [SMALL_STATE(3002)] = 176730, + [SMALL_STATE(3003)] = 176759, + [SMALL_STATE(3004)] = 176792, + [SMALL_STATE(3005)] = 176821, + [SMALL_STATE(3006)] = 176854, + [SMALL_STATE(3007)] = 176875, + [SMALL_STATE(3008)] = 176904, + [SMALL_STATE(3009)] = 176933, + [SMALL_STATE(3010)] = 176966, + [SMALL_STATE(3011)] = 176995, + [SMALL_STATE(3012)] = 177016, + [SMALL_STATE(3013)] = 177045, + [SMALL_STATE(3014)] = 177078, + [SMALL_STATE(3015)] = 177111, + [SMALL_STATE(3016)] = 177144, + [SMALL_STATE(3017)] = 177177, + [SMALL_STATE(3018)] = 177198, + [SMALL_STATE(3019)] = 177231, + [SMALL_STATE(3020)] = 177260, + [SMALL_STATE(3021)] = 177293, + [SMALL_STATE(3022)] = 177322, + [SMALL_STATE(3023)] = 177355, + [SMALL_STATE(3024)] = 177384, + [SMALL_STATE(3025)] = 177413, + [SMALL_STATE(3026)] = 177446, + [SMALL_STATE(3027)] = 177475, + [SMALL_STATE(3028)] = 177508, + [SMALL_STATE(3029)] = 177537, + [SMALL_STATE(3030)] = 177566, + [SMALL_STATE(3031)] = 177599, + [SMALL_STATE(3032)] = 177632, + [SMALL_STATE(3033)] = 177665, + [SMALL_STATE(3034)] = 177694, + [SMALL_STATE(3035)] = 177723, + [SMALL_STATE(3036)] = 177752, + [SMALL_STATE(3037)] = 177781, + [SMALL_STATE(3038)] = 177810, + [SMALL_STATE(3039)] = 177843, + [SMALL_STATE(3040)] = 177876, + [SMALL_STATE(3041)] = 177905, + [SMALL_STATE(3042)] = 177938, + [SMALL_STATE(3043)] = 177967, + [SMALL_STATE(3044)] = 178000, + [SMALL_STATE(3045)] = 178029, + [SMALL_STATE(3046)] = 178062, + [SMALL_STATE(3047)] = 178095, + [SMALL_STATE(3048)] = 178124, + [SMALL_STATE(3049)] = 178153, + [SMALL_STATE(3050)] = 178186, + [SMALL_STATE(3051)] = 178204, + [SMALL_STATE(3052)] = 178224, + [SMALL_STATE(3053)] = 178242, + [SMALL_STATE(3054)] = 178260, + [SMALL_STATE(3055)] = 178278, + [SMALL_STATE(3056)] = 178296, + [SMALL_STATE(3057)] = 178314, + [SMALL_STATE(3058)] = 178332, + [SMALL_STATE(3059)] = 178362, + [SMALL_STATE(3060)] = 178392, + [SMALL_STATE(3061)] = 178422, + [SMALL_STATE(3062)] = 178440, + [SMALL_STATE(3063)] = 178458, + [SMALL_STATE(3064)] = 178476, + [SMALL_STATE(3065)] = 178494, + [SMALL_STATE(3066)] = 178522, + [SMALL_STATE(3067)] = 178540, + [SMALL_STATE(3068)] = 178558, + [SMALL_STATE(3069)] = 178576, + [SMALL_STATE(3070)] = 178594, + [SMALL_STATE(3071)] = 178612, + [SMALL_STATE(3072)] = 178630, + [SMALL_STATE(3073)] = 178648, + [SMALL_STATE(3074)] = 178678, + [SMALL_STATE(3075)] = 178696, + [SMALL_STATE(3076)] = 178718, + [SMALL_STATE(3077)] = 178748, + [SMALL_STATE(3078)] = 178778, + [SMALL_STATE(3079)] = 178808, + [SMALL_STATE(3080)] = 178826, + [SMALL_STATE(3081)] = 178844, + [SMALL_STATE(3082)] = 178862, + [SMALL_STATE(3083)] = 178880, + [SMALL_STATE(3084)] = 178910, + [SMALL_STATE(3085)] = 178940, + [SMALL_STATE(3086)] = 178960, + [SMALL_STATE(3087)] = 178982, + [SMALL_STATE(3088)] = 179012, + [SMALL_STATE(3089)] = 179032, + [SMALL_STATE(3090)] = 179062, + [SMALL_STATE(3091)] = 179080, + [SMALL_STATE(3092)] = 179110, + [SMALL_STATE(3093)] = 179128, + [SMALL_STATE(3094)] = 179146, + [SMALL_STATE(3095)] = 179172, + [SMALL_STATE(3096)] = 179197, + [SMALL_STATE(3097)] = 179228, + [SMALL_STATE(3098)] = 179259, + [SMALL_STATE(3099)] = 179284, + [SMALL_STATE(3100)] = 179306, + [SMALL_STATE(3101)] = 179322, + [SMALL_STATE(3102)] = 179350, + [SMALL_STATE(3103)] = 179378, + [SMALL_STATE(3104)] = 179406, + [SMALL_STATE(3105)] = 179434, + [SMALL_STATE(3106)] = 179462, + [SMALL_STATE(3107)] = 179490, + [SMALL_STATE(3108)] = 179518, + [SMALL_STATE(3109)] = 179546, + [SMALL_STATE(3110)] = 179568, + [SMALL_STATE(3111)] = 179590, + [SMALL_STATE(3112)] = 179612, + [SMALL_STATE(3113)] = 179634, + [SMALL_STATE(3114)] = 179656, + [SMALL_STATE(3115)] = 179678, + [SMALL_STATE(3116)] = 179700, + [SMALL_STATE(3117)] = 179722, + [SMALL_STATE(3118)] = 179744, + [SMALL_STATE(3119)] = 179766, + [SMALL_STATE(3120)] = 179788, + [SMALL_STATE(3121)] = 179810, + [SMALL_STATE(3122)] = 179832, + [SMALL_STATE(3123)] = 179854, + [SMALL_STATE(3124)] = 179876, + [SMALL_STATE(3125)] = 179898, + [SMALL_STATE(3126)] = 179920, + [SMALL_STATE(3127)] = 179942, + [SMALL_STATE(3128)] = 179964, + [SMALL_STATE(3129)] = 179986, + [SMALL_STATE(3130)] = 180008, + [SMALL_STATE(3131)] = 180030, + [SMALL_STATE(3132)] = 180052, + [SMALL_STATE(3133)] = 180074, + [SMALL_STATE(3134)] = 180096, + [SMALL_STATE(3135)] = 180118, + [SMALL_STATE(3136)] = 180140, + [SMALL_STATE(3137)] = 180162, + [SMALL_STATE(3138)] = 180184, + [SMALL_STATE(3139)] = 180206, + [SMALL_STATE(3140)] = 180228, + [SMALL_STATE(3141)] = 180250, + [SMALL_STATE(3142)] = 180272, + [SMALL_STATE(3143)] = 180294, + [SMALL_STATE(3144)] = 180316, + [SMALL_STATE(3145)] = 180338, + [SMALL_STATE(3146)] = 180360, + [SMALL_STATE(3147)] = 180382, + [SMALL_STATE(3148)] = 180404, + [SMALL_STATE(3149)] = 180426, + [SMALL_STATE(3150)] = 180448, + [SMALL_STATE(3151)] = 180470, + [SMALL_STATE(3152)] = 180492, + [SMALL_STATE(3153)] = 180514, + [SMALL_STATE(3154)] = 180536, + [SMALL_STATE(3155)] = 180558, + [SMALL_STATE(3156)] = 180580, + [SMALL_STATE(3157)] = 180602, + [SMALL_STATE(3158)] = 180624, + [SMALL_STATE(3159)] = 180646, + [SMALL_STATE(3160)] = 180668, + [SMALL_STATE(3161)] = 180690, + [SMALL_STATE(3162)] = 180712, + [SMALL_STATE(3163)] = 180734, + [SMALL_STATE(3164)] = 180756, + [SMALL_STATE(3165)] = 180778, + [SMALL_STATE(3166)] = 180800, + [SMALL_STATE(3167)] = 180822, + [SMALL_STATE(3168)] = 180844, + [SMALL_STATE(3169)] = 180866, + [SMALL_STATE(3170)] = 180888, + [SMALL_STATE(3171)] = 180910, + [SMALL_STATE(3172)] = 180932, + [SMALL_STATE(3173)] = 180954, + [SMALL_STATE(3174)] = 180976, + [SMALL_STATE(3175)] = 180998, + [SMALL_STATE(3176)] = 181020, + [SMALL_STATE(3177)] = 181042, + [SMALL_STATE(3178)] = 181064, + [SMALL_STATE(3179)] = 181086, + [SMALL_STATE(3180)] = 181108, + [SMALL_STATE(3181)] = 181130, + [SMALL_STATE(3182)] = 181152, + [SMALL_STATE(3183)] = 181174, + [SMALL_STATE(3184)] = 181196, + [SMALL_STATE(3185)] = 181218, + [SMALL_STATE(3186)] = 181240, + [SMALL_STATE(3187)] = 181262, + [SMALL_STATE(3188)] = 181284, + [SMALL_STATE(3189)] = 181306, + [SMALL_STATE(3190)] = 181328, + [SMALL_STATE(3191)] = 181350, + [SMALL_STATE(3192)] = 181372, + [SMALL_STATE(3193)] = 181394, + [SMALL_STATE(3194)] = 181416, + [SMALL_STATE(3195)] = 181438, + [SMALL_STATE(3196)] = 181460, + [SMALL_STATE(3197)] = 181482, + [SMALL_STATE(3198)] = 181504, + [SMALL_STATE(3199)] = 181526, + [SMALL_STATE(3200)] = 181548, + [SMALL_STATE(3201)] = 181570, + [SMALL_STATE(3202)] = 181592, + [SMALL_STATE(3203)] = 181614, + [SMALL_STATE(3204)] = 181636, + [SMALL_STATE(3205)] = 181658, + [SMALL_STATE(3206)] = 181680, + [SMALL_STATE(3207)] = 181702, + [SMALL_STATE(3208)] = 181724, + [SMALL_STATE(3209)] = 181746, + [SMALL_STATE(3210)] = 181768, + [SMALL_STATE(3211)] = 181790, + [SMALL_STATE(3212)] = 181812, + [SMALL_STATE(3213)] = 181834, + [SMALL_STATE(3214)] = 181856, + [SMALL_STATE(3215)] = 181878, + [SMALL_STATE(3216)] = 181900, + [SMALL_STATE(3217)] = 181922, + [SMALL_STATE(3218)] = 181944, + [SMALL_STATE(3219)] = 181966, + [SMALL_STATE(3220)] = 181988, + [SMALL_STATE(3221)] = 182010, + [SMALL_STATE(3222)] = 182032, + [SMALL_STATE(3223)] = 182054, + [SMALL_STATE(3224)] = 182076, + [SMALL_STATE(3225)] = 182098, + [SMALL_STATE(3226)] = 182120, + [SMALL_STATE(3227)] = 182142, + [SMALL_STATE(3228)] = 182164, + [SMALL_STATE(3229)] = 182186, + [SMALL_STATE(3230)] = 182208, + [SMALL_STATE(3231)] = 182230, + [SMALL_STATE(3232)] = 182252, + [SMALL_STATE(3233)] = 182274, + [SMALL_STATE(3234)] = 182296, + [SMALL_STATE(3235)] = 182318, + [SMALL_STATE(3236)] = 182340, + [SMALL_STATE(3237)] = 182362, + [SMALL_STATE(3238)] = 182384, + [SMALL_STATE(3239)] = 182406, + [SMALL_STATE(3240)] = 182428, + [SMALL_STATE(3241)] = 182450, + [SMALL_STATE(3242)] = 182472, + [SMALL_STATE(3243)] = 182494, + [SMALL_STATE(3244)] = 182516, + [SMALL_STATE(3245)] = 182538, + [SMALL_STATE(3246)] = 182560, + [SMALL_STATE(3247)] = 182582, + [SMALL_STATE(3248)] = 182604, + [SMALL_STATE(3249)] = 182626, + [SMALL_STATE(3250)] = 182648, + [SMALL_STATE(3251)] = 182670, + [SMALL_STATE(3252)] = 182692, + [SMALL_STATE(3253)] = 182714, + [SMALL_STATE(3254)] = 182736, + [SMALL_STATE(3255)] = 182758, + [SMALL_STATE(3256)] = 182780, + [SMALL_STATE(3257)] = 182802, + [SMALL_STATE(3258)] = 182824, + [SMALL_STATE(3259)] = 182846, + [SMALL_STATE(3260)] = 182868, + [SMALL_STATE(3261)] = 182890, + [SMALL_STATE(3262)] = 182912, + [SMALL_STATE(3263)] = 182934, + [SMALL_STATE(3264)] = 182956, + [SMALL_STATE(3265)] = 182978, + [SMALL_STATE(3266)] = 183000, + [SMALL_STATE(3267)] = 183022, + [SMALL_STATE(3268)] = 183044, + [SMALL_STATE(3269)] = 183066, + [SMALL_STATE(3270)] = 183088, + [SMALL_STATE(3271)] = 183110, + [SMALL_STATE(3272)] = 183132, + [SMALL_STATE(3273)] = 183154, + [SMALL_STATE(3274)] = 183176, + [SMALL_STATE(3275)] = 183198, + [SMALL_STATE(3276)] = 183220, + [SMALL_STATE(3277)] = 183242, + [SMALL_STATE(3278)] = 183264, + [SMALL_STATE(3279)] = 183286, + [SMALL_STATE(3280)] = 183308, + [SMALL_STATE(3281)] = 183330, + [SMALL_STATE(3282)] = 183352, + [SMALL_STATE(3283)] = 183374, + [SMALL_STATE(3284)] = 183396, + [SMALL_STATE(3285)] = 183418, + [SMALL_STATE(3286)] = 183440, + [SMALL_STATE(3287)] = 183462, + [SMALL_STATE(3288)] = 183484, + [SMALL_STATE(3289)] = 183506, + [SMALL_STATE(3290)] = 183528, + [SMALL_STATE(3291)] = 183550, + [SMALL_STATE(3292)] = 183572, + [SMALL_STATE(3293)] = 183594, + [SMALL_STATE(3294)] = 183616, + [SMALL_STATE(3295)] = 183638, + [SMALL_STATE(3296)] = 183660, + [SMALL_STATE(3297)] = 183682, + [SMALL_STATE(3298)] = 183704, + [SMALL_STATE(3299)] = 183726, + [SMALL_STATE(3300)] = 183748, + [SMALL_STATE(3301)] = 183770, + [SMALL_STATE(3302)] = 183792, + [SMALL_STATE(3303)] = 183814, + [SMALL_STATE(3304)] = 183836, + [SMALL_STATE(3305)] = 183858, + [SMALL_STATE(3306)] = 183880, + [SMALL_STATE(3307)] = 183902, + [SMALL_STATE(3308)] = 183924, + [SMALL_STATE(3309)] = 183946, + [SMALL_STATE(3310)] = 183968, + [SMALL_STATE(3311)] = 183990, + [SMALL_STATE(3312)] = 184012, + [SMALL_STATE(3313)] = 184034, + [SMALL_STATE(3314)] = 184056, + [SMALL_STATE(3315)] = 184078, + [SMALL_STATE(3316)] = 184100, + [SMALL_STATE(3317)] = 184122, + [SMALL_STATE(3318)] = 184144, + [SMALL_STATE(3319)] = 184166, + [SMALL_STATE(3320)] = 184188, + [SMALL_STATE(3321)] = 184210, + [SMALL_STATE(3322)] = 184232, + [SMALL_STATE(3323)] = 184254, + [SMALL_STATE(3324)] = 184276, + [SMALL_STATE(3325)] = 184298, + [SMALL_STATE(3326)] = 184320, + [SMALL_STATE(3327)] = 184342, + [SMALL_STATE(3328)] = 184364, + [SMALL_STATE(3329)] = 184386, + [SMALL_STATE(3330)] = 184408, + [SMALL_STATE(3331)] = 184430, + [SMALL_STATE(3332)] = 184452, + [SMALL_STATE(3333)] = 184474, + [SMALL_STATE(3334)] = 184496, + [SMALL_STATE(3335)] = 184518, + [SMALL_STATE(3336)] = 184540, + [SMALL_STATE(3337)] = 184562, + [SMALL_STATE(3338)] = 184584, + [SMALL_STATE(3339)] = 184606, + [SMALL_STATE(3340)] = 184628, + [SMALL_STATE(3341)] = 184650, + [SMALL_STATE(3342)] = 184672, + [SMALL_STATE(3343)] = 184694, + [SMALL_STATE(3344)] = 184716, + [SMALL_STATE(3345)] = 184738, + [SMALL_STATE(3346)] = 184760, + [SMALL_STATE(3347)] = 184782, + [SMALL_STATE(3348)] = 184804, + [SMALL_STATE(3349)] = 184826, + [SMALL_STATE(3350)] = 184848, + [SMALL_STATE(3351)] = 184870, + [SMALL_STATE(3352)] = 184892, + [SMALL_STATE(3353)] = 184914, + [SMALL_STATE(3354)] = 184936, + [SMALL_STATE(3355)] = 184958, + [SMALL_STATE(3356)] = 184980, + [SMALL_STATE(3357)] = 185002, + [SMALL_STATE(3358)] = 185024, + [SMALL_STATE(3359)] = 185046, + [SMALL_STATE(3360)] = 185068, + [SMALL_STATE(3361)] = 185090, + [SMALL_STATE(3362)] = 185112, + [SMALL_STATE(3363)] = 185134, + [SMALL_STATE(3364)] = 185156, + [SMALL_STATE(3365)] = 185178, + [SMALL_STATE(3366)] = 185200, + [SMALL_STATE(3367)] = 185222, + [SMALL_STATE(3368)] = 185244, + [SMALL_STATE(3369)] = 185266, + [SMALL_STATE(3370)] = 185288, + [SMALL_STATE(3371)] = 185310, + [SMALL_STATE(3372)] = 185332, + [SMALL_STATE(3373)] = 185354, + [SMALL_STATE(3374)] = 185376, + [SMALL_STATE(3375)] = 185398, + [SMALL_STATE(3376)] = 185420, + [SMALL_STATE(3377)] = 185442, + [SMALL_STATE(3378)] = 185464, + [SMALL_STATE(3379)] = 185486, + [SMALL_STATE(3380)] = 185508, + [SMALL_STATE(3381)] = 185530, + [SMALL_STATE(3382)] = 185552, + [SMALL_STATE(3383)] = 185574, + [SMALL_STATE(3384)] = 185596, + [SMALL_STATE(3385)] = 185618, + [SMALL_STATE(3386)] = 185640, + [SMALL_STATE(3387)] = 185662, + [SMALL_STATE(3388)] = 185684, + [SMALL_STATE(3389)] = 185706, + [SMALL_STATE(3390)] = 185728, + [SMALL_STATE(3391)] = 185750, + [SMALL_STATE(3392)] = 185772, + [SMALL_STATE(3393)] = 185794, + [SMALL_STATE(3394)] = 185816, + [SMALL_STATE(3395)] = 185838, + [SMALL_STATE(3396)] = 185860, + [SMALL_STATE(3397)] = 185882, + [SMALL_STATE(3398)] = 185898, + [SMALL_STATE(3399)] = 185920, + [SMALL_STATE(3400)] = 185942, + [SMALL_STATE(3401)] = 185964, + [SMALL_STATE(3402)] = 185986, + [SMALL_STATE(3403)] = 186008, + [SMALL_STATE(3404)] = 186030, + [SMALL_STATE(3405)] = 186052, + [SMALL_STATE(3406)] = 186074, + [SMALL_STATE(3407)] = 186096, + [SMALL_STATE(3408)] = 186118, + [SMALL_STATE(3409)] = 186140, + [SMALL_STATE(3410)] = 186162, + [SMALL_STATE(3411)] = 186184, + [SMALL_STATE(3412)] = 186206, + [SMALL_STATE(3413)] = 186228, + [SMALL_STATE(3414)] = 186250, + [SMALL_STATE(3415)] = 186278, + [SMALL_STATE(3416)] = 186300, + [SMALL_STATE(3417)] = 186319, + [SMALL_STATE(3418)] = 186338, + [SMALL_STATE(3419)] = 186357, + [SMALL_STATE(3420)] = 186376, + [SMALL_STATE(3421)] = 186395, + [SMALL_STATE(3422)] = 186414, + [SMALL_STATE(3423)] = 186433, + [SMALL_STATE(3424)] = 186452, + [SMALL_STATE(3425)] = 186471, + [SMALL_STATE(3426)] = 186490, + [SMALL_STATE(3427)] = 186509, + [SMALL_STATE(3428)] = 186528, + [SMALL_STATE(3429)] = 186547, + [SMALL_STATE(3430)] = 186566, + [SMALL_STATE(3431)] = 186585, + [SMALL_STATE(3432)] = 186604, + [SMALL_STATE(3433)] = 186623, + [SMALL_STATE(3434)] = 186642, + [SMALL_STATE(3435)] = 186661, + [SMALL_STATE(3436)] = 186680, + [SMALL_STATE(3437)] = 186699, + [SMALL_STATE(3438)] = 186718, + [SMALL_STATE(3439)] = 186737, + [SMALL_STATE(3440)] = 186756, + [SMALL_STATE(3441)] = 186775, + [SMALL_STATE(3442)] = 186794, + [SMALL_STATE(3443)] = 186813, + [SMALL_STATE(3444)] = 186832, + [SMALL_STATE(3445)] = 186851, + [SMALL_STATE(3446)] = 186870, + [SMALL_STATE(3447)] = 186889, + [SMALL_STATE(3448)] = 186908, + [SMALL_STATE(3449)] = 186927, + [SMALL_STATE(3450)] = 186946, + [SMALL_STATE(3451)] = 186965, + [SMALL_STATE(3452)] = 186984, + [SMALL_STATE(3453)] = 187003, + [SMALL_STATE(3454)] = 187022, + [SMALL_STATE(3455)] = 187041, + [SMALL_STATE(3456)] = 187060, + [SMALL_STATE(3457)] = 187079, + [SMALL_STATE(3458)] = 187098, + [SMALL_STATE(3459)] = 187117, + [SMALL_STATE(3460)] = 187136, + [SMALL_STATE(3461)] = 187155, + [SMALL_STATE(3462)] = 187174, + [SMALL_STATE(3463)] = 187193, + [SMALL_STATE(3464)] = 187212, + [SMALL_STATE(3465)] = 187231, + [SMALL_STATE(3466)] = 187250, + [SMALL_STATE(3467)] = 187269, + [SMALL_STATE(3468)] = 187288, + [SMALL_STATE(3469)] = 187307, + [SMALL_STATE(3470)] = 187326, + [SMALL_STATE(3471)] = 187345, + [SMALL_STATE(3472)] = 187364, + [SMALL_STATE(3473)] = 187383, + [SMALL_STATE(3474)] = 187402, + [SMALL_STATE(3475)] = 187421, + [SMALL_STATE(3476)] = 187440, + [SMALL_STATE(3477)] = 187459, + [SMALL_STATE(3478)] = 187478, + [SMALL_STATE(3479)] = 187497, + [SMALL_STATE(3480)] = 187516, + [SMALL_STATE(3481)] = 187535, + [SMALL_STATE(3482)] = 187554, + [SMALL_STATE(3483)] = 187573, + [SMALL_STATE(3484)] = 187592, + [SMALL_STATE(3485)] = 187611, + [SMALL_STATE(3486)] = 187630, + [SMALL_STATE(3487)] = 187649, + [SMALL_STATE(3488)] = 187668, + [SMALL_STATE(3489)] = 187687, + [SMALL_STATE(3490)] = 187706, + [SMALL_STATE(3491)] = 187725, + [SMALL_STATE(3492)] = 187744, + [SMALL_STATE(3493)] = 187763, + [SMALL_STATE(3494)] = 187782, + [SMALL_STATE(3495)] = 187801, + [SMALL_STATE(3496)] = 187820, + [SMALL_STATE(3497)] = 187839, + [SMALL_STATE(3498)] = 187858, + [SMALL_STATE(3499)] = 187877, + [SMALL_STATE(3500)] = 187896, + [SMALL_STATE(3501)] = 187915, + [SMALL_STATE(3502)] = 187934, + [SMALL_STATE(3503)] = 187953, + [SMALL_STATE(3504)] = 187972, + [SMALL_STATE(3505)] = 187991, + [SMALL_STATE(3506)] = 188010, + [SMALL_STATE(3507)] = 188029, + [SMALL_STATE(3508)] = 188048, + [SMALL_STATE(3509)] = 188067, + [SMALL_STATE(3510)] = 188086, + [SMALL_STATE(3511)] = 188105, + [SMALL_STATE(3512)] = 188124, + [SMALL_STATE(3513)] = 188143, + [SMALL_STATE(3514)] = 188162, + [SMALL_STATE(3515)] = 188181, + [SMALL_STATE(3516)] = 188200, + [SMALL_STATE(3517)] = 188219, + [SMALL_STATE(3518)] = 188238, + [SMALL_STATE(3519)] = 188257, + [SMALL_STATE(3520)] = 188276, + [SMALL_STATE(3521)] = 188295, + [SMALL_STATE(3522)] = 188314, + [SMALL_STATE(3523)] = 188333, + [SMALL_STATE(3524)] = 188352, + [SMALL_STATE(3525)] = 188371, + [SMALL_STATE(3526)] = 188390, + [SMALL_STATE(3527)] = 188409, + [SMALL_STATE(3528)] = 188428, + [SMALL_STATE(3529)] = 188447, + [SMALL_STATE(3530)] = 188466, + [SMALL_STATE(3531)] = 188485, + [SMALL_STATE(3532)] = 188504, + [SMALL_STATE(3533)] = 188523, + [SMALL_STATE(3534)] = 188542, + [SMALL_STATE(3535)] = 188561, + [SMALL_STATE(3536)] = 188580, + [SMALL_STATE(3537)] = 188599, + [SMALL_STATE(3538)] = 188618, + [SMALL_STATE(3539)] = 188637, + [SMALL_STATE(3540)] = 188656, + [SMALL_STATE(3541)] = 188675, + [SMALL_STATE(3542)] = 188694, + [SMALL_STATE(3543)] = 188713, + [SMALL_STATE(3544)] = 188732, + [SMALL_STATE(3545)] = 188751, + [SMALL_STATE(3546)] = 188770, + [SMALL_STATE(3547)] = 188789, + [SMALL_STATE(3548)] = 188808, + [SMALL_STATE(3549)] = 188827, + [SMALL_STATE(3550)] = 188846, + [SMALL_STATE(3551)] = 188865, + [SMALL_STATE(3552)] = 188884, + [SMALL_STATE(3553)] = 188903, + [SMALL_STATE(3554)] = 188922, + [SMALL_STATE(3555)] = 188941, + [SMALL_STATE(3556)] = 188960, + [SMALL_STATE(3557)] = 188979, + [SMALL_STATE(3558)] = 188998, + [SMALL_STATE(3559)] = 189017, + [SMALL_STATE(3560)] = 189036, + [SMALL_STATE(3561)] = 189055, + [SMALL_STATE(3562)] = 189074, + [SMALL_STATE(3563)] = 189093, + [SMALL_STATE(3564)] = 189112, + [SMALL_STATE(3565)] = 189131, + [SMALL_STATE(3566)] = 189150, + [SMALL_STATE(3567)] = 189169, + [SMALL_STATE(3568)] = 189188, + [SMALL_STATE(3569)] = 189207, + [SMALL_STATE(3570)] = 189226, + [SMALL_STATE(3571)] = 189245, + [SMALL_STATE(3572)] = 189264, + [SMALL_STATE(3573)] = 189283, + [SMALL_STATE(3574)] = 189302, + [SMALL_STATE(3575)] = 189321, + [SMALL_STATE(3576)] = 189340, + [SMALL_STATE(3577)] = 189359, + [SMALL_STATE(3578)] = 189378, + [SMALL_STATE(3579)] = 189397, + [SMALL_STATE(3580)] = 189416, + [SMALL_STATE(3581)] = 189435, + [SMALL_STATE(3582)] = 189454, + [SMALL_STATE(3583)] = 189473, + [SMALL_STATE(3584)] = 189492, + [SMALL_STATE(3585)] = 189511, + [SMALL_STATE(3586)] = 189530, + [SMALL_STATE(3587)] = 189549, + [SMALL_STATE(3588)] = 189568, + [SMALL_STATE(3589)] = 189587, + [SMALL_STATE(3590)] = 189606, + [SMALL_STATE(3591)] = 189625, + [SMALL_STATE(3592)] = 189644, + [SMALL_STATE(3593)] = 189663, + [SMALL_STATE(3594)] = 189682, + [SMALL_STATE(3595)] = 189701, + [SMALL_STATE(3596)] = 189720, + [SMALL_STATE(3597)] = 189739, + [SMALL_STATE(3598)] = 189758, + [SMALL_STATE(3599)] = 189777, + [SMALL_STATE(3600)] = 189796, + [SMALL_STATE(3601)] = 189815, + [SMALL_STATE(3602)] = 189834, + [SMALL_STATE(3603)] = 189853, + [SMALL_STATE(3604)] = 189872, + [SMALL_STATE(3605)] = 189891, + [SMALL_STATE(3606)] = 189910, + [SMALL_STATE(3607)] = 189929, + [SMALL_STATE(3608)] = 189948, + [SMALL_STATE(3609)] = 189967, + [SMALL_STATE(3610)] = 189986, + [SMALL_STATE(3611)] = 190005, + [SMALL_STATE(3612)] = 190024, + [SMALL_STATE(3613)] = 190043, + [SMALL_STATE(3614)] = 190062, + [SMALL_STATE(3615)] = 190081, + [SMALL_STATE(3616)] = 190100, + [SMALL_STATE(3617)] = 190119, + [SMALL_STATE(3618)] = 190138, + [SMALL_STATE(3619)] = 190157, + [SMALL_STATE(3620)] = 190176, + [SMALL_STATE(3621)] = 190195, + [SMALL_STATE(3622)] = 190214, + [SMALL_STATE(3623)] = 190233, + [SMALL_STATE(3624)] = 190252, + [SMALL_STATE(3625)] = 190271, + [SMALL_STATE(3626)] = 190290, + [SMALL_STATE(3627)] = 190309, + [SMALL_STATE(3628)] = 190328, + [SMALL_STATE(3629)] = 190347, + [SMALL_STATE(3630)] = 190366, + [SMALL_STATE(3631)] = 190385, + [SMALL_STATE(3632)] = 190404, + [SMALL_STATE(3633)] = 190423, + [SMALL_STATE(3634)] = 190442, + [SMALL_STATE(3635)] = 190461, + [SMALL_STATE(3636)] = 190480, + [SMALL_STATE(3637)] = 190499, + [SMALL_STATE(3638)] = 190518, + [SMALL_STATE(3639)] = 190537, + [SMALL_STATE(3640)] = 190556, + [SMALL_STATE(3641)] = 190575, + [SMALL_STATE(3642)] = 190594, + [SMALL_STATE(3643)] = 190613, + [SMALL_STATE(3644)] = 190632, + [SMALL_STATE(3645)] = 190651, + [SMALL_STATE(3646)] = 190670, + [SMALL_STATE(3647)] = 190689, + [SMALL_STATE(3648)] = 190708, + [SMALL_STATE(3649)] = 190727, + [SMALL_STATE(3650)] = 190746, + [SMALL_STATE(3651)] = 190765, + [SMALL_STATE(3652)] = 190784, + [SMALL_STATE(3653)] = 190803, + [SMALL_STATE(3654)] = 190822, + [SMALL_STATE(3655)] = 190841, + [SMALL_STATE(3656)] = 190860, + [SMALL_STATE(3657)] = 190879, + [SMALL_STATE(3658)] = 190898, + [SMALL_STATE(3659)] = 190917, + [SMALL_STATE(3660)] = 190936, + [SMALL_STATE(3661)] = 190955, + [SMALL_STATE(3662)] = 190974, + [SMALL_STATE(3663)] = 190993, + [SMALL_STATE(3664)] = 191012, + [SMALL_STATE(3665)] = 191031, + [SMALL_STATE(3666)] = 191050, + [SMALL_STATE(3667)] = 191069, + [SMALL_STATE(3668)] = 191088, + [SMALL_STATE(3669)] = 191107, + [SMALL_STATE(3670)] = 191126, + [SMALL_STATE(3671)] = 191145, + [SMALL_STATE(3672)] = 191164, + [SMALL_STATE(3673)] = 191183, + [SMALL_STATE(3674)] = 191202, + [SMALL_STATE(3675)] = 191221, + [SMALL_STATE(3676)] = 191240, + [SMALL_STATE(3677)] = 191259, + [SMALL_STATE(3678)] = 191278, + [SMALL_STATE(3679)] = 191297, + [SMALL_STATE(3680)] = 191316, + [SMALL_STATE(3681)] = 191335, + [SMALL_STATE(3682)] = 191354, + [SMALL_STATE(3683)] = 191373, + [SMALL_STATE(3684)] = 191392, + [SMALL_STATE(3685)] = 191411, + [SMALL_STATE(3686)] = 191430, + [SMALL_STATE(3687)] = 191449, + [SMALL_STATE(3688)] = 191468, + [SMALL_STATE(3689)] = 191487, + [SMALL_STATE(3690)] = 191506, + [SMALL_STATE(3691)] = 191525, + [SMALL_STATE(3692)] = 191544, + [SMALL_STATE(3693)] = 191563, + [SMALL_STATE(3694)] = 191582, + [SMALL_STATE(3695)] = 191601, + [SMALL_STATE(3696)] = 191620, + [SMALL_STATE(3697)] = 191639, + [SMALL_STATE(3698)] = 191658, + [SMALL_STATE(3699)] = 191677, + [SMALL_STATE(3700)] = 191696, + [SMALL_STATE(3701)] = 191715, + [SMALL_STATE(3702)] = 191734, + [SMALL_STATE(3703)] = 191753, + [SMALL_STATE(3704)] = 191772, + [SMALL_STATE(3705)] = 191791, + [SMALL_STATE(3706)] = 191810, + [SMALL_STATE(3707)] = 191829, + [SMALL_STATE(3708)] = 191848, + [SMALL_STATE(3709)] = 191867, + [SMALL_STATE(3710)] = 191886, + [SMALL_STATE(3711)] = 191905, + [SMALL_STATE(3712)] = 191924, + [SMALL_STATE(3713)] = 191943, + [SMALL_STATE(3714)] = 191962, + [SMALL_STATE(3715)] = 191981, + [SMALL_STATE(3716)] = 192000, + [SMALL_STATE(3717)] = 192019, + [SMALL_STATE(3718)] = 192038, + [SMALL_STATE(3719)] = 192057, + [SMALL_STATE(3720)] = 192076, + [SMALL_STATE(3721)] = 192095, + [SMALL_STATE(3722)] = 192114, + [SMALL_STATE(3723)] = 192133, + [SMALL_STATE(3724)] = 192152, + [SMALL_STATE(3725)] = 192171, + [SMALL_STATE(3726)] = 192190, + [SMALL_STATE(3727)] = 192209, + [SMALL_STATE(3728)] = 192228, + [SMALL_STATE(3729)] = 192247, + [SMALL_STATE(3730)] = 192266, + [SMALL_STATE(3731)] = 192285, + [SMALL_STATE(3732)] = 192304, + [SMALL_STATE(3733)] = 192323, + [SMALL_STATE(3734)] = 192342, + [SMALL_STATE(3735)] = 192361, + [SMALL_STATE(3736)] = 192380, + [SMALL_STATE(3737)] = 192399, + [SMALL_STATE(3738)] = 192418, + [SMALL_STATE(3739)] = 192437, + [SMALL_STATE(3740)] = 192456, + [SMALL_STATE(3741)] = 192475, + [SMALL_STATE(3742)] = 192494, + [SMALL_STATE(3743)] = 192513, + [SMALL_STATE(3744)] = 192532, + [SMALL_STATE(3745)] = 192551, + [SMALL_STATE(3746)] = 192570, + [SMALL_STATE(3747)] = 192589, + [SMALL_STATE(3748)] = 192608, + [SMALL_STATE(3749)] = 192627, + [SMALL_STATE(3750)] = 192646, + [SMALL_STATE(3751)] = 192665, + [SMALL_STATE(3752)] = 192684, + [SMALL_STATE(3753)] = 192703, + [SMALL_STATE(3754)] = 192722, + [SMALL_STATE(3755)] = 192741, + [SMALL_STATE(3756)] = 192760, + [SMALL_STATE(3757)] = 192779, + [SMALL_STATE(3758)] = 192798, + [SMALL_STATE(3759)] = 192817, + [SMALL_STATE(3760)] = 192836, + [SMALL_STATE(3761)] = 192855, + [SMALL_STATE(3762)] = 192874, + [SMALL_STATE(3763)] = 192893, + [SMALL_STATE(3764)] = 192912, + [SMALL_STATE(3765)] = 192931, + [SMALL_STATE(3766)] = 192950, + [SMALL_STATE(3767)] = 192969, + [SMALL_STATE(3768)] = 192988, + [SMALL_STATE(3769)] = 193007, + [SMALL_STATE(3770)] = 193026, + [SMALL_STATE(3771)] = 193045, + [SMALL_STATE(3772)] = 193064, + [SMALL_STATE(3773)] = 193083, + [SMALL_STATE(3774)] = 193102, + [SMALL_STATE(3775)] = 193121, + [SMALL_STATE(3776)] = 193140, + [SMALL_STATE(3777)] = 193159, + [SMALL_STATE(3778)] = 193178, + [SMALL_STATE(3779)] = 193197, + [SMALL_STATE(3780)] = 193216, + [SMALL_STATE(3781)] = 193235, + [SMALL_STATE(3782)] = 193254, + [SMALL_STATE(3783)] = 193273, + [SMALL_STATE(3784)] = 193292, + [SMALL_STATE(3785)] = 193311, + [SMALL_STATE(3786)] = 193330, + [SMALL_STATE(3787)] = 193349, + [SMALL_STATE(3788)] = 193368, + [SMALL_STATE(3789)] = 193387, + [SMALL_STATE(3790)] = 193406, + [SMALL_STATE(3791)] = 193425, + [SMALL_STATE(3792)] = 193444, + [SMALL_STATE(3793)] = 193463, + [SMALL_STATE(3794)] = 193482, + [SMALL_STATE(3795)] = 193501, + [SMALL_STATE(3796)] = 193520, + [SMALL_STATE(3797)] = 193539, + [SMALL_STATE(3798)] = 193558, + [SMALL_STATE(3799)] = 193577, + [SMALL_STATE(3800)] = 193596, + [SMALL_STATE(3801)] = 193615, + [SMALL_STATE(3802)] = 193634, + [SMALL_STATE(3803)] = 193653, + [SMALL_STATE(3804)] = 193672, + [SMALL_STATE(3805)] = 193691, + [SMALL_STATE(3806)] = 193710, + [SMALL_STATE(3807)] = 193729, + [SMALL_STATE(3808)] = 193748, + [SMALL_STATE(3809)] = 193767, + [SMALL_STATE(3810)] = 193786, + [SMALL_STATE(3811)] = 193805, + [SMALL_STATE(3812)] = 193824, + [SMALL_STATE(3813)] = 193843, + [SMALL_STATE(3814)] = 193862, + [SMALL_STATE(3815)] = 193881, + [SMALL_STATE(3816)] = 193900, + [SMALL_STATE(3817)] = 193919, + [SMALL_STATE(3818)] = 193938, + [SMALL_STATE(3819)] = 193957, + [SMALL_STATE(3820)] = 193976, + [SMALL_STATE(3821)] = 193995, + [SMALL_STATE(3822)] = 194014, + [SMALL_STATE(3823)] = 194033, + [SMALL_STATE(3824)] = 194052, + [SMALL_STATE(3825)] = 194071, + [SMALL_STATE(3826)] = 194090, + [SMALL_STATE(3827)] = 194109, + [SMALL_STATE(3828)] = 194128, + [SMALL_STATE(3829)] = 194147, + [SMALL_STATE(3830)] = 194166, + [SMALL_STATE(3831)] = 194185, + [SMALL_STATE(3832)] = 194204, + [SMALL_STATE(3833)] = 194223, + [SMALL_STATE(3834)] = 194242, + [SMALL_STATE(3835)] = 194261, + [SMALL_STATE(3836)] = 194280, + [SMALL_STATE(3837)] = 194299, + [SMALL_STATE(3838)] = 194318, + [SMALL_STATE(3839)] = 194337, + [SMALL_STATE(3840)] = 194356, + [SMALL_STATE(3841)] = 194375, + [SMALL_STATE(3842)] = 194394, + [SMALL_STATE(3843)] = 194413, + [SMALL_STATE(3844)] = 194432, + [SMALL_STATE(3845)] = 194451, + [SMALL_STATE(3846)] = 194470, + [SMALL_STATE(3847)] = 194489, + [SMALL_STATE(3848)] = 194508, + [SMALL_STATE(3849)] = 194527, + [SMALL_STATE(3850)] = 194546, + [SMALL_STATE(3851)] = 194565, + [SMALL_STATE(3852)] = 194584, + [SMALL_STATE(3853)] = 194603, + [SMALL_STATE(3854)] = 194622, + [SMALL_STATE(3855)] = 194641, + [SMALL_STATE(3856)] = 194660, + [SMALL_STATE(3857)] = 194679, + [SMALL_STATE(3858)] = 194698, + [SMALL_STATE(3859)] = 194717, + [SMALL_STATE(3860)] = 194736, + [SMALL_STATE(3861)] = 194755, + [SMALL_STATE(3862)] = 194774, + [SMALL_STATE(3863)] = 194793, + [SMALL_STATE(3864)] = 194812, + [SMALL_STATE(3865)] = 194831, + [SMALL_STATE(3866)] = 194850, + [SMALL_STATE(3867)] = 194869, + [SMALL_STATE(3868)] = 194888, + [SMALL_STATE(3869)] = 194907, + [SMALL_STATE(3870)] = 194926, + [SMALL_STATE(3871)] = 194945, + [SMALL_STATE(3872)] = 194964, + [SMALL_STATE(3873)] = 194983, + [SMALL_STATE(3874)] = 195002, + [SMALL_STATE(3875)] = 195021, + [SMALL_STATE(3876)] = 195040, + [SMALL_STATE(3877)] = 195058, + [SMALL_STATE(3878)] = 195076, + [SMALL_STATE(3879)] = 195094, + [SMALL_STATE(3880)] = 195112, + [SMALL_STATE(3881)] = 195130, + [SMALL_STATE(3882)] = 195148, + [SMALL_STATE(3883)] = 195166, + [SMALL_STATE(3884)] = 195184, + [SMALL_STATE(3885)] = 195202, + [SMALL_STATE(3886)] = 195220, + [SMALL_STATE(3887)] = 195238, + [SMALL_STATE(3888)] = 195256, + [SMALL_STATE(3889)] = 195274, + [SMALL_STATE(3890)] = 195292, + [SMALL_STATE(3891)] = 195310, + [SMALL_STATE(3892)] = 195328, + [SMALL_STATE(3893)] = 195346, + [SMALL_STATE(3894)] = 195364, + [SMALL_STATE(3895)] = 195382, + [SMALL_STATE(3896)] = 195400, + [SMALL_STATE(3897)] = 195418, + [SMALL_STATE(3898)] = 195436, + [SMALL_STATE(3899)] = 195454, + [SMALL_STATE(3900)] = 195472, + [SMALL_STATE(3901)] = 195490, + [SMALL_STATE(3902)] = 195508, + [SMALL_STATE(3903)] = 195526, + [SMALL_STATE(3904)] = 195544, + [SMALL_STATE(3905)] = 195562, + [SMALL_STATE(3906)] = 195580, + [SMALL_STATE(3907)] = 195598, + [SMALL_STATE(3908)] = 195616, + [SMALL_STATE(3909)] = 195634, + [SMALL_STATE(3910)] = 195652, + [SMALL_STATE(3911)] = 195670, + [SMALL_STATE(3912)] = 195688, + [SMALL_STATE(3913)] = 195706, + [SMALL_STATE(3914)] = 195724, + [SMALL_STATE(3915)] = 195742, + [SMALL_STATE(3916)] = 195760, + [SMALL_STATE(3917)] = 195778, + [SMALL_STATE(3918)] = 195796, + [SMALL_STATE(3919)] = 195814, + [SMALL_STATE(3920)] = 195832, + [SMALL_STATE(3921)] = 195850, + [SMALL_STATE(3922)] = 195868, + [SMALL_STATE(3923)] = 195886, + [SMALL_STATE(3924)] = 195904, + [SMALL_STATE(3925)] = 195922, + [SMALL_STATE(3926)] = 195940, + [SMALL_STATE(3927)] = 195958, + [SMALL_STATE(3928)] = 195976, + [SMALL_STATE(3929)] = 195994, + [SMALL_STATE(3930)] = 196012, + [SMALL_STATE(3931)] = 196030, + [SMALL_STATE(3932)] = 196048, + [SMALL_STATE(3933)] = 196066, + [SMALL_STATE(3934)] = 196084, + [SMALL_STATE(3935)] = 196102, + [SMALL_STATE(3936)] = 196120, + [SMALL_STATE(3937)] = 196138, + [SMALL_STATE(3938)] = 196156, + [SMALL_STATE(3939)] = 196174, + [SMALL_STATE(3940)] = 196192, + [SMALL_STATE(3941)] = 196210, + [SMALL_STATE(3942)] = 196228, + [SMALL_STATE(3943)] = 196246, + [SMALL_STATE(3944)] = 196264, + [SMALL_STATE(3945)] = 196282, + [SMALL_STATE(3946)] = 196300, + [SMALL_STATE(3947)] = 196318, + [SMALL_STATE(3948)] = 196336, + [SMALL_STATE(3949)] = 196354, + [SMALL_STATE(3950)] = 196372, + [SMALL_STATE(3951)] = 196390, + [SMALL_STATE(3952)] = 196408, + [SMALL_STATE(3953)] = 196426, + [SMALL_STATE(3954)] = 196444, + [SMALL_STATE(3955)] = 196462, + [SMALL_STATE(3956)] = 196480, + [SMALL_STATE(3957)] = 196498, + [SMALL_STATE(3958)] = 196516, + [SMALL_STATE(3959)] = 196534, + [SMALL_STATE(3960)] = 196552, + [SMALL_STATE(3961)] = 196570, + [SMALL_STATE(3962)] = 196588, + [SMALL_STATE(3963)] = 196606, + [SMALL_STATE(3964)] = 196626, + [SMALL_STATE(3965)] = 196644, + [SMALL_STATE(3966)] = 196662, + [SMALL_STATE(3967)] = 196680, + [SMALL_STATE(3968)] = 196698, + [SMALL_STATE(3969)] = 196716, + [SMALL_STATE(3970)] = 196734, + [SMALL_STATE(3971)] = 196752, + [SMALL_STATE(3972)] = 196770, + [SMALL_STATE(3973)] = 196788, + [SMALL_STATE(3974)] = 196806, + [SMALL_STATE(3975)] = 196824, + [SMALL_STATE(3976)] = 196842, + [SMALL_STATE(3977)] = 196860, + [SMALL_STATE(3978)] = 196878, + [SMALL_STATE(3979)] = 196896, + [SMALL_STATE(3980)] = 196914, + [SMALL_STATE(3981)] = 196932, + [SMALL_STATE(3982)] = 196950, + [SMALL_STATE(3983)] = 196968, + [SMALL_STATE(3984)] = 196986, + [SMALL_STATE(3985)] = 197004, + [SMALL_STATE(3986)] = 197022, + [SMALL_STATE(3987)] = 197040, + [SMALL_STATE(3988)] = 197058, + [SMALL_STATE(3989)] = 197076, + [SMALL_STATE(3990)] = 197094, + [SMALL_STATE(3991)] = 197107, + [SMALL_STATE(3992)] = 197120, + [SMALL_STATE(3993)] = 197133, + [SMALL_STATE(3994)] = 197152, + [SMALL_STATE(3995)] = 197165, + [SMALL_STATE(3996)] = 197182, + [SMALL_STATE(3997)] = 197195, + [SMALL_STATE(3998)] = 197208, + [SMALL_STATE(3999)] = 197225, + [SMALL_STATE(4000)] = 197238, + [SMALL_STATE(4001)] = 197251, + [SMALL_STATE(4002)] = 197264, + [SMALL_STATE(4003)] = 197277, + [SMALL_STATE(4004)] = 197287, + [SMALL_STATE(4005)] = 197299, + [SMALL_STATE(4006)] = 197309, + [SMALL_STATE(4007)] = 197319, + [SMALL_STATE(4008)] = 197329, + [SMALL_STATE(4009)] = 197339, + [SMALL_STATE(4010)] = 197349, + [SMALL_STATE(4011)] = 197359, + [SMALL_STATE(4012)] = 197369, + [SMALL_STATE(4013)] = 197379, + [SMALL_STATE(4014)] = 197392, + [SMALL_STATE(4015)] = 197405, + [SMALL_STATE(4016)] = 197418, + [SMALL_STATE(4017)] = 197431, + [SMALL_STATE(4018)] = 197444, + [SMALL_STATE(4019)] = 197457, + [SMALL_STATE(4020)] = 197470, + [SMALL_STATE(4021)] = 197483, + [SMALL_STATE(4022)] = 197496, + [SMALL_STATE(4023)] = 197509, + [SMALL_STATE(4024)] = 197522, + [SMALL_STATE(4025)] = 197535, + [SMALL_STATE(4026)] = 197548, + [SMALL_STATE(4027)] = 197561, + [SMALL_STATE(4028)] = 197574, + [SMALL_STATE(4029)] = 197587, + [SMALL_STATE(4030)] = 197600, + [SMALL_STATE(4031)] = 197613, + [SMALL_STATE(4032)] = 197626, + [SMALL_STATE(4033)] = 197639, + [SMALL_STATE(4034)] = 197652, + [SMALL_STATE(4035)] = 197665, + [SMALL_STATE(4036)] = 197678, + [SMALL_STATE(4037)] = 197691, + [SMALL_STATE(4038)] = 197704, + [SMALL_STATE(4039)] = 197717, + [SMALL_STATE(4040)] = 197730, + [SMALL_STATE(4041)] = 197743, + [SMALL_STATE(4042)] = 197756, + [SMALL_STATE(4043)] = 197769, + [SMALL_STATE(4044)] = 197782, + [SMALL_STATE(4045)] = 197795, + [SMALL_STATE(4046)] = 197808, + [SMALL_STATE(4047)] = 197821, + [SMALL_STATE(4048)] = 197834, + [SMALL_STATE(4049)] = 197847, + [SMALL_STATE(4050)] = 197860, + [SMALL_STATE(4051)] = 197873, + [SMALL_STATE(4052)] = 197886, + [SMALL_STATE(4053)] = 197899, + [SMALL_STATE(4054)] = 197912, + [SMALL_STATE(4055)] = 197925, + [SMALL_STATE(4056)] = 197938, + [SMALL_STATE(4057)] = 197951, + [SMALL_STATE(4058)] = 197964, + [SMALL_STATE(4059)] = 197977, + [SMALL_STATE(4060)] = 197990, + [SMALL_STATE(4061)] = 198003, + [SMALL_STATE(4062)] = 198016, + [SMALL_STATE(4063)] = 198029, + [SMALL_STATE(4064)] = 198042, + [SMALL_STATE(4065)] = 198055, + [SMALL_STATE(4066)] = 198068, + [SMALL_STATE(4067)] = 198081, + [SMALL_STATE(4068)] = 198094, + [SMALL_STATE(4069)] = 198107, + [SMALL_STATE(4070)] = 198120, + [SMALL_STATE(4071)] = 198133, + [SMALL_STATE(4072)] = 198146, + [SMALL_STATE(4073)] = 198159, + [SMALL_STATE(4074)] = 198172, + [SMALL_STATE(4075)] = 198185, + [SMALL_STATE(4076)] = 198198, + [SMALL_STATE(4077)] = 198211, + [SMALL_STATE(4078)] = 198224, + [SMALL_STATE(4079)] = 198237, + [SMALL_STATE(4080)] = 198250, + [SMALL_STATE(4081)] = 198263, + [SMALL_STATE(4082)] = 198276, + [SMALL_STATE(4083)] = 198289, + [SMALL_STATE(4084)] = 198302, + [SMALL_STATE(4085)] = 198315, + [SMALL_STATE(4086)] = 198328, + [SMALL_STATE(4087)] = 198341, + [SMALL_STATE(4088)] = 198354, + [SMALL_STATE(4089)] = 198364, + [SMALL_STATE(4090)] = 198374, + [SMALL_STATE(4091)] = 198384, + [SMALL_STATE(4092)] = 198394, + [SMALL_STATE(4093)] = 198404, + [SMALL_STATE(4094)] = 198414, + [SMALL_STATE(4095)] = 198424, + [SMALL_STATE(4096)] = 198434, + [SMALL_STATE(4097)] = 198444, + [SMALL_STATE(4098)] = 198454, + [SMALL_STATE(4099)] = 198464, + [SMALL_STATE(4100)] = 198474, + [SMALL_STATE(4101)] = 198484, + [SMALL_STATE(4102)] = 198494, + [SMALL_STATE(4103)] = 198504, + [SMALL_STATE(4104)] = 198514, + [SMALL_STATE(4105)] = 198524, + [SMALL_STATE(4106)] = 198534, + [SMALL_STATE(4107)] = 198544, + [SMALL_STATE(4108)] = 198554, + [SMALL_STATE(4109)] = 198564, + [SMALL_STATE(4110)] = 198574, + [SMALL_STATE(4111)] = 198581, + [SMALL_STATE(4112)] = 198588, + [SMALL_STATE(4113)] = 198595, + [SMALL_STATE(4114)] = 198602, + [SMALL_STATE(4115)] = 198609, + [SMALL_STATE(4116)] = 198616, + [SMALL_STATE(4117)] = 198623, + [SMALL_STATE(4118)] = 198630, + [SMALL_STATE(4119)] = 198637, + [SMALL_STATE(4120)] = 198644, + [SMALL_STATE(4121)] = 198651, + [SMALL_STATE(4122)] = 198658, + [SMALL_STATE(4123)] = 198665, + [SMALL_STATE(4124)] = 198672, + [SMALL_STATE(4125)] = 198679, + [SMALL_STATE(4126)] = 198686, + [SMALL_STATE(4127)] = 198693, + [SMALL_STATE(4128)] = 198700, + [SMALL_STATE(4129)] = 198707, + [SMALL_STATE(4130)] = 198714, + [SMALL_STATE(4131)] = 198721, + [SMALL_STATE(4132)] = 198728, + [SMALL_STATE(4133)] = 198735, + [SMALL_STATE(4134)] = 198742, + [SMALL_STATE(4135)] = 198749, + [SMALL_STATE(4136)] = 198756, + [SMALL_STATE(4137)] = 198763, + [SMALL_STATE(4138)] = 198770, + [SMALL_STATE(4139)] = 198777, + [SMALL_STATE(4140)] = 198784, + [SMALL_STATE(4141)] = 198791, + [SMALL_STATE(4142)] = 198798, + [SMALL_STATE(4143)] = 198805, + [SMALL_STATE(4144)] = 198812, + [SMALL_STATE(4145)] = 198819, + [SMALL_STATE(4146)] = 198826, + [SMALL_STATE(4147)] = 198833, + [SMALL_STATE(4148)] = 198840, + [SMALL_STATE(4149)] = 198847, + [SMALL_STATE(4150)] = 198854, + [SMALL_STATE(4151)] = 198861, + [SMALL_STATE(4152)] = 198868, + [SMALL_STATE(4153)] = 198875, + [SMALL_STATE(4154)] = 198882, + [SMALL_STATE(4155)] = 198889, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -206868,5786 +208546,5819 @@ 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(331), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [59] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(981), - [62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(940), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(4003), - [74] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [76] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [78] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [80] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(2738), - [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(2739), - [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(281), - [89] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(1100), - [110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 66), - [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), SHIFT(35), - [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), SHIFT(940), - [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 87), SHIFT(4002), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), SHIFT(2738), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), SHIFT(2739), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), SHIFT(281), - [142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 87), SHIFT(1099), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 87), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), SHIFT(14), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), SHIFT(940), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 66), SHIFT(4011), - [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), SHIFT(2738), - [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), SHIFT(2739), - [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), SHIFT(281), - [173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 66), SHIFT(1067), - [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 66), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(981), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(940), - [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(4013), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(2738), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(2739), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(281), - [204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 51), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(1066), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 51), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [215] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 64), REDUCE(sym_with_clause, 4, .production_id = 65), SHIFT(11), - [219] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 64), REDUCE(sym_with_clause, 4, .production_id = 65), SHIFT(940), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [229] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 64), REDUCE(sym_with_clause, 4, .production_id = 65), SHIFT(4015), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [239] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 64), REDUCE(sym_with_clause, 4, .production_id = 65), SHIFT(2738), - [243] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 64), REDUCE(sym_with_clause, 4, .production_id = 65), SHIFT(2739), - [247] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 64), REDUCE(sym_with_clause, 4, .production_id = 65), SHIFT(275), - [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 64), REDUCE(sym_with_clause, 4, .production_id = 65), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [270] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 64), REDUCE(sym_with_clause, 4, .production_id = 65), SHIFT(2653), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 64), REDUCE(sym_with_clause, 4, .production_id = 65), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [287] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 53), REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(981), - [291] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 53), REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(940), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [297] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 53), REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(4008), - [301] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 53), REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(2738), - [305] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 53), REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(2739), - [309] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 53), REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(275), - [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 53), REDUCE(sym_with_clause, 4, .production_id = 54), - [316] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 53), REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(2636), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 53), REDUCE(sym_with_clause, 4, .production_id = 54), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [327] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 69), REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(16), - [331] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 69), REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(940), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [337] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 69), REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(4006), - [341] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 69), REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(2738), - [345] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 69), REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(2739), - [349] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 69), REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(275), - [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 69), REDUCE(sym_with_clause, 4, .production_id = 71), - [356] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 69), REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(2655), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 69), REDUCE(sym_with_clause, 4, .production_id = 71), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [367] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 64), REDUCE(sym_with_clause, 4, .production_id = 65), SHIFT(25), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [373] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 64), REDUCE(sym_with_clause, 4, .production_id = 65), SHIFT(3997), - [377] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 64), REDUCE(sym_with_clause, 4, .production_id = 65), SHIFT(2654), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(3995), - [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(1086), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [397] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), REDUCE(sym_with_clause, 5, .production_id = 65), SHIFT(981), - [401] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), REDUCE(sym_with_clause, 5, .production_id = 65), SHIFT(940), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [407] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 64), REDUCE(sym_with_clause, 5, .production_id = 65), SHIFT(4020), - [411] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), REDUCE(sym_with_clause, 5, .production_id = 65), SHIFT(2738), - [415] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), REDUCE(sym_with_clause, 5, .production_id = 65), SHIFT(2739), - [419] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), REDUCE(sym_with_clause, 5, .production_id = 65), SHIFT(275), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 64), REDUCE(sym_with_clause, 5, .production_id = 65), - [426] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 64), REDUCE(sym_with_clause, 5, .production_id = 65), SHIFT(2652), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 64), REDUCE(sym_with_clause, 5, .production_id = 65), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [437] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 81), REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(27), - [441] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 81), REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(940), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [447] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 81), REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(4032), - [451] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 81), REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(2738), - [455] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 81), REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(2739), - [459] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 81), REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(275), - [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 81), REDUCE(sym_with_clause, 5, .production_id = 83), - [466] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 81), REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(2651), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 81), REDUCE(sym_with_clause, 5, .production_id = 83), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [477] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(28), - [481] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(940), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [487] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(3996), - [491] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(2738), - [495] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(2739), - [499] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(275), - [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 85), - [506] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(2644), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 85), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(3998), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(1116), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(692), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(622), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(969), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(983), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(998), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4077), - [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4077), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3873), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1123), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2738), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2739), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(276), - [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), - [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2992), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3874), - [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3927), - [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(538), - [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(943), - [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(694), - [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(411), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(443), - [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1125), - [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), - [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4103), - [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(983), - [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(742), - [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3411), - [608] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(981), - [612] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(940), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [618] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 69), REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(4022), - [622] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(2738), - [626] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(2739), - [630] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(275), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), REDUCE(sym_with_clause, 5, .production_id = 71), - [637] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 69), REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(2650), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 69), REDUCE(sym_with_clause, 5, .production_id = 71), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(981), - [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(940), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(4030), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(2738), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(2739), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(281), - [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(1004), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 39), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [679] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 53), REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(7), - [683] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 53), REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(940), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [689] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 53), REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(4029), - [693] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 53), REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(2738), - [697] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 53), REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(2739), - [701] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 53), REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(275), - [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 53), REDUCE(sym_with_clause, 3, .production_id = 54), - [708] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 53), REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(2649), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 53), REDUCE(sym_with_clause, 3, .production_id = 54), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [719] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(31), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [725] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(4000), - [729] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(2659), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [737] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 81), REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(981), - [741] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 81), REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(940), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [747] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 81), REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(4056), - [751] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 81), REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(2738), - [755] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 81), REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(2739), - [759] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 81), REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(275), - [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 81), REDUCE(sym_with_clause, 6, .production_id = 83), - [766] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 81), REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(2657), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 81), REDUCE(sym_with_clause, 6, .production_id = 83), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), SHIFT(2), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 66), SHIFT(4010), - [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 66), SHIFT(1115), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 51), SHIFT(10), - [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 51), SHIFT(940), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 51), SHIFT(4031), - [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 51), SHIFT(2738), - [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 51), SHIFT(2739), - [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 51), SHIFT(281), - [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 51), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 51), SHIFT(1009), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 51), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 3, .production_id = 51), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 3, .production_id = 51), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 51), SHIFT(5), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 51), SHIFT(4001), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 51), SHIFT(992), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [880] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 64), REDUCE(sym_with_clause, 5, .production_id = 65), SHIFT(4024), - [884] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 64), REDUCE(sym_with_clause, 5, .production_id = 65), SHIFT(2645), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [892] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 81), REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(20), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [898] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 81), REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(4026), - [902] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 81), REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(2641), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [912] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 81), REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(4039), - [916] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 81), REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(2640), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [924] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(981), - [928] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(940), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [934] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(4041), - [938] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(2738), - [942] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(2739), - [946] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(275), - [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 85), - [953] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(2647), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 85), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [964] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), REDUCE(sym_with_clause, 6, .production_id = 106), SHIFT(37), - [968] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), REDUCE(sym_with_clause, 6, .production_id = 106), SHIFT(940), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [974] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 104), REDUCE(sym_with_clause, 6, .production_id = 106), SHIFT(4043), - [978] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), REDUCE(sym_with_clause, 6, .production_id = 106), SHIFT(2738), - [982] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), REDUCE(sym_with_clause, 6, .production_id = 106), SHIFT(2739), - [986] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), REDUCE(sym_with_clause, 6, .production_id = 106), SHIFT(275), - [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), REDUCE(sym_with_clause, 6, .production_id = 106), - [993] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 104), REDUCE(sym_with_clause, 6, .production_id = 106), SHIFT(2638), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 104), REDUCE(sym_with_clause, 6, .production_id = 106), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 2, .production_id = 39), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 2, .production_id = 39), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [1010] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(4045), - [1014] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(2646), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(17), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(940), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(4014), - [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(2738), - [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(2739), - [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(281), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), - [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(1069), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 2, .production_id = 39), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1053] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), REDUCE(sym_with_clause, 6, .production_id = 106), SHIFT(38), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [1059] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 104), REDUCE(sym_with_clause, 6, .production_id = 106), SHIFT(4047), - [1063] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 104), REDUCE(sym_with_clause, 6, .production_id = 106), SHIFT(2639), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [1071] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 109), REDUCE(sym_with_clause, 6, .production_id = 110), SHIFT(39), - [1075] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 109), REDUCE(sym_with_clause, 6, .production_id = 110), SHIFT(940), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [1081] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 109), REDUCE(sym_with_clause, 6, .production_id = 110), SHIFT(4050), - [1085] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 109), REDUCE(sym_with_clause, 6, .production_id = 110), SHIFT(2738), - [1089] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 109), REDUCE(sym_with_clause, 6, .production_id = 110), SHIFT(2739), - [1093] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 109), REDUCE(sym_with_clause, 6, .production_id = 110), SHIFT(275), - [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 109), REDUCE(sym_with_clause, 6, .production_id = 110), - [1100] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 109), REDUCE(sym_with_clause, 6, .production_id = 110), SHIFT(2637), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 109), REDUCE(sym_with_clause, 6, .production_id = 110), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(981), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(940), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(4005), - [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(2738), - [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(2739), - [1128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(281), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(1034), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 87), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1142] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(981), - [1146] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(940), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [1152] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 127), REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(3994), - [1156] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(2738), - [1160] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(2739), - [1164] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(275), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), REDUCE(sym_with_clause, 8, .production_id = 129), - [1171] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 127), REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(2656), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 127), REDUCE(sym_with_clause, 8, .production_id = 129), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [1182] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(981), - [1186] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(940), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [1192] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 104), REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(3989), - [1196] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(2738), - [1200] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(2739), - [1204] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(275), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), REDUCE(sym_with_clause, 7, .production_id = 106), - [1211] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 104), REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(2658), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 104), REDUCE(sym_with_clause, 7, .production_id = 106), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [1224] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 104), REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(4060), - [1228] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 104), REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(2648), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [1236] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), REDUCE(sym_with_clause, 7, .production_id = 110), SHIFT(981), - [1240] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), REDUCE(sym_with_clause, 7, .production_id = 110), SHIFT(940), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [1246] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 109), REDUCE(sym_with_clause, 7, .production_id = 110), SHIFT(4051), - [1250] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), REDUCE(sym_with_clause, 7, .production_id = 110), SHIFT(2738), - [1254] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), REDUCE(sym_with_clause, 7, .production_id = 110), SHIFT(2739), - [1258] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), REDUCE(sym_with_clause, 7, .production_id = 110), SHIFT(275), - [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), REDUCE(sym_with_clause, 7, .production_id = 110), - [1265] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 109), REDUCE(sym_with_clause, 7, .production_id = 110), SHIFT(2643), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 109), REDUCE(sym_with_clause, 7, .production_id = 110), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [1276] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(36), - [1280] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(940), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [1286] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 127), REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(4048), - [1290] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(2738), - [1294] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(2739), - [1298] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(275), - [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), REDUCE(sym_with_clause, 7, .production_id = 129), - [1305] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 127), REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(2642), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 127), REDUCE(sym_with_clause, 7, .production_id = 129), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 4, .production_id = 66), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 4, .production_id = 66), - [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(982), - [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(401), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(4064), - [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(2738), - [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(2739), - [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(275), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), - [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(2160), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 71), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(97), - [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(401), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(4064), - [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(2738), - [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(2739), - [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(275), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 85), - [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(2160), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 85), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 129), SHIFT(86), - [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 129), SHIFT(401), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 129), SHIFT(4064), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 129), SHIFT(2738), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 129), SHIFT(2739), - [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 129), SHIFT(275), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 129), - [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 129), SHIFT(2160), - [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 129), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 106), SHIFT(982), - [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 106), SHIFT(401), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 106), SHIFT(4064), - [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 106), SHIFT(2738), - [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 106), SHIFT(2739), - [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 106), SHIFT(275), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 106), - [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 106), SHIFT(2160), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 106), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 106), SHIFT(158), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 129), SHIFT(982), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 106), SHIFT(154), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [1461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 66), SHIFT(982), - [1464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 66), SHIFT(401), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 66), SHIFT(4064), - [1472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 66), SHIFT(2738), - [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 66), SHIFT(2739), - [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 66), SHIFT(275), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 66), - [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 66), SHIFT(2160), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 66), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(42), - [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(401), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(4064), - [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(2738), - [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(2739), - [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(275), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), - [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(2160), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 71), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [1519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 85), SHIFT(131), - [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 85), SHIFT(401), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 85), SHIFT(4064), - [1530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 85), SHIFT(2738), - [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 85), SHIFT(2739), - [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 85), SHIFT(275), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 85), - [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 85), SHIFT(2160), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 85), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 85), SHIFT(982), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(129), - [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(401), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(4064), - [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(2738), - [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(2739), - [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(275), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), - [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(2160), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 83), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(982), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 65), SHIFT(982), - [1602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 65), SHIFT(401), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 65), SHIFT(4064), - [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 65), SHIFT(2738), - [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 65), SHIFT(2739), - [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 65), SHIFT(275), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 65), - [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 65), SHIFT(2160), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 65), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 83), SHIFT(982), - [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 83), SHIFT(401), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 83), SHIFT(4064), - [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 83), SHIFT(2738), - [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 83), SHIFT(2739), - [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 83), SHIFT(275), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 83), - [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 83), SHIFT(2160), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 83), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(982), - [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(401), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(4064), - [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(2738), - [1671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(2739), - [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(275), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), - [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(2160), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 83), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [1686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(229), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(67), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 51), SHIFT(982), - [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 51), SHIFT(401), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 51), SHIFT(4064), - [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 51), SHIFT(2738), - [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 51), SHIFT(2739), - [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 51), SHIFT(275), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 51), - [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 51), SHIFT(2160), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 51), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 106), SHIFT(982), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 106), SHIFT(401), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 106), SHIFT(4064), - [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 106), SHIFT(2738), - [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 106), SHIFT(2739), - [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 106), SHIFT(275), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 106), - [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 106), SHIFT(2160), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 106), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(149), - [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(401), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(4064), - [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(275), - [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(2160), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 65), SHIFT(91), - [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 65), SHIFT(401), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 65), SHIFT(4064), - [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 65), SHIFT(2738), - [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 65), SHIFT(2739), - [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 65), SHIFT(275), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 65), - [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 65), SHIFT(2160), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 65), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 65), SHIFT(982), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(128), - [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(401), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(4064), - [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(2738), - [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(2739), - [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(275), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), - [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(2160), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 71), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [1854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(982), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [1869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), SHIFT(982), - [1872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), SHIFT(401), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 54), SHIFT(4064), - [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), SHIFT(2738), - [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), SHIFT(2739), - [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), SHIFT(275), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), - [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 54), SHIFT(2160), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 54), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(212), - [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(401), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(4064), - [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(2738), - [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(2739), - [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(275), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), - [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(2160), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 129), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 110), SHIFT(982), - [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 110), SHIFT(401), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 110), SHIFT(4064), - [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 110), SHIFT(2738), - [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 110), SHIFT(2739), - [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 110), SHIFT(275), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 110), - [1949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 110), SHIFT(2160), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 110), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 87), SHIFT(982), - [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 87), SHIFT(401), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 87), SHIFT(4064), - [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 87), SHIFT(2738), - [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 87), SHIFT(2739), - [1973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 87), SHIFT(275), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 87), - [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 87), SHIFT(2160), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 87), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 87), SHIFT(233), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 110), SHIFT(237), - [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 110), SHIFT(401), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 110), SHIFT(4064), - [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 110), SHIFT(2738), - [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 110), SHIFT(2739), - [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 110), SHIFT(275), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 110), - [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 110), SHIFT(2160), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 110), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 110), SHIFT(982), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 110), SHIFT(146), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 129), SHIFT(982), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 129), SHIFT(401), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [2043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 129), SHIFT(4064), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 129), SHIFT(2738), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 129), SHIFT(2739), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 129), SHIFT(275), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 129), - [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 129), SHIFT(2160), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 129), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 87), SHIFT(201), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 106), SHIFT(250), - [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 106), SHIFT(401), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 106), SHIFT(4064), - [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 106), SHIFT(2738), - [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 106), SHIFT(2739), - [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 106), SHIFT(275), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 106), - [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 106), SHIFT(2160), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 106), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 129), SHIFT(108), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 106), SHIFT(982), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [2122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 106), SHIFT(227), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [2133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 66), SHIFT(222), - [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 66), SHIFT(401), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 66), SHIFT(4064), - [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 66), SHIFT(2738), - [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 66), SHIFT(2739), - [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 66), SHIFT(275), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 66), - [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 66), SHIFT(2160), - [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 66), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 66), SHIFT(982), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(982), - [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(401), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(4064), - [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(2738), - [2183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(2739), - [2186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(275), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 85), - [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(2160), - [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 85), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(147), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(130), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 106), SHIFT(45), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [2231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 106), SHIFT(49), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 66), SHIFT(50), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(53), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [2260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(54), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 129), SHIFT(982), - [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 129), SHIFT(401), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 12, .production_id = 129), SHIFT(4064), - [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 129), SHIFT(2738), - [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 129), SHIFT(2739), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 129), SHIFT(275), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 129), - [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 12, .production_id = 129), SHIFT(2160), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 12, .production_id = 129), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(56), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 83), SHIFT(57), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 65), SHIFT(58), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(60), - [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(401), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [2403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(4064), - [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(2738), - [2409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(2739), - [2412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(275), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), - [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(2160), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 83), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(982), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(63), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 51), SHIFT(64), - [2441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 51), SHIFT(401), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 51), SHIFT(4064), - [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 51), SHIFT(2738), - [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 51), SHIFT(2739), - [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 51), SHIFT(275), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 51), - [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 51), SHIFT(2160), - [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 51), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 51), SHIFT(982), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 65), SHIFT(982), - [2483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 65), SHIFT(401), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [2488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 65), SHIFT(4064), - [2491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 65), SHIFT(2738), - [2494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 65), SHIFT(2739), - [2497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 65), SHIFT(275), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 65), - [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 65), SHIFT(2160), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 65), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 65), SHIFT(69), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 65), SHIFT(70), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 71), SHIFT(982), - [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 71), SHIFT(401), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 71), SHIFT(4064), - [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 71), SHIFT(2738), - [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 71), SHIFT(2739), - [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 71), SHIFT(275), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 71), - [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 71), SHIFT(2160), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 71), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 85), SHIFT(982), - [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 85), SHIFT(401), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 85), SHIFT(4064), - [2571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 85), SHIFT(2738), - [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 85), SHIFT(2739), - [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 85), SHIFT(275), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 85), - [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 85), SHIFT(2160), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 85), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [2597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(982), - [2600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(401), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(4064), - [2608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(2738), - [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(2739), - [2614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(275), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), - [2619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(2160), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 71), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [2626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(72), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [2633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(73), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(697), - [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(622), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [2656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 1), SHIFT(4080), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(2738), - [2668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(2739), - [2671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(278), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 1), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [2692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 1), SHIFT(1322), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 1), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), SHIFT(982), - [2708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), SHIFT(401), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [2713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 39), SHIFT(4064), - [2716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), SHIFT(2738), - [2719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), SHIFT(2739), - [2722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), SHIFT(275), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), - [2727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 39), SHIFT(2160), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 39), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(205), - [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(401), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [2742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(4064), - [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(275), - [2748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(2160), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(75), - [2756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(401), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(4064), - [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(2738), - [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(2739), - [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(275), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), - [2775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(2160), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 54), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(982), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [2793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 110), SHIFT(982), - [2796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 110), SHIFT(401), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [2801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 110), SHIFT(4064), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 110), SHIFT(2738), - [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 110), SHIFT(2739), - [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 110), SHIFT(275), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 110), - [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 110), SHIFT(2160), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 110), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 87), SHIFT(78), - [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 87), SHIFT(401), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 87), SHIFT(4064), - [2833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 87), SHIFT(2738), - [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 87), SHIFT(2739), - [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 87), SHIFT(275), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 87), - [2844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 87), SHIFT(2160), - [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 87), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 110), SHIFT(982), - [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 110), SHIFT(401), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 110), SHIFT(4064), - [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 110), SHIFT(2738), - [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 110), SHIFT(2739), - [2868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 110), SHIFT(275), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 110), - [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 110), SHIFT(2160), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 110), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 110), SHIFT(81), - [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 110), SHIFT(401), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 110), SHIFT(4064), - [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 110), SHIFT(2738), - [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 110), SHIFT(2739), - [2901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 110), SHIFT(275), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 110), - [2906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 110), SHIFT(2160), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 110), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [2913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 87), SHIFT(982), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(257), - [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(401), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [2928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(4064), - [2931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(2738), - [2934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(2739), - [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(275), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), - [2942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(2160), - [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 39), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [2949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(982), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [2956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 87), SHIFT(85), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(263), - [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(401), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [2971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(4064), - [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(2738), - [2977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(2739), - [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(275), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), - [2985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(2160), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 54), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [2992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 106), SHIFT(982), - [2995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 106), SHIFT(401), - [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 106), SHIFT(4064), - [3003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 106), SHIFT(2738), - [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 106), SHIFT(2739), - [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 106), SHIFT(275), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 106), - [3014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 106), SHIFT(2160), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 106), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(89), - [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(401), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [3029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(4064), - [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(2738), - [3035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(2739), - [3038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(275), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), - [3043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(2160), - [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 106), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(982), - [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(401), - [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(4064), - [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(2738), - [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(2739), - [3067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(275), - [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 66), - [3072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(2160), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 66), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(163), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(93), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(195), - [3100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(401), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [3105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(4064), - [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(2738), - [3111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(2739), - [3114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(275), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 51), - [3119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(2160), - [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 51), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [3126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(94), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [3133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(982), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(982), - [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(401), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [3148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(4064), - [3151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(2738), - [3154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(2739), - [3157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(275), - [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), - [3162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(2160), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 39), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(98), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [3180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 85), SHIFT(220), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(100), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(103), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(104), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [3216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(107), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [3223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(109), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(110), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [3245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 83), SHIFT(114), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [3252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 51), SHIFT(115), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [3259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(190), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [3274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 65), SHIFT(117), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 65), SHIFT(118), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 129), SHIFT(83), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(120), - [3306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(401), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [3311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(4064), - [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(2738), - [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(2739), - [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(275), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), - [3325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(2160), - [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 83), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [3332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(982), - [3335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(401), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [3340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(4064), - [3343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(2738), - [3346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(2739), - [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(275), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 51), - [3354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(2160), - [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 51), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [3361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(123), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [3368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(982), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [3375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 65), SHIFT(125), - [3378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 65), SHIFT(401), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [3383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 65), SHIFT(4064), - [3386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 65), SHIFT(2738), - [3389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 65), SHIFT(2739), - [3392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 65), SHIFT(275), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 65), - [3397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 65), SHIFT(2160), - [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 65), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [3404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 65), SHIFT(982), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [3411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 65), SHIFT(132), - [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [3418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(133), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [3433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(134), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [3440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 129), SHIFT(47), - [3443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 129), SHIFT(401), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [3448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 129), SHIFT(4064), - [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 129), SHIFT(2738), - [3454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 129), SHIFT(2739), - [3457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 129), SHIFT(275), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 129), - [3462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 129), SHIFT(2160), - [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 129), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [3469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(137), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [3476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 65), SHIFT(192), - [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 65), SHIFT(401), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [3484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 65), SHIFT(4064), - [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 65), SHIFT(2738), - [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 65), SHIFT(2739), - [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 65), SHIFT(275), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 65), - [3498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 65), SHIFT(2160), - [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 65), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 87), SHIFT(982), - [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 87), SHIFT(401), - [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [3513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 87), SHIFT(4064), - [3516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 87), SHIFT(2738), - [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 87), SHIFT(2739), - [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 87), SHIFT(275), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 87), - [3527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 87), SHIFT(2160), - [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 87), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [3534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(139), - [3537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(401), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [3542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(4064), - [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(2738), - [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(2739), - [3551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(275), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), - [3556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(2160), - [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 39), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(255), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(982), - [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 65), SHIFT(262), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(982), - [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(401), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [3600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(4064), - [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(2738), - [3606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(2739), - [3609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(275), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), - [3614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(2160), - [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 54), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [3621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(142), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 106), SHIFT(65), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(253), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [3642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 129), SHIFT(982), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [3649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(143), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [3664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(245), - [3667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(401), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [3672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(4064), - [3675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(275), - [3678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(2160), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [3683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 129), SHIFT(196), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [3690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 106), SHIFT(74), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [3697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(982), - [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(401), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(4064), - [3708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(2738), - [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(2739), - [3714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(275), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 66), - [3719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(2160), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 66), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [3730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(188), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [3753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(156), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 106), SHIFT(243), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [3781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(162), - [3784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(401), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(4064), - [3792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(2738), - [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(2739), - [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(275), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 85), - [3803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(2160), - [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 85), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [3810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 87), SHIFT(234), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(219), - [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 87), SHIFT(982), - [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 87), SHIFT(401), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [3836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 87), SHIFT(4064), - [3839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 87), SHIFT(2738), - [3842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 87), SHIFT(2739), - [3845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 87), SHIFT(275), - [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 87), - [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 87), SHIFT(2160), - [3853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 87), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(165), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 83), SHIFT(59), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 110), SHIFT(144), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 106), SHIFT(246), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(168), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(151), - [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(401), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(4064), - [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(275), - [3910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(2160), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 110), SHIFT(77), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(171), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(174), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(206), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 110), SHIFT(203), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(176), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [3973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(405), - [3976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(622), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [3981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 3), SHIFT(4080), - [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(2738), - [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(2739), - [3990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(278), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3), - [3995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 3), SHIFT(1322), - [3998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [4016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(185), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [4027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(180), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [4034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 65), SHIFT(181), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(215), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [4048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(214), - [4051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(401), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [4056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(4064), - [4059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(2738), - [4062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(2739), - [4065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(275), - [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), - [4070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(2160), - [4073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 54), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [4081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(982), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 65), SHIFT(184), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(208), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [4218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(282), - [4221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(622), - [4224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(980), - [4227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1966), - [4230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1756), - [4233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(4082), - [4236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(4082), - [4239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3932), - [4242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1752), - [4245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2738), - [4248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2739), - [4251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(280), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), - [4256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2982), - [4259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3921), - [4262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3907), - [4265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(457), - [4268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(460), - [4271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(464), - [4274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(465), - [4277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(468), - [4280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1856), - [4283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(4131), - [4286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1966), - [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(479), - [4292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3654), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1, .production_id = 1), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), - [4605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(395), - [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(622), - [4611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(980), - [4614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1983), - [4617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1756), - [4620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4082), - [4623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4082), - [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3932), - [4629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1752), - [4632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2738), - [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2739), - [4638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(280), - [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2982), - [4644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3921), - [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3907), - [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(457), - [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(460), - [4656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(464), - [4659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(465), - [4662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(468), - [4665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1856), - [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4131), - [4671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1983), - [4674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(479), - [4677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3654), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [7132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), - [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [7306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(981), - [7309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(940), - [7312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), - [7314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), - [7316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(982), - [7319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(401), - [7322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), SHIFT_REPEAT(984), - [7325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), SHIFT_REPEAT(401), - [7328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), - [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), - [7332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 1), - [7334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 1), - [7336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), SHIFT_REPEAT(986), - [7339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), SHIFT_REPEAT(401), - [7342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), - [7344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), - [7346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 3, .production_id = 39), - [7348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 3, .production_id = 39), - [7350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 1), - [7352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 1), - [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [7356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 116), - [7358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 116), - [7360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 10, .production_id = 133), - [7362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 10, .production_id = 133), - [7364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 46), - [7366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 46), - [7368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 47), - [7370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 47), - [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 1), - [7374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 1), - [7376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4016), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [7381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 4, .production_id = 47), - [7383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 4, .production_id = 47), - [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 47), - [7387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 47), - [7389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 48), - [7391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 48), - [7393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 2), - [7395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 2), - [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), - [7399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 32), - [7401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 32), - [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 45), - [7407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 45), - [7409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_lit, 2), - [7411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_lit, 2), - [7413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 44), - [7415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 44), - [7417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 43), - [7419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 43), - [7421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4007), - [7424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 40), - [7426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 40), - [7428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 2, .production_id = 7), - [7430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 2, .production_id = 7), - [7432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 4, .production_id = 40), - [7434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 4, .production_id = 40), - [7436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4004), - [7439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 4), - [7441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 4), - [7443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 4, .production_id = 35), - [7445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 4, .production_id = 35), - [7447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 1), - [7449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 1), - [7451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 4, .production_id = 34), - [7453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 4, .production_id = 34), - [7455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 5, .production_id = 50), - [7457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 5, .production_id = 50), - [7459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 1, .production_id = 5), - [7461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 1, .production_id = 5), - [7463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 13), - [7465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 13), - [7467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 50), - [7469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 50), - [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 55), - [7473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 55), - [7475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 2), - [7477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 2), - [7479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_symbol, 1), - [7481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_symbol, 1), - [7483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_lit, 2), - [7485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_lit, 2), - [7487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 59), - [7489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 59), - [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 5, .production_id = 60), - [7493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 5, .production_id = 60), - [7495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 61), - [7497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 61), - [7499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 2), - [7501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 2), - [7503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 1, .production_id = 6), - [7505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 1, .production_id = 6), - [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 62), - [7509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 62), - [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 2, .production_id = 9), - [7513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 2, .production_id = 9), - [7515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 2, .production_id = 13), - [7517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 2, .production_id = 13), - [7519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 6, .production_id = 63), - [7521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 6, .production_id = 63), - [7523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4052), - [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), - [7528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), - [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 6, .production_id = 72), - [7532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 6, .production_id = 72), - [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 2, .production_id = 11), - [7536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 2, .production_id = 11), - [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), - [7540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), - [7542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), - [7544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), - [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 33), - [7548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 33), - [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 60), - [7552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 60), - [7554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 77), - [7556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 77), - [7558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 78), - [7560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 78), - [7562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 6, .production_id = 79), - [7564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 6, .production_id = 79), - [7566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 80), - [7568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 80), - [7570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 33), - [7572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 33), - [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), - [7576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), - [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 7, .production_id = 93), - [7580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 7, .production_id = 93), - [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 77), - [7584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 77), - [7586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), - [7588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), - [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 78), - [7592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 78), - [7594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 33), - [7596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 33), - [7598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_lit, 2, .production_id = 14), - [7600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_lit, 2, .production_id = 14), - [7602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 32), - [7604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 32), - [7606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 97), - [7608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 97), - [7610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 98), - [7612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 98), - [7614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 80), - [7616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 80), - [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 19), - [7620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 19), - [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 99), - [7624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 99), - [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 1), - [7628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 1), - [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 3, .production_id = 31), - [7632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 3, .production_id = 31), - [7634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 3, .production_id = 30), - [7636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 3, .production_id = 30), - [7638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 3, .production_id = 19), - [7640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 3, .production_id = 19), - [7642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4028), - [7645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4035), - [7648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 4, .production_id = 46), - [7650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 4, .production_id = 46), - [7652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4027), - [7655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 100), - [7657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 100), - [7659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 97), - [7661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 97), - [7663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 2, .production_id = 16), - [7665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 2, .production_id = 16), - [7667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 2, .production_id = 17), - [7669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 2, .production_id = 17), - [7671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 3, .production_id = 19), - [7673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 3, .production_id = 19), - [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 98), - [7677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 98), - [7679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 116), - [7681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 116), - [7683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 19), - [7685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 19), - [7687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 99), - [7689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 99), - [7691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 100), - [7693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 100), - [7695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4025), - [7698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 19), - [7700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 19), - [7702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 3, .production_id = 21), - [7704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 3, .production_id = 21), - [7706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 117), - [7708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 117), - [7710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), - [7712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), - [7714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 3, .production_id = 9), - [7716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 3, .production_id = 9), - [7718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 3), - [7720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 3), - [7722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 3, .production_id = 25), - [7724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 3, .production_id = 25), - [7726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 118), - [7728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 118), - [7730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4049), - [7733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4046), - [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 3, .production_id = 25), - [7738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 3, .production_id = 25), - [7740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 117), - [7742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 117), - [7744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 3, .production_id = 27), - [7746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 3, .production_id = 27), - [7748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 118), - [7750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 118), - [7752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 29), - [7754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 29), - [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 133), - [7758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 133), - [7760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(3999), - [7763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4042), - [7766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 29), - [7768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 29), - [7770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 19), - [7772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 19), - [7774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [7778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1233), - [7781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(732), - [7784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 140), SHIFT(2726), - [7787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 140), SHIFT(833), - [7790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 140), SHIFT(2850), - [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 140), - [7795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 140), SHIFT(4123), - [7798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 8, .production_id = 140), - [7800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 125), SHIFT(2726), - [7803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 125), SHIFT(833), - [7806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 125), SHIFT(2850), - [7809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 125), - [7811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 125), SHIFT(4123), - [7814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, .production_id = 125), - [7816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 126), SHIFT(2726), - [7819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 126), SHIFT(833), - [7822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 126), SHIFT(2850), - [7825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 126), - [7827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 126), SHIFT(4123), - [7830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, .production_id = 126), - [7832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 86), SHIFT(2726), - [7835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 86), SHIFT(833), - [7838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 86), SHIFT(2850), - [7841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 86), - [7843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 86), SHIFT(4123), - [7846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 86), - [7848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 52), SHIFT(2726), - [7851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 52), SHIFT(833), - [7854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 52), SHIFT(2850), - [7857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 52), - [7859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 52), SHIFT(4123), - [7862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3, .production_id = 52), - [7864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 67), SHIFT(2726), - [7867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 67), SHIFT(833), - [7870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 67), SHIFT(2850), - [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 67), - [7875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 67), SHIFT(4123), - [7878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 67), - [7880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 68), SHIFT(2726), - [7883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 68), SHIFT(833), - [7886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 68), SHIFT(2850), - [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 68), - [7891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 68), SHIFT(4123), - [7894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 68), - [7896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 88), SHIFT(2726), - [7899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 88), SHIFT(833), - [7902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 88), SHIFT(2850), - [7905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 88), - [7907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 88), SHIFT(4123), - [7910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 88), - [7912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 89), SHIFT(2726), - [7915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 89), SHIFT(833), - [7918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 89), SHIFT(2850), - [7921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 89), - [7923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 89), SHIFT(4123), - [7926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 89), - [7928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2726), - [7931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(833), - [7934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2850), - [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), - [7939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4123), - [7942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2026), - [7945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2026), - [7948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), - [7950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 111), SHIFT(2726), - [7953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 111), SHIFT(833), - [7956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 111), SHIFT(2850), - [7959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 111), - [7961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 111), SHIFT(4123), - [7964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 111), - [7966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 107), SHIFT(2726), - [7969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 107), SHIFT(833), - [7972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 107), SHIFT(2850), - [7975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 107), - [7977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 107), SHIFT(4123), - [7980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 107), - [7982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 108), SHIFT(2726), - [7985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 108), SHIFT(833), - [7988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 108), SHIFT(2850), - [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 108), - [7993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 108), SHIFT(4123), - [7996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 108), - [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [8084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(1407), - [8087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(488), - [8090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2854), - [8093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2734), - [8096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2731), - [8099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(275), - [8102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), - [8104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(4107), - [8107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2024), - [8110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(912), - [8113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(138), - [8116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(911), - [8119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(387), - [8122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(908), - [8125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(902), - [8128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(901), - [8131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2713), - [8134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(891), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [8275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 4, .production_id = 66), - [8277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 4, .production_id = 66), - [8279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 1, .production_id = 1), - [8281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 1, .production_id = 1), - [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 3, .production_id = 51), - [8285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 3, .production_id = 51), - [8287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 2, .production_id = 39), - [8289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 2, .production_id = 39), - [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), - [8293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), - [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [8297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), - [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [8319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), - [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), - [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [8331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [8399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [8401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [8405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1951), - [8408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(622), - [8411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 12), - [8413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 12), - [8415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 95), - [8417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 95), - [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 57), - [8421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 57), - [8423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 76), - [8425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 76), - [8427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 56), - [8429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 56), - [8431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 58), - [8433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 58), - [8435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 75), - [8437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 75), - [8439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 73), - [8441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 73), - [8443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 1, .production_id = 1), - [8445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 1, .production_id = 1), - [8447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 94), - [8449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 94), - [8451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 7, .production_id = 115), - [8453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 7, .production_id = 115), - [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [8457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [8459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 74), - [8461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 74), - [8463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [8465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 42), - [8467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 42), - [8469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 96), - [8471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 96), - [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [8475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [8477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 2, .production_id = 26), - [8479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 2, .production_id = 26), - [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), - [8483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [8485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 41), - [8487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 41), - [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [8493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [8495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(3071), - [8498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(496), - [8501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(4100), - [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), - [8506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(4101), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [8511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 2), - [8513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 2), - [8515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 3), - [8517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 3), - [8519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 1), - [8521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 1), - [8523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 1), - [8525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 1), - [8527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 1), - [8529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 1), - [8531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 3), - [8533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 3), - [8535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 51), SHIFT(3074), - [8538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 51), SHIFT(496), - [8541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 51), SHIFT(4106), - [8544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 51), - [8546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 51), SHIFT(4112), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [8551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 3), - [8553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 3), - [8555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 2), - [8557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 2), - [8559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 122), SHIFT(2038), - [8562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 122), SHIFT(488), - [8565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 122), - [8567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2281), - [8570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(488), - [8573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), - [8575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 69), SHIFT(2047), - [8578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 69), SHIFT(488), - [8581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 69), - [8583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), SHIFT(2041), - [8586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), SHIFT(488), - [8589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), - [8591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 81), SHIFT(2061), - [8594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 81), SHIFT(488), - [8597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 81), - [8599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 82), SHIFT(2051), - [8602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 82), SHIFT(488), - [8605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 82), - [8607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 90), SHIFT(2059), - [8610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 90), SHIFT(488), - [8613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 90), - [8615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2038), - [8618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(488), - [8621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 90), SHIFT(2062), - [8624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), SHIFT(2064), - [8627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), SHIFT(488), - [8630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), - [8632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), SHIFT(2038), - [8635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), SHIFT(488), - [8638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), - [8640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), SHIFT(2067), - [8643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 90), SHIFT(2069), - [8646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 92), SHIFT(2072), - [8649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 92), SHIFT(488), - [8652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 92), - [8654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 81), SHIFT(2076), - [8657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 82), SHIFT(2079), - [8660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), SHIFT(2038), - [8663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), SHIFT(488), - [8666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), - [8668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 101), SHIFT(2086), - [8671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 101), SHIFT(488), - [8674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 101), - [8676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 101), SHIFT(2089), - [8679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 102), SHIFT(2095), - [8682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 102), SHIFT(488), - [8685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 102), - [8687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 82), SHIFT(2038), - [8690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 82), SHIFT(488), - [8693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 82), - [8695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 102), SHIFT(2098), - [8698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 101), SHIFT(2100), - [8701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), SHIFT(2105), - [8704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), SHIFT(488), - [8707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), - [8709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(2109), - [8712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(488), - [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), - [8717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(2112), - [8720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(488), - [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), - [8725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(2117), - [8728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(2120), - [8731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 90), SHIFT(2038), - [8734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 90), SHIFT(488), - [8737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 90), - [8739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(2129), - [8742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(488), - [8745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 112), - [8747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 81), SHIFT(2038), - [8750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 81), SHIFT(488), - [8753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 81), - [8755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(2132), - [8758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(488), - [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), - [8763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 91), SHIFT(2038), - [8766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 91), SHIFT(488), - [8769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 91), - [8771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(2136), - [8774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(2201), - [8777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(2139), - [8780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(2142), - [8783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), SHIFT(2144), - [8786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), SHIFT(488), - [8789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), - [8791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), SHIFT(2038), - [8794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), SHIFT(488), - [8797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), - [8799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), SHIFT(2148), - [8802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 101), SHIFT(2149), - [8805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 101), SHIFT(2152), - [8808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 102), SHIFT(2155), - [8811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 102), SHIFT(2161), - [8814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 101), SHIFT(2163), - [8817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), SHIFT(2166), - [8820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(2130), - [8823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 101), SHIFT(2038), - [8826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 101), SHIFT(488), - [8829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 101), - [8831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 119), SHIFT(2168), - [8834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 119), SHIFT(488), - [8837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 119), - [8839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 119), SHIFT(2169), - [8842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 120), SHIFT(2171), - [8845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 120), SHIFT(488), - [8848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 120), - [8850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 102), SHIFT(2038), - [8853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 102), SHIFT(488), - [8856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 102), - [8858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 120), SHIFT(2174), - [8861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 120), SHIFT(2176), - [8864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 119), SHIFT(2178), - [8867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 119), SHIFT(2181), - [8870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2183), - [8873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(488), - [8876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), - [8878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 103), SHIFT(2038), - [8881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 103), SHIFT(488), - [8884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 103), - [8886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2186), - [8889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2187), - [8892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(488), - [8895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), - [8897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), SHIFT(2038), - [8900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), SHIFT(488), - [8903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), - [8905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2190), - [8908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(2191), - [8911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(488), - [8914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), - [8916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), SHIFT(2038), - [8919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), SHIFT(488), - [8922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), - [8924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(2194), - [8927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2196), - [8930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(2199), - [8933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(488), - [8936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), - [8938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2222), - [8941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2031), - [8944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(2205), - [8947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(2208), - [8950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2210), - [8953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(2213), - [8956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), SHIFT(2216), - [8959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), SHIFT(488), - [8962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), - [8964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), SHIFT(2219), - [8967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), SHIFT(488), - [8970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), - [8972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(2038), - [8975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(488), - [8978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), - [8980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(2224), - [8983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(488), - [8986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 130), - [8988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 113), SHIFT(2038), - [8991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 113), SHIFT(488), - [8994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 113), - [8996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(2225), - [8999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(488), - [9002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), - [9004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(2226), - [9007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(2228), - [9010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(2231), - [9013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(2232), - [9016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(2233), - [9019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(2235), - [9022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(488), - [9025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), - [9027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 114), SHIFT(2038), - [9030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 114), SHIFT(488), - [9033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 114), - [9035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(2238), - [9038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(2240), - [9041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 119), SHIFT(2242), - [9044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 119), SHIFT(2243), - [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [9051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 120), SHIFT(2245), - [9054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 120), SHIFT(2248), - [9057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 120), SHIFT(2250), - [9060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 119), SHIFT(2252), - [9063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 119), SHIFT(2255), - [9066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2257), - [9069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2260), - [9072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 119), SHIFT(2038), - [9075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 119), SHIFT(488), - [9078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 119), - [9080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 134), SHIFT(2261), - [9083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 134), SHIFT(488), - [9086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 134), - [9088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 120), SHIFT(2038), - [9091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 120), SHIFT(488), - [9094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 120), - [9096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2262), - [9099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(488), - [9102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), - [9104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2263), - [9107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2265), - [9110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2268), - [9113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 134), SHIFT(2269), - [9116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 134), SHIFT(2270), - [9119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2272), - [9122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(488), - [9125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), - [9127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 121), SHIFT(2038), - [9130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 121), SHIFT(488), - [9133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 121), - [9135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2275), - [9138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2507), - [9141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2278), - [9144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(488), - [9147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), - [9149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2279), - [9152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 123), SHIFT(2038), - [9155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 123), SHIFT(488), - [9158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 123), - [9160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2285), - [9163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2287), - [9166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2289), - [9169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2292), - [9172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(2294), - [9175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(488), - [9178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), - [9180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), SHIFT(2038), - [9183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), SHIFT(488), - [9186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), - [9188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(2297), - [9191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2298), - [9194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2299), - [9197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2301), - [9200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2408), - [9203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2421), - [9206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2428), - [9209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2433), - [9212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(2436), - [9215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(2461), - [9218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 141), SHIFT(2462), - [9221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 141), SHIFT(488), - [9224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 141), - [9226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), SHIFT(2038), - [9229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), SHIFT(488), - [9232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), - [9234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 141), SHIFT(2465), - [9237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), SHIFT(2488), - [9240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), SHIFT(488), - [9243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), - [9245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), SHIFT(2038), - [9248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), SHIFT(488), - [9251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), - [9253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), SHIFT(2491), - [9256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 141), SHIFT(2497), - [9259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 143), SHIFT(2508), - [9262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 143), SHIFT(488), - [9265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 143), - [9267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(2038), - [9270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(488), - [9273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), - [9275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 131), SHIFT(2038), - [9278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 131), SHIFT(488), - [9281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 131), - [9283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 144), SHIFT(2518), - [9286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 144), SHIFT(488), - [9289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 144), - [9291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 144), SHIFT(2519), - [9294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 144), SHIFT(2527), - [9297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 145), SHIFT(2530), - [9300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 145), SHIFT(488), - [9303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 145), - [9305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 132), SHIFT(2038), - [9308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 132), SHIFT(488), - [9311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 132), - [9313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), SHIFT(2529), - [9316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), SHIFT(488), - [9319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), - [9321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), SHIFT(2528), - [9324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), SHIFT(2525), - [9327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), SHIFT(2522), - [9330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 134), SHIFT(2521), - [9333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2520), - [9336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2517), - [9339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2515), - [9342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2512), - [9345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 134), SHIFT(2511), - [9348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 134), SHIFT(2510), - [9351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2504), - [9354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2501), - [9357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2499), - [9360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 134), SHIFT(2038), - [9363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 134), SHIFT(488), - [9366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 134), - [9368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), SHIFT(2038), - [9371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), SHIFT(488), - [9374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), - [9376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(2496), - [9379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(488), - [9382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), - [9384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(2494), - [9387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(2493), - [9390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(2411), - [9393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(488), - [9396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), - [9398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 136), SHIFT(2038), - [9401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 136), SHIFT(488), - [9404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 136), - [9406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2486), - [9409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(488), - [9412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), - [9414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2485), - [9417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2483), - [9420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2480), - [9423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 137), SHIFT(2038), - [9426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 137), SHIFT(488), - [9429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 137), - [9431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2479), - [9434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(488), - [9437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), - [9439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 138), SHIFT(2038), - [9442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 138), SHIFT(488), - [9445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 138), - [9447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2478), - [9450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(488), - [9453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), - [9455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 162), SHIFT(2038), - [9458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 162), SHIFT(488), - [9461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 162), - [9463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2477), - [9466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2474), - [9469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2471), - [9472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2470), - [9475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2469), - [9478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2467), - [9481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(488), - [9484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), - [9486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 139), SHIFT(2038), - [9489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 139), SHIFT(488), - [9492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 139), - [9494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2459), - [9497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2457), - [9500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2453), - [9503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2452), - [9506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2451), - [9509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 14, .production_id = 176), SHIFT(2038), - [9512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 14, .production_id = 176), SHIFT(488), - [9515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 14, .production_id = 176), - [9517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 176), SHIFT(2304), - [9520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 176), SHIFT(488), - [9523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 176), - [9525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 175), SHIFT(2038), - [9528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 175), SHIFT(488), - [9531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 175), - [9533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 174), SHIFT(2038), - [9536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 174), SHIFT(488), - [9539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 174), - [9541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 173), SHIFT(2038), - [9544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 173), SHIFT(488), - [9547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 173), - [9549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 167), SHIFT(2038), - [9552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 167), SHIFT(488), - [9555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 167), - [9557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 172), SHIFT(2038), - [9560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 172), SHIFT(488), - [9563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 172), - [9565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 175), SHIFT(2306), - [9568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 175), SHIFT(488), - [9571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 175), - [9573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 175), SHIFT(2307), - [9576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 175), SHIFT(2308), - [9579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 171), SHIFT(2038), - [9582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 171), SHIFT(488), - [9585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 171), - [9587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 174), SHIFT(2309), - [9590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 174), SHIFT(488), - [9593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 174), - [9595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 170), SHIFT(2038), - [9598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 170), SHIFT(488), - [9601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 170), - [9603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 173), SHIFT(2310), - [9606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 173), SHIFT(488), - [9609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 173), - [9611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 169), SHIFT(2038), - [9614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 169), SHIFT(488), - [9617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 169), - [9619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 168), SHIFT(2038), - [9622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 168), SHIFT(488), - [9625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 168), - [9627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 173), SHIFT(2311), - [9630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 167), SHIFT(2312), - [9633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 167), SHIFT(488), - [9636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 167), - [9638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 159), SHIFT(2038), - [9641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 159), SHIFT(488), - [9644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 159), - [9646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 158), SHIFT(2038), - [9649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 158), SHIFT(488), - [9652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 158), - [9654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 166), SHIFT(2038), - [9657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 166), SHIFT(488), - [9660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 166), - [9662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), SHIFT(2313), - [9665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), SHIFT(488), - [9668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), - [9670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 165), SHIFT(2038), - [9673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 165), SHIFT(488), - [9676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 165), - [9678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), SHIFT(2316), - [9681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), SHIFT(2318), - [9684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), SHIFT(2319), - [9687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 171), SHIFT(2320), - [9690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 171), SHIFT(488), - [9693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 171), - [9695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 163), SHIFT(2038), - [9698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 163), SHIFT(488), - [9701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 163), - [9703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 164), SHIFT(2038), - [9706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 164), SHIFT(488), - [9709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 164), - [9711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(2322), - [9714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(488), - [9717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), - [9719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(2323), - [9722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(2324), - [9725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), SHIFT(2348), - [9728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), SHIFT(488), - [9731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), - [9733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(2326), - [9736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(488), - [9739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), - [9741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(2327), - [9744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(2328), - [9747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 161), SHIFT(2038), - [9750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 161), SHIFT(488), - [9753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 161), - [9755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 168), SHIFT(2329), - [9758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 168), SHIFT(488), - [9761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 168), - [9763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 160), SHIFT(2038), - [9766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 160), SHIFT(488), - [9769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 160), - [9771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(2331), - [9774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(2332), - [9777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(2333), - [9780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 168), SHIFT(2334), - [9783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 167), SHIFT(2335), - [9786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 149), SHIFT(2038), - [9789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 149), SHIFT(488), - [9792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 149), - [9794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(2337), - [9797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(488), - [9800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), - [9802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(2338), - [9805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(2339), - [9808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 148), SHIFT(2038), - [9811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 148), SHIFT(488), - [9814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 148), - [9816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 158), SHIFT(2340), - [9819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 158), SHIFT(488), - [9822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 158), - [9824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 147), SHIFT(2038), - [9827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 147), SHIFT(488), - [9830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 147), - [9832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 166), SHIFT(2341), - [9835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 166), SHIFT(488), - [9838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 166), - [9840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 157), SHIFT(2038), - [9843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 157), SHIFT(488), - [9846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 157), - [9848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 156), SHIFT(2038), - [9851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 156), SHIFT(488), - [9854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 156), - [9856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 155), SHIFT(2038), - [9859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 155), SHIFT(488), - [9862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 155), - [9864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), SHIFT(2343), - [9867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), SHIFT(2345), - [9870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 153), SHIFT(2038), - [9873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 153), SHIFT(488), - [9876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 153), - [9878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2350), - [9881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(488), - [9884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), - [9886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2351), - [9889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), SHIFT(2352), - [9892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), SHIFT(488), - [9895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), - [9897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 154), SHIFT(2038), - [9900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 154), SHIFT(488), - [9903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 154), - [9905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), SHIFT(2355), - [9908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2449), - [9911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), SHIFT(2357), - [9914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2446), - [9917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), SHIFT(2358), - [9920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2359), - [9923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2445), - [9926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2444), - [9929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2442), - [9932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(2283), - [9935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(488), - [9938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), - [9940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 152), SHIFT(2038), - [9943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 152), SHIFT(488), - [9946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 152), - [9948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(2363), - [9951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(2365), - [9954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(2366), - [9957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(2367), - [9960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(488), - [9963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), - [9965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 150), SHIFT(2038), - [9968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 150), SHIFT(488), - [9971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 150), - [9973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 151), SHIFT(2038), - [9976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 151), SHIFT(488), - [9979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 151), - [9981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2369), - [9984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(488), - [9987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), - [9989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2370), - [9992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2371), - [9995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(2372), - [9998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2439), - [10001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2437), - [10004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(2375), - [10007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(2377), - [10010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 141), SHIFT(2038), - [10013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 141), SHIFT(488), - [10016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 141), - [10018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(2430), - [10021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(488), - [10024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), - [10026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(2429), - [10029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(2378), - [10032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(2379), - [10035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2381), - [10038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2382), - [10041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2383), - [10044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(2426), - [10047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(488), - [10050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), - [10052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(2385), - [10055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(2386), - [10058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(2387), - [10061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), SHIFT(2410), - [10064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), SHIFT(488), - [10067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), - [10069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 142), SHIFT(2038), - [10072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 142), SHIFT(488), - [10075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 142), - [10077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(2422), - [10080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(2418), - [10083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 158), SHIFT(2388), - [10086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(2416), - [10089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2389), - [10092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2392), - [10095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2394), - [10098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2395), - [10101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(2396), - [10104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(2412), - [10107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 143), SHIFT(2038), - [10110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 143), SHIFT(488), - [10113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 143), - [10115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), SHIFT(2406), - [10118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(2398), - [10121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(2399), - [10124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(2400), - [10127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 144), SHIFT(2038), - [10130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 144), SHIFT(488), - [10133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 144), - [10135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 146), SHIFT(2038), - [10138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 146), SHIFT(488), - [10141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 146), - [10143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 157), SHIFT(2402), - [10146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 157), SHIFT(488), - [10149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 157), - [10151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 157), SHIFT(2403), - [10154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 157), SHIFT(2404), - [10157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 145), SHIFT(2038), - [10160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 145), SHIFT(488), - [10163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 145), - [10165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 156), SHIFT(2405), - [10168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 156), SHIFT(488), - [10171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 156), - [10173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [10175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_prefix_parameters, 1), - [10177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_prefix_parameters, 1), - [10179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4012), - [10182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4058), - [10185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4061), - [10188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4062), - [10191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4059), - [10194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4055), - [10197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(3993), - [10200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4057), - [10203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4040), - [10206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4054), - [10209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4063), - [10212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(3990), - [10215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4033), - [10218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4009), - [10221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4053), - [10224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4038), - [10227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4037), - [10230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4019), - [10233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4023), - [10236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4021), - [10239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(3992), - [10242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4036), - [10245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4034), - [10248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4044), - [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [10259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 5, .production_id = 87), - [10261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 3, .production_id = 51), - [10263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, .production_id = 119), - [10265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 3, .production_id = 51), - [10267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 4, .production_id = 66), - [10269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 51), - [10271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 3, .production_id = 51), - [10273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3), - [10275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, .production_id = 134), - [10277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, .production_id = 130), - [10279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 9, .production_id = 148), - [10281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, .production_id = 90), - [10283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, .production_id = 81), - [10285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, .production_id = 145), - [10287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, .production_id = 101), - [10289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 4, .production_id = 66), - [10291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, .production_id = 112), - [10293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 5, .production_id = 87), - [10295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 5, .production_id = 87), - [10297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 5, .production_id = 87), - [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [10301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 4, .production_id = 66), - [10303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_clause, 1), - [10305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 1), - [10307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2), - [10309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 66), - [10311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 2, .production_id = 39), - [10313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 2, .production_id = 39), - [10315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 4, .production_id = 69), - [10317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 2, .production_id = 39), - [10319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2, .production_id = 39), - [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [10323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 1), - [10325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2728), - [10328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(833), - [10331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 2), - [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [10367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), - [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [10371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [10373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(2826), - [10376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [10378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [10396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [10398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [10416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [10418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [10436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [10438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [10456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [10476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), - [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [10508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [10510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [10528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [10556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [10558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [10578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [10626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), - [10628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [10632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), - [10634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), - [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [10638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), - [10640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), - [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [10646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), - [10648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), - [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [10676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2828), - [10679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(547), - [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [10686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), - [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [10702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 2, .production_id = 11), - [10704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 2, .production_id = 11), - [10706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 2, .production_id = 10), - [10708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 2, .production_id = 10), - [10710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 3, .production_id = 24), - [10712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 3, .production_id = 24), - [10714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 2, .production_id = 16), - [10716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 2, .production_id = 16), - [10718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 3, .production_id = 24), - [10720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 3, .production_id = 24), - [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [10724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), - [10726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2738), - [10729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2739), - [10732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), - [10734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 2, .production_id = 10), - [10736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 2, .production_id = 10), - [10738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 1, .production_id = 5), - [10740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 1, .production_id = 5), - [10742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 3, .production_id = 27), - [10744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 3, .production_id = 27), - [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [10786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 1, .production_id = 2), - [10788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 1, .production_id = 2), - [10790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2868), - [10793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(616), - [10796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2869), - [10799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(726), - [10802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [10804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2907), - [10807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(609), - [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [10816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 1, .production_id = 23), - [10818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 1, .production_id = 23), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [10822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 2), - [10824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 2), - [10826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 1), - [10828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 1), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [10836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_dimension, 1), - [10838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2734), - [10841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2731), - [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), - [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [10874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(3044), - [10877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(496), - [10880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(3050), - [10883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(412), - [10886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(2938), - [10889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), - [10891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(4091), - [10894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(3054), - [10897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), - [10899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [12075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [12077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [12127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [12177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [12261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [12333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [12399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [12415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [12487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [12569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [12607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [12681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [12761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), - [12763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), SHIFT_REPEAT(3948), - [12766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), SHIFT_REPEAT(1748), - [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [12773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [12775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [12779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [12787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [12797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sym_lit_without_slash, 1, .production_id = 36), - [12799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sym_lit_without_slash, 1, .production_id = 36), - [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [12813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [12819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), - [12821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), - [12823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), SHIFT_REPEAT(3986), - [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [12836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3), - [12838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), - [12840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, .production_id = 37), - [12842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), - [12844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), - [12846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, .production_id = 38), - [12848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2), - [12850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1), - [12852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1), - [12854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3, .production_id = 49), - [12856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 1), - [12858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [12860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [12862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [12864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [12870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [12872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [12874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [12876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [12878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [12880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [12882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [12884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [12886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [12888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [12890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [12892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [12894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [12896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [12898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [12900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [12902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [12904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [12906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [12908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [12910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [12912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [12914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [12916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [12918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [12920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [12922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), SHIFT_REPEAT(4017), - [12925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), - [12927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [12929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [12931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [12933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [12935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [12937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [12939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [12941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [12943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [12945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [12947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [12949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [12951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [12953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [12955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [12957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [12959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [12961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [12963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [12965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [12967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [12969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [12971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [12973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [12975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [12977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [12979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [12981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [12983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [12985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [12987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [12989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [12991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [12993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [12995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [12997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [12999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [13001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [13003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [13005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [13007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [13009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [13011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [13013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [13015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [13017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [13019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [13021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [13023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [13033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [13035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [13037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [13039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [13041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [13043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [13045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [13055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [13057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [13061] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [13063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [13067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [13069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [13071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [13073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [13085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [13087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [13089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_lit_without_slash, 3, .production_id = 30), - [13091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [13093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [13095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [13099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [13101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [13103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [13105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [13107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [13109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [13111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [13113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [13115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [13117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [13119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [13123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [59] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 83), REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(29), + [63] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 83), REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(928), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [73] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 83), REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(4057), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [83] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 83), REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(2762), + [87] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 83), REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(2761), + [91] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 83), REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(281), + [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 83), REDUCE(sym_with_clause, 5, .production_id = 85), + [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [114] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 83), REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(2668), + [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 83), REDUCE(sym_with_clause, 5, .production_id = 85), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [131] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 86), REDUCE(sym_with_clause, 5, .production_id = 87), SHIFT(30), + [135] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 86), REDUCE(sym_with_clause, 5, .production_id = 87), SHIFT(928), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [141] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 86), REDUCE(sym_with_clause, 5, .production_id = 87), SHIFT(4053), + [145] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 86), REDUCE(sym_with_clause, 5, .production_id = 87), SHIFT(2762), + [149] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 86), REDUCE(sym_with_clause, 5, .production_id = 87), SHIFT(2761), + [153] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 86), REDUCE(sym_with_clause, 5, .production_id = 87), SHIFT(281), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 86), REDUCE(sym_with_clause, 5, .production_id = 87), + [160] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 86), REDUCE(sym_with_clause, 5, .production_id = 87), SHIFT(2671), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 86), REDUCE(sym_with_clause, 5, .production_id = 87), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 3, .production_id = 51), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 3, .production_id = 51), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(990), + [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(928), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(4084), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(2762), + [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(2761), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(285), + [241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(1109), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 39), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 51), SHIFT(9), + [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 51), SHIFT(928), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 51), SHIFT(4074), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 51), SHIFT(2762), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 51), SHIFT(2761), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 51), SHIFT(285), + [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 51), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 51), SHIFT(1108), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 51), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [305] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 53), REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(13), + [309] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 53), REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(928), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [315] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 53), REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(4017), + [319] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 53), REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(2762), + [323] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 53), REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(2761), + [327] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 53), REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(281), + [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 53), REDUCE(sym_with_clause, 3, .production_id = 54), + [334] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 53), REDUCE(sym_with_clause, 3, .production_id = 54), SHIFT(2664), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 53), REDUCE(sym_with_clause, 3, .production_id = 54), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [345] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 65), REDUCE(sym_with_clause, 4, .production_id = 66), SHIFT(18), + [349] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 65), REDUCE(sym_with_clause, 4, .production_id = 66), SHIFT(928), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [355] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 65), REDUCE(sym_with_clause, 4, .production_id = 66), SHIFT(4066), + [359] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 65), REDUCE(sym_with_clause, 4, .production_id = 66), SHIFT(2762), + [363] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 65), REDUCE(sym_with_clause, 4, .production_id = 66), SHIFT(2761), + [367] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 65), REDUCE(sym_with_clause, 4, .production_id = 66), SHIFT(281), + [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 65), REDUCE(sym_with_clause, 4, .production_id = 66), + [374] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 65), REDUCE(sym_with_clause, 4, .production_id = 66), SHIFT(2670), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 65), REDUCE(sym_with_clause, 4, .production_id = 66), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(990), + [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(928), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(4065), + [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(2762), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(2761), + [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(285), + [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 51), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(1124), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 51), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(16), + [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(928), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(4064), + [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(2762), + [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(2761), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(285), + [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 67), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(1125), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 67), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(24), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(4024), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(1126), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 4, .production_id = 67), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 4, .production_id = 67), + [466] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 53), REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(990), + [470] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 53), REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(928), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [476] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 53), REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(4041), + [480] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 53), REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(2762), + [484] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 53), REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(2761), + [488] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 53), REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(281), + [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 53), REDUCE(sym_with_clause, 4, .production_id = 54), + [495] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 53), REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(2660), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 53), REDUCE(sym_with_clause, 4, .production_id = 54), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [506] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 69), REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(26), + [510] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 69), REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(928), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [516] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 69), REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(4036), + [520] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 69), REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(2762), + [524] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 69), REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(2761), + [528] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 69), REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(281), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 69), REDUCE(sym_with_clause, 4, .production_id = 71), + [535] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 69), REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(2672), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 69), REDUCE(sym_with_clause, 4, .production_id = 71), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [546] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 65), REDUCE(sym_with_clause, 4, .production_id = 66), SHIFT(27), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [552] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 65), REDUCE(sym_with_clause, 4, .production_id = 66), SHIFT(4063), + [556] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 65), REDUCE(sym_with_clause, 4, .production_id = 66), SHIFT(2667), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(990), + [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(928), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(4052), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(2762), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(2761), + [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(285), + [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(1128), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 67), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 2, .production_id = 39), + [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 2, .production_id = 39), + [599] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 65), REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(990), + [603] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 65), REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(928), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [609] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 65), REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(4060), + [613] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 65), REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(2762), + [617] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 65), REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(2761), + [621] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 65), REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(281), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 65), REDUCE(sym_with_clause, 5, .production_id = 66), + [628] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 65), REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(2662), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 65), REDUCE(sym_with_clause, 5, .production_id = 66), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(5), + [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(928), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(4073), + [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(2762), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(2761), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(285), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 39), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 2, .production_id = 39), SHIFT(1107), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 2, .production_id = 39), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(532), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(870), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(981), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(993), + [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1110), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4097), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4097), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3893), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1140), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2762), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2761), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(286), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), + [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3013), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3898), + [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3941), + [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(517), + [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(516), + [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(514), + [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(513), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(512), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1141), + [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), + [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4131), + [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(993), + [743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(905), + [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3491), + [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 51), SHIFT(22), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 51), SHIFT(4079), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 51), SHIFT(1127), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(4033), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(1129), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [776] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 86), REDUCE(sym_with_clause, 5, .production_id = 87), SHIFT(32), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [782] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 86), REDUCE(sym_with_clause, 5, .production_id = 87), SHIFT(4048), + [786] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 86), REDUCE(sym_with_clause, 5, .production_id = 87), SHIFT(2673), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(4046), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(998), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(35), + [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(928), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(4045), + [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(2762), + [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(2761), + [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(285), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 88), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(1130), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 88), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [837] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(990), + [841] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(928), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [847] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 69), REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(4037), + [851] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(2762), + [855] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(2761), + [859] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(281), + [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), REDUCE(sym_with_clause, 5, .production_id = 71), + [866] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 69), REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(2675), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 69), REDUCE(sym_with_clause, 5, .production_id = 71), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [879] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 65), REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(4049), + [883] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 65), REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(2676), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [891] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 83), REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(39), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [897] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 83), REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(4055), + [901] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 83), REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(2677), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [909] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(990), + [913] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(928), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [919] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 83), REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(4029), + [923] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(2762), + [927] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(2761), + [931] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(281), + [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), REDUCE(sym_with_clause, 6, .production_id = 85), + [938] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 83), REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(2666), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 83), REDUCE(sym_with_clause, 6, .production_id = 85), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [949] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 86), REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(990), + [953] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 86), REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(928), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [959] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 86), REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(4027), + [963] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 86), REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(2762), + [967] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 86), REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(2761), + [971] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 86), REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(281), + [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 86), REDUCE(sym_with_clause, 6, .production_id = 87), + [978] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 86), REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(2661), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 86), REDUCE(sym_with_clause, 6, .production_id = 87), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [989] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), REDUCE(sym_with_clause, 6, .production_id = 108), SHIFT(36), + [993] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), REDUCE(sym_with_clause, 6, .production_id = 108), SHIFT(928), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [999] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 106), REDUCE(sym_with_clause, 6, .production_id = 108), SHIFT(4020), + [1003] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), REDUCE(sym_with_clause, 6, .production_id = 108), SHIFT(2762), + [1007] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), REDUCE(sym_with_clause, 6, .production_id = 108), SHIFT(2761), + [1011] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), REDUCE(sym_with_clause, 6, .production_id = 108), SHIFT(281), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), REDUCE(sym_with_clause, 6, .production_id = 108), + [1018] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 106), REDUCE(sym_with_clause, 6, .production_id = 108), SHIFT(2659), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 106), REDUCE(sym_with_clause, 6, .production_id = 108), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [1031] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 86), REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(4050), + [1035] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 86), REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(2658), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [1043] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), REDUCE(sym_with_clause, 6, .production_id = 108), SHIFT(38), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [1049] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 106), REDUCE(sym_with_clause, 6, .production_id = 108), SHIFT(4047), + [1053] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 106), REDUCE(sym_with_clause, 6, .production_id = 108), SHIFT(2665), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [1061] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 110), REDUCE(sym_with_clause, 6, .production_id = 111), SHIFT(40), + [1065] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 110), REDUCE(sym_with_clause, 6, .production_id = 111), SHIFT(928), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [1071] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 110), REDUCE(sym_with_clause, 6, .production_id = 111), SHIFT(4062), + [1075] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 110), REDUCE(sym_with_clause, 6, .production_id = 111), SHIFT(2762), + [1079] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 110), REDUCE(sym_with_clause, 6, .production_id = 111), SHIFT(2761), + [1083] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 110), REDUCE(sym_with_clause, 6, .production_id = 111), SHIFT(281), + [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 110), REDUCE(sym_with_clause, 6, .production_id = 111), + [1090] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 110), REDUCE(sym_with_clause, 6, .production_id = 111), SHIFT(2656), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 110), REDUCE(sym_with_clause, 6, .production_id = 111), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(990), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(928), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(4068), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(2762), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(2761), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(285), + [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(1084), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 88), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1132] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(990), + [1136] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(928), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [1142] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 106), REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(4013), + [1146] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(2762), + [1150] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(2761), + [1154] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(281), + [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), REDUCE(sym_with_clause, 7, .production_id = 108), + [1161] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 106), REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(2663), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 106), REDUCE(sym_with_clause, 7, .production_id = 108), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [1172] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(41), + [1176] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(928), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [1182] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 127), REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(4026), + [1186] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(2762), + [1190] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(2761), + [1194] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(281), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), REDUCE(sym_with_clause, 7, .production_id = 129), + [1201] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 127), REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(2657), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 127), REDUCE(sym_with_clause, 7, .production_id = 129), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [1214] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 106), REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(4019), + [1218] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 106), REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(2653), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [1228] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 83), REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(4075), + [1232] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 83), REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(2655), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [1240] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 110), REDUCE(sym_with_clause, 7, .production_id = 111), SHIFT(990), + [1244] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 110), REDUCE(sym_with_clause, 7, .production_id = 111), SHIFT(928), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [1250] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 110), REDUCE(sym_with_clause, 7, .production_id = 111), SHIFT(4016), + [1254] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 110), REDUCE(sym_with_clause, 7, .production_id = 111), SHIFT(2762), + [1258] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 110), REDUCE(sym_with_clause, 7, .production_id = 111), SHIFT(2761), + [1262] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 110), REDUCE(sym_with_clause, 7, .production_id = 111), SHIFT(281), + [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 110), REDUCE(sym_with_clause, 7, .production_id = 111), + [1269] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 110), REDUCE(sym_with_clause, 7, .production_id = 111), SHIFT(2674), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [1275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 110), REDUCE(sym_with_clause, 7, .production_id = 111), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [1280] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(990), + [1284] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(928), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [1290] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 127), REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(4086), + [1294] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(2762), + [1298] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(2761), + [1302] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(281), + [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), REDUCE(sym_with_clause, 8, .production_id = 129), + [1309] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 127), REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(2669), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 127), REDUCE(sym_with_clause, 8, .production_id = 129), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(77), + [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(940), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(4093), + [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(2762), + [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(2761), + [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(281), + [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(2491), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 67), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 87), SHIFT(995), + [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 87), SHIFT(940), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 87), SHIFT(4093), + [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 87), SHIFT(2762), + [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 87), SHIFT(2761), + [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 87), SHIFT(281), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 87), + [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 87), SHIFT(2491), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 87), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(84), + [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(940), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(4093), + [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(2762), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(2761), + [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(281), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), + [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(2491), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 71), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(995), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 87), SHIFT(167), + [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 87), SHIFT(940), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 87), SHIFT(4093), + [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 87), SHIFT(2762), + [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 87), SHIFT(2761), + [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 87), SHIFT(281), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 87), + [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 87), SHIFT(2491), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 87), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), SHIFT(995), + [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), SHIFT(940), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 39), SHIFT(4093), + [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), SHIFT(2762), + [1457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), SHIFT(2761), + [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), SHIFT(281), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 39), + [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 39), SHIFT(2491), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 39), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [1472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 87), SHIFT(995), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(995), + [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(940), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(4093), + [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(2762), + [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(2761), + [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(281), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(2491), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 67), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(171), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 108), SHIFT(172), + [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 108), SHIFT(940), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 108), SHIFT(4093), + [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 108), SHIFT(2762), + [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 108), SHIFT(2761), + [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 108), SHIFT(281), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 108), + [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 108), SHIFT(2491), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 108), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [1544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(79), + [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(940), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(4093), + [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(2762), + [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(2761), + [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(281), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), + [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(2491), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 54), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 54), SHIFT(995), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 108), SHIFT(995), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 108), SHIFT(176), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(995), + [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(940), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(4093), + [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(2762), + [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(2761), + [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(281), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(2491), + [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 88), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(72), + [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(940), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(4093), + [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(2762), + [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(2761), + [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(281), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), + [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(2491), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 88), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [1656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(177), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 111), SHIFT(178), + [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 111), SHIFT(940), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 111), SHIFT(4093), + [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 111), SHIFT(2762), + [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 111), SHIFT(2761), + [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 111), SHIFT(281), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 111), + [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 111), SHIFT(2491), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 111), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), SHIFT(63), + [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), SHIFT(940), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 111), SHIFT(4093), + [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), SHIFT(2762), + [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), SHIFT(2761), + [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), SHIFT(281), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 111), SHIFT(2491), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 111), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(995), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 111), SHIFT(995), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(57), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(252), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(940), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(4093), + [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(281), + [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 39), SHIFT(2491), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(54), + [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(940), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(4093), + [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(2762), + [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(2761), + [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(281), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 108), + [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(2491), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 108), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 111), SHIFT(185), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(995), + [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(940), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(4093), + [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(2762), + [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(2761), + [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(281), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), + [1819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(2491), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 67), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(188), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(49), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 87), SHIFT(48), + [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 87), SHIFT(940), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 87), SHIFT(4093), + [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 87), SHIFT(2762), + [1854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 87), SHIFT(2761), + [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 87), SHIFT(281), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 87), + [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 87), SHIFT(2491), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 87), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 87), SHIFT(995), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(215), + [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(940), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(4093), + [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(2762), + [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(2761), + [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(281), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), + [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(2491), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 129), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 87), SHIFT(136), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(139), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(157), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), SHIFT(995), + [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), SHIFT(940), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 54), SHIFT(4093), + [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), SHIFT(2762), + [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), SHIFT(2761), + [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), SHIFT(281), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 54), + [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 54), SHIFT(2491), + [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 54), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(222), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 87), SHIFT(233), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(995), + [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(940), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(4093), + [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(2762), + [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(2761), + [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(281), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), + [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(2491), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 71), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 87), SHIFT(260), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(242), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 71), SHIFT(264), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(265), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(940), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(4093), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(2762), + [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(2761), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(281), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 85), + [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(2491), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 85), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(995), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(218), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 85), SHIFT(193), + [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 85), SHIFT(940), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [2094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 85), SHIFT(4093), + [2097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 85), SHIFT(2762), + [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 85), SHIFT(2761), + [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 85), SHIFT(281), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 85), + [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 85), SHIFT(2491), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 85), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 51), SHIFT(263), + [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 51), SHIFT(940), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 51), SHIFT(4093), + [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 51), SHIFT(2762), + [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 51), SHIFT(2761), + [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 51), SHIFT(281), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 51), + [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 51), SHIFT(2491), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 51), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 51), SHIFT(995), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(995), + [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(940), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(4093), + [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(2762), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(2761), + [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(281), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 66), + [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(2491), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 66), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(148), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(221), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 66), SHIFT(995), + [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 66), SHIFT(940), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 66), SHIFT(4093), + [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 66), SHIFT(2762), + [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 66), SHIFT(2761), + [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 66), SHIFT(281), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 66), + [2220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 66), SHIFT(2491), + [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 66), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 66), SHIFT(232), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 51), SHIFT(995), + [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 51), SHIFT(940), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 51), SHIFT(4093), + [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 51), SHIFT(2762), + [2256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 51), SHIFT(2761), + [2259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 51), SHIFT(281), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 51), + [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 51), SHIFT(2491), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 51), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(995), + [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(940), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(4093), + [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(2762), + [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(2761), + [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(281), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 85), + [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(2491), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 85), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(175), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(146), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(247), + [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(940), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(4093), + [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(2762), + [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(2761), + [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(281), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 85), + [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(2491), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 85), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(995), + [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(940), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(4093), + [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(2762), + [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(2761), + [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(281), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 51), + [2369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(2491), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 51), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 66), SHIFT(995), + [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 66), SHIFT(940), + [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 66), SHIFT(4093), + [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 66), SHIFT(2762), + [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 66), SHIFT(2761), + [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 66), SHIFT(281), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 66), + [2398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 66), SHIFT(2491), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 66), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(227), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [2412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(223), + [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(940), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(4093), + [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(2762), + [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(2761), + [2429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(281), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 66), + [2434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(2491), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 66), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [2441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(995), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [2448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(211), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(194), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 66), SHIFT(111), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(149), + [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(940), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(4093), + [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(2762), + [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(2761), + [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(281), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), + [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(2491), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 71), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(995), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 85), SHIFT(995), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 71), SHIFT(45), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(47), + [2530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(940), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(4093), + [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(2762), + [2541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(2761), + [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(281), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), + [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(2491), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 39), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [2556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 39), SHIFT(995), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 85), SHIFT(269), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(995), + [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(940), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(4093), + [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(2762), + [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(2761), + [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(281), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), + [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(2491), + [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 54), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(53), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [2606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 54), SHIFT(55), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [2625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 108), SHIFT(147), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 71), SHIFT(88), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [2639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(62), + [2642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(940), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(4093), + [2650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(281), + [2653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(2491), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [2662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(68), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(536), + [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(870), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 1), SHIFT(4099), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(2762), + [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(2761), + [2696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(284), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 1), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [2717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 1), SHIFT(1371), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 1), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [2738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(73), + [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(940), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(4093), + [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(2762), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(2761), + [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(281), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), + [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(2491), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 87), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 87), SHIFT(268), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(995), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [2781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(408), + [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(870), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 3), SHIFT(4099), + [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(2762), + [2795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(2761), + [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(284), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3), + [2803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 3), SHIFT(1371), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(995), + [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(940), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(4093), + [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(2762), + [2824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(2761), + [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(281), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 67), + [2832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(2491), + [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 67), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 108), SHIFT(995), + [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 108), SHIFT(940), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 108), SHIFT(4093), + [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 108), SHIFT(2762), + [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 108), SHIFT(2761), + [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 108), SHIFT(281), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 108), + [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 108), SHIFT(2491), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 108), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(80), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 108), SHIFT(258), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [2894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 108), SHIFT(159), + [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [2901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), SHIFT(83), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [2912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 108), SHIFT(257), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(87), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [2930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(91), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [2995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(95), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(96), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [3013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 87), SHIFT(43), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 66), SHIFT(99), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 51), SHIFT(101), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 87), SHIFT(254), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [3057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 108), SHIFT(249), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 108), SHIFT(246), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(995), + [3082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(940), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [3087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(4093), + [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(2762), + [3093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(2761), + [3096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(281), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), + [3101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(2491), + [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 88), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 111), SHIFT(995), + [3111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 111), SHIFT(940), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [3116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 111), SHIFT(4093), + [3119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 111), SHIFT(2762), + [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 111), SHIFT(2761), + [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 111), SHIFT(281), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 111), + [3130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 111), SHIFT(2491), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 111), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 111), SHIFT(239), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [3144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 129), SHIFT(995), + [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 129), SHIFT(940), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [3152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 12, .production_id = 129), SHIFT(4093), + [3155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 129), SHIFT(2762), + [3158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 129), SHIFT(2761), + [3161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 129), SHIFT(281), + [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 129), + [3166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 12, .production_id = 129), SHIFT(2491), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 12, .production_id = 129), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 129), SHIFT(180), + [3176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 129), SHIFT(940), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [3181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 129), SHIFT(4093), + [3184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 129), SHIFT(2762), + [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 129), SHIFT(2761), + [3190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 129), SHIFT(281), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 129), + [3195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 129), SHIFT(2491), + [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 129), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [3202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 111), SHIFT(238), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [3209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 129), SHIFT(995), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [3224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 111), SHIFT(995), + [3227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 111), SHIFT(940), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [3232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 111), SHIFT(4093), + [3235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 111), SHIFT(2762), + [3238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 111), SHIFT(2761), + [3241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 111), SHIFT(281), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 111), + [3246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 111), SHIFT(2491), + [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 111), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [3253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 108), SHIFT(995), + [3256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 108), SHIFT(940), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [3261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 108), SHIFT(4093), + [3264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 108), SHIFT(2762), + [3267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 108), SHIFT(2761), + [3270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 108), SHIFT(281), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 108), + [3275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 108), SHIFT(2491), + [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 108), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [3286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(225), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [3297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(123), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [3304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(110), + [3307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(940), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(4093), + [3315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(2762), + [3318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(2761), + [3321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(281), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 51), + [3326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(2491), + [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 51), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 85), SHIFT(995), + [3336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 85), SHIFT(940), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [3341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 85), SHIFT(4093), + [3344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 85), SHIFT(2762), + [3347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 85), SHIFT(2761), + [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 85), SHIFT(281), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 85), + [3355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 85), SHIFT(2491), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 85), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [3366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(114), + [3369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(940), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [3374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(4093), + [3377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(2762), + [3380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(2761), + [3383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(281), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), + [3388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(2491), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 66), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(995), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [3402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(117), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [3409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(145), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [3416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(120), + [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(940), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [3424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(4093), + [3427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(2762), + [3430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(2761), + [3433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(281), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), + [3438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(2491), + [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 71), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(995), + [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(940), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [3453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(4093), + [3456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(2762), + [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(2761), + [3462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(281), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), + [3467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(2491), + [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 39), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [3474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(125), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 85), SHIFT(121), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [3488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(127), + [3491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(940), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [3496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(4093), + [3499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(2762), + [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(2761), + [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(281), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), + [3510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(2491), + [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 54), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(995), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [3524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 54), SHIFT(130), + [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 39), SHIFT(131), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 129), SHIFT(220), + [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 129), SHIFT(940), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 129), SHIFT(4093), + [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 129), SHIFT(2762), + [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 129), SHIFT(2761), + [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 129), SHIFT(281), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 129), + [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 129), SHIFT(2491), + [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 129), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 129), SHIFT(995), + [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 129), SHIFT(940), + [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [3579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 129), SHIFT(4093), + [3582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 129), SHIFT(2762), + [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 129), SHIFT(2761), + [3588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 129), SHIFT(281), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 129), + [3593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 129), SHIFT(2491), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 129), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 129), SHIFT(183), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [3611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(100), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [3618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 66), SHIFT(102), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [3625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(143), + [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(940), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [3633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(4093), + [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(281), + [3639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(2491), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [3644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 129), SHIFT(995), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [3651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 129), SHIFT(184), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [3658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 2), SHIFT(915), + [3661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 2), SHIFT(870), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [3666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 2), SHIFT(4099), + [3669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 2), SHIFT(2762), + [3672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 2), SHIFT(2761), + [3675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 2), SHIFT(284), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), + [3680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 2), SHIFT(1371), + [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 2), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [3713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(154), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [3720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(995), + [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(940), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [3728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(4093), + [3731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(2762), + [3734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(2761), + [3737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(281), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 88), + [3742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(2491), + [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 88), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 51), SHIFT(104), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [3772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(161), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 129), SHIFT(209), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), SHIFT(164), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [3805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 51), SHIFT(169), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [3812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 111), SHIFT(186), + [3815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 111), SHIFT(940), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [3820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 111), SHIFT(4093), + [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 111), SHIFT(2762), + [3826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 111), SHIFT(2761), + [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 111), SHIFT(281), + [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 111), + [3834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 111), SHIFT(2491), + [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 111), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [3841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 111), SHIFT(995), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 108), SHIFT(187), + [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 108), SHIFT(940), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [3866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 108), SHIFT(4093), + [3869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 108), SHIFT(2762), + [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 108), SHIFT(2761), + [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 108), SHIFT(281), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 108), + [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 108), SHIFT(2491), + [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 108), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(105), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [3898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 87), SHIFT(140), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [3905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(196), + [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(940), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [3913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(4093), + [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(281), + [3919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(2491), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [3924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 108), SHIFT(995), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(200), + [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(940), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [3943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(4093), + [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(2762), + [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(2761), + [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(281), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), + [3957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(2491), + [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 39), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 87), SHIFT(132), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(204), + [3978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(940), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [3983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(4093), + [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(2762), + [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(2761), + [3992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(281), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), + [3997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 54), SHIFT(2491), + [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 54), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [4004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(995), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 39), SHIFT(207), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [4018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 87), SHIFT(995), + [4021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 87), SHIFT(940), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [4026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 87), SHIFT(4093), + [4029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 87), SHIFT(2762), + [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 87), SHIFT(2761), + [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 87), SHIFT(281), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 87), + [4040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 87), SHIFT(2491), + [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 87), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 108), SHIFT(190), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [4068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 85), SHIFT(108), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 71), SHIFT(995), + [4098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 71), SHIFT(940), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [4103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 71), SHIFT(4093), + [4106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 71), SHIFT(2762), + [4109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 71), SHIFT(2761), + [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 71), SHIFT(281), + [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 71), + [4117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 71), SHIFT(2491), + [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 71), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 51), SHIFT(235), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [4277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(289), + [4280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(870), + [4283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(989), + [4286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1984), + [4289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1879), + [4292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(4101), + [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(4101), + [4298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3932), + [4301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1825), + [4304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2762), + [4307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2761), + [4310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(280), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), + [4315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3045), + [4318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3937), + [4321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3938), + [4324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(971), + [4327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(970), + [4330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(967), + [4333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(966), + [4336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(964), + [4339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1774), + [4342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(4121), + [4345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1984), + [4348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(961), + [4351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3767), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1, .production_id = 1), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), + [4466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(325), + [4469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(870), + [4472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(989), + [4475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2021), + [4478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1879), + [4481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4101), + [4484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4101), + [4487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3932), + [4490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1825), + [4493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2762), + [4496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2761), + [4499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(280), + [4502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3045), + [4505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3937), + [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3938), + [4511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(971), + [4514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(970), + [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(967), + [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(966), + [4523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(964), + [4526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1774), + [4529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4121), + [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2021), + [4535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(961), + [4538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3767), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [7375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(990), + [7378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(928), + [7381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), + [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), + [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 1), + [7387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 1), + [7389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), SHIFT_REPEAT(994), + [7392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), SHIFT_REPEAT(940), + [7395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), + [7397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), + [7399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), SHIFT_REPEAT(991), + [7402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), SHIFT_REPEAT(940), + [7405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), + [7407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), + [7409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 3, .production_id = 39), + [7411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 3, .production_id = 39), + [7413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(995), + [7416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(940), + [7419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 1), + [7421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 1), + [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [7425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 47), + [7427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 47), + [7429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 1), + [7431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 1), + [7433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4044), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [7438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 4, .production_id = 40), + [7440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 4, .production_id = 40), + [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 4), + [7444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 4), + [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 4, .production_id = 35), + [7448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 4, .production_id = 35), + [7450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 4, .production_id = 34), + [7452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 4, .production_id = 34), + [7454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 33), + [7456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 33), + [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 33), + [7460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 33), + [7462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 33), + [7464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 33), + [7466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 32), + [7468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 32), + [7470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 32), + [7472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 32), + [7474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 3, .production_id = 31), + [7476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 3, .production_id = 31), + [7478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 3, .production_id = 30), + [7480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 3, .production_id = 30), + [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 3, .production_id = 19), + [7484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 3, .production_id = 19), + [7486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 19), + [7488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 19), + [7490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 19), + [7492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 19), + [7494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 19), + [7496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 19), + [7498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 19), + [7500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 19), + [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 29), + [7504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 29), + [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 29), + [7508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 29), + [7510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 3, .production_id = 27), + [7512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 3, .production_id = 27), + [7514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 3, .production_id = 25), + [7516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 3, .production_id = 25), + [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 3, .production_id = 25), + [7520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 3, .production_id = 25), + [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 3), + [7524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 3), + [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 3, .production_id = 9), + [7528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 3, .production_id = 9), + [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), + [7532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), + [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 3, .production_id = 21), + [7536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 3, .production_id = 21), + [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 2, .production_id = 9), + [7540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 2, .production_id = 9), + [7542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 3, .production_id = 19), + [7544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 3, .production_id = 19), + [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 2, .production_id = 17), + [7548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 2, .production_id = 17), + [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 2, .production_id = 16), + [7552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 2, .production_id = 16), + [7554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 4, .production_id = 47), + [7556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 4, .production_id = 47), + [7558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 43), + [7560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 43), + [7562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 44), + [7564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 44), + [7566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_lit, 2, .production_id = 14), + [7568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_lit, 2, .production_id = 14), + [7570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 45), + [7572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 45), + [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 4, .production_id = 46), + [7576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 4, .production_id = 46), + [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), + [7580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), + [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 46), + [7584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 46), + [7586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 47), + [7588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 47), + [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), + [7592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), + [7594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 48), + [7596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 48), + [7598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), + [7600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), + [7602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 5, .production_id = 50), + [7604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 5, .production_id = 50), + [7606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 50), + [7608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 50), + [7610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), + [7612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), + [7614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 55), + [7616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 55), + [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), + [7620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), + [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 13), + [7624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 13), + [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 2, .production_id = 13), + [7628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 2, .production_id = 13), + [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 59), + [7632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 59), + [7634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 2, .production_id = 11), + [7636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 2, .production_id = 11), + [7638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 2), + [7640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 2), + [7642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_lit, 2), + [7644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_lit, 2), + [7646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 5, .production_id = 60), + [7648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 5, .production_id = 60), + [7650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_symbol, 1), + [7652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_symbol, 1), + [7654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 2), + [7656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 2), + [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 61), + [7660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 61), + [7662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 62), + [7664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 62), + [7666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 2), + [7668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 2), + [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [7672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_lit, 2), + [7674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_lit, 2), + [7676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 6, .production_id = 63), + [7678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 6, .production_id = 63), + [7680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 2, .production_id = 7), + [7682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 2, .production_id = 7), + [7684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 6, .production_id = 72), + [7686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 6, .production_id = 72), + [7688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 60), + [7690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 60), + [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 1, .production_id = 6), + [7694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 1, .production_id = 6), + [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 1, .production_id = 5), + [7698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 1, .production_id = 5), + [7700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 77), + [7702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 77), + [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 1), + [7706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 1), + [7708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 78), + [7710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 78), + [7712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 6, .production_id = 79), + [7714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 6, .production_id = 79), + [7716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 80), + [7718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 80), + [7720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 7, .production_id = 93), + [7722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 7, .production_id = 93), + [7724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 77), + [7726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 77), + [7728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 78), + [7730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 78), + [7732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 97), + [7734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 97), + [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 1), + [7738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 1), + [7740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4023), + [7743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 98), + [7745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 98), + [7747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 80), + [7749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 80), + [7751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 99), + [7753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 99), + [7755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 100), + [7757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 100), + [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 97), + [7761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 97), + [7763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 98), + [7765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 98), + [7767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 116), + [7769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 116), + [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 99), + [7773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 99), + [7775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 100), + [7777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 100), + [7779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 117), + [7781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 117), + [7783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 118), + [7785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 118), + [7787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4083), + [7790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4067), + [7793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4038), + [7796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [7798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 116), + [7800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 116), + [7802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 117), + [7804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 117), + [7806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 118), + [7808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 118), + [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 133), + [7812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 133), + [7814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 10, .production_id = 133), + [7816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 10, .production_id = 133), + [7818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4082), + [7821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4054), + [7824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4051), + [7827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4035), + [7830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4015), + [7833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4014), + [7836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4058), + [7839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 40), + [7841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 40), + [7843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [7847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1150), + [7850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(897), + [7853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 119), SHIFT(2750), + [7856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 119), SHIFT(954), + [7859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 119), SHIFT(2870), + [7862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 119), + [7864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 119), SHIFT(4153), + [7867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, .production_id = 119), + [7869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 101), SHIFT(2750), + [7872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 101), SHIFT(954), + [7875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 101), SHIFT(2870), + [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 101), + [7880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 101), SHIFT(4153), + [7883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 101), + [7885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 102), SHIFT(2750), + [7888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 102), SHIFT(954), + [7891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 102), SHIFT(2870), + [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 102), + [7896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 102), SHIFT(4153), + [7899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 102), + [7901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 109), SHIFT(2750), + [7904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 109), SHIFT(954), + [7907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 109), SHIFT(2870), + [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 109), + [7912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 109), SHIFT(4153), + [7915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 109), + [7917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 89), SHIFT(2750), + [7920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 89), SHIFT(954), + [7923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 89), SHIFT(2870), + [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 89), + [7928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 89), SHIFT(4153), + [7931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 89), + [7933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 81), SHIFT(2750), + [7936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 81), SHIFT(954), + [7939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 81), SHIFT(2870), + [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 81), + [7944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 81), SHIFT(4153), + [7947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 81), + [7949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 82), SHIFT(2750), + [7952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 82), SHIFT(954), + [7955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 82), SHIFT(2870), + [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 82), + [7960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 82), SHIFT(4153), + [7963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 82), + [7965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 52), SHIFT(2750), + [7968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 52), SHIFT(954), + [7971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 52), SHIFT(2870), + [7974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 52), + [7976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 52), SHIFT(4153), + [7979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3, .production_id = 52), + [7981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 126), SHIFT(2750), + [7984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 126), SHIFT(954), + [7987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 126), SHIFT(2870), + [7990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 126), + [7992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 126), SHIFT(4153), + [7995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, .production_id = 126), + [7997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 68), SHIFT(2750), + [8000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 68), SHIFT(954), + [8003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 68), SHIFT(2870), + [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 68), + [8008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 68), SHIFT(4153), + [8011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 68), + [8013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), SHIFT(2750), + [8016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), SHIFT(954), + [8019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), SHIFT(2870), + [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), + [8024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), SHIFT(4153), + [8027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 64), + [8029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2750), + [8032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(954), + [8035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2870), + [8038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), + [8040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4153), + [8043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2043), + [8046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2043), + [8049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), + [8051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 140), SHIFT(2750), + [8054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 140), SHIFT(954), + [8057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 140), SHIFT(2870), + [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 140), + [8062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 140), SHIFT(4153), + [8065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 8, .production_id = 140), + [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [8239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(1346), + [8242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(649), + [8245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2855), + [8248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2754), + [8251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2755), + [8254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(281), + [8257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), + [8259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(4143), + [8262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2048), + [8265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(720), + [8268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(138), + [8271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(719), + [8274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(350), + [8277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(715), + [8280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(714), + [8283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(713), + [8286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2724), + [8289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(708), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [8340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [8344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 4, .production_id = 67), + [8346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 4, .production_id = 67), + [8348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 3, .production_id = 51), + [8350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 3, .production_id = 51), + [8352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 2, .production_id = 39), + [8354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 2, .production_id = 39), + [8356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 1, .production_id = 1), + [8358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 1, .production_id = 1), + [8360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), + [8362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), + [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [8410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [8474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1908), + [8477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(870), + [8480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 12), + [8482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 12), + [8484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 96), + [8486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 96), + [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [8490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 76), + [8492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 76), + [8494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 95), + [8496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 95), + [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [8500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 7, .production_id = 115), + [8502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 7, .production_id = 115), + [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 75), + [8506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 75), + [8508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 94), + [8510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 94), + [8512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 42), + [8514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 42), + [8516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 56), + [8518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 56), + [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [8522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 57), + [8524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 57), + [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [8528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 58), + [8530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 58), + [8532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 41), + [8534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 41), + [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [8540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [8542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [8544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 1, .production_id = 1), + [8546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 1, .production_id = 1), + [8548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [8550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 2, .production_id = 26), + [8554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 2, .production_id = 26), + [8556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 73), + [8558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 73), + [8560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 74), + [8562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 74), + [8564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 3), + [8566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 3), + [8568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 2), + [8570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 2), + [8572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 2), + [8574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 2), + [8576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 3), + [8578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 3), + [8580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 1), + [8582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 1), + [8584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 51), SHIFT(3098), + [8587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 51), SHIFT(755), + [8590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 51), SHIFT(4146), + [8593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 51), + [8595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 51), SHIFT(4115), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [8600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 1), + [8602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 1), + [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 3), + [8606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 3), + [8608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(3095), + [8611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(755), + [8614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(4135), + [8617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), + [8619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(4127), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [8624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 1), + [8626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 1), + [8628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2487), + [8631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(649), + [8634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), + [8636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2189), + [8639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(649), + [8642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), + [8644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 175), SHIFT(2212), + [8647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 175), SHIFT(649), + [8650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 175), + [8652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(2352), + [8655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(649), + [8658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), + [8660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 164), SHIFT(2212), + [8663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 164), SHIFT(649), + [8666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 164), + [8668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(2344), + [8671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 163), SHIFT(2212), + [8674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 163), SHIFT(649), + [8677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 163), + [8679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 162), SHIFT(2212), + [8682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 162), SHIFT(649), + [8685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 162), + [8687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 141), SHIFT(2212), + [8690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 141), SHIFT(649), + [8693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 141), + [8695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 141), SHIFT(2059), + [8698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 141), SHIFT(649), + [8701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 141), + [8703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 160), SHIFT(2212), + [8706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 160), SHIFT(649), + [8709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 160), + [8711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(2332), + [8714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(649), + [8717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), + [8719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(2330), + [8722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), SHIFT(2253), + [8725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), SHIFT(649), + [8728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), + [8730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 161), SHIFT(2212), + [8733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 161), SHIFT(649), + [8736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 161), + [8738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), SHIFT(2056), + [8741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), SHIFT(649), + [8744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), + [8746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 168), SHIFT(2328), + [8749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 168), SHIFT(649), + [8752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 168), + [8754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(2122), + [8757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(649), + [8760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), + [8762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(2322), + [8765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(2320), + [8768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), SHIFT(2212), + [8771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), SHIFT(649), + [8774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), + [8776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), SHIFT(2131), + [8779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(2313), + [8782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 168), SHIFT(2312), + [8785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 144), SHIFT(2212), + [8788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 144), SHIFT(649), + [8791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 144), + [8793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 167), SHIFT(2311), + [8796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 167), SHIFT(649), + [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 167), + [8801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 159), SHIFT(2212), + [8804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 159), SHIFT(649), + [8807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 159), + [8809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 158), SHIFT(2212), + [8812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 158), SHIFT(649), + [8815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 158), + [8817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 149), SHIFT(2212), + [8820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 149), SHIFT(649), + [8823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 149), + [8825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 151), SHIFT(2212), + [8828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 151), SHIFT(649), + [8831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 151), + [8833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(2308), + [8836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(649), + [8839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), + [8841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(2307), + [8844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(2291), + [8847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 148), SHIFT(2212), + [8850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 148), SHIFT(649), + [8853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 148), + [8855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 158), SHIFT(2281), + [8858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 158), SHIFT(649), + [8861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 158), + [8863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 147), SHIFT(2212), + [8866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 147), SHIFT(649), + [8869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 147), + [8871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 166), SHIFT(2275), + [8874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 166), SHIFT(649), + [8877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 166), + [8879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 157), SHIFT(2212), + [8882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 157), SHIFT(649), + [8885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 157), + [8887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 156), SHIFT(2212), + [8890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 156), SHIFT(649), + [8893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 156), + [8895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 155), SHIFT(2212), + [8898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 155), SHIFT(649), + [8901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 155), + [8903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), SHIFT(2118), + [8906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), SHIFT(649), + [8909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), + [8911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), SHIFT(2266), + [8914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), SHIFT(649), + [8917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), + [8919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 143), SHIFT(2212), + [8922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 143), SHIFT(649), + [8925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 143), + [8927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), SHIFT(2258), + [8930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 176), SHIFT(2129), + [8933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 176), SHIFT(649), + [8936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 176), + [8938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), SHIFT(2222), + [8941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 153), SHIFT(2212), + [8944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 153), SHIFT(649), + [8947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 153), + [8949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), SHIFT(2113), + [8952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2200), + [8955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(649), + [8958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), + [8960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2199), + [8963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), SHIFT(2198), + [8966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 154), SHIFT(2212), + [8969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 154), SHIFT(649), + [8972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 154), + [8974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 14, .production_id = 176), SHIFT(2212), + [8977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 14, .production_id = 176), SHIFT(649), + [8980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 14, .production_id = 176), + [8982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2467), + [8985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(649), + [8988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), + [8990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 142), SHIFT(2212), + [8993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 142), SHIFT(649), + [8996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 142), + [8998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), SHIFT(2212), + [9001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), SHIFT(649), + [9004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 127), + [9006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 141), SHIFT(2185), + [9009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(2210), + [9012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(649), + [9015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), + [9017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(2287), + [9020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(649), + [9023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), + [9025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 125), SHIFT(2212), + [9028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 125), SHIFT(649), + [9031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 125), + [9033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(2262), + [9036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), SHIFT(2407), + [9039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), SHIFT(649), + [9042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), + [9044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2272), + [9047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(649), + [9050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), + [9052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 123), SHIFT(2212), + [9055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 123), SHIFT(649), + [9058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 123), + [9060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2334), + [9063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), SHIFT(2212), + [9066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), SHIFT(649), + [9069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), + [9071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2337), + [9074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2357), + [9077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2385), + [9080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2409), + [9083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2410), + [9086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(2419), + [9089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(2339), + [9092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2089), + [9095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(649), + [9098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), + [9100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(2455), + [9103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2456), + [9106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2460), + [9109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2462), + [9112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2061), + [9115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2087), + [9118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2464), + [9121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 113), SHIFT(2212), + [9124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 113), SHIFT(649), + [9127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 113), + [9129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2470), + [9132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2472), + [9135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 122), SHIFT(2212), + [9138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 122), SHIFT(649), + [9141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 122), + [9143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2473), + [9146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(649), + [9149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), + [9151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(2341), + [9154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2477), + [9157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2504), + [9160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 120), SHIFT(2212), + [9163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 120), SHIFT(649), + [9166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 120), + [9168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 134), SHIFT(2481), + [9171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 134), SHIFT(649), + [9174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 134), + [9176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 134), SHIFT(2482), + [9179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2483), + [9182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 121), SHIFT(2212), + [9185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 121), SHIFT(649), + [9188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 121), + [9190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2489), + [9193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2490), + [9196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 134), SHIFT(2494), + [9199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 143), SHIFT(2116), + [9202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 143), SHIFT(649), + [9205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 143), + [9207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(2324), + [9210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(2212), + [9213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(649), + [9216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), + [9218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(2126), + [9221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 131), SHIFT(2212), + [9224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 131), SHIFT(649), + [9227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 131), + [9229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 144), SHIFT(2088), + [9232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 144), SHIFT(649), + [9235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 144), + [9237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 171), SHIFT(2389), + [9240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 171), SHIFT(649), + [9243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 171), + [9245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(2058), + [9248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(649), + [9251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), + [9253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 69), SHIFT(2503), + [9256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 69), SHIFT(649), + [9259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 69), + [9261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), SHIFT(2515), + [9264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), SHIFT(649), + [9267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), + [9269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 173), SHIFT(2212), + [9272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 173), SHIFT(649), + [9275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 173), + [9277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2297), + [9280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(649), + [9283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), + [9285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 139), SHIFT(2212), + [9288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 139), SHIFT(649), + [9291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 139), + [9293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2509), + [9296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(649), + [9299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), + [9301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2212), + [9304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(649), + [9307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 157), SHIFT(2109), + [9310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 157), SHIFT(649), + [9313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 157), + [9315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), SHIFT(2212), + [9318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), SHIFT(649), + [9321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), + [9323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2532), + [9326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 120), SHIFT(2540), + [9329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 120), SHIFT(649), + [9332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 120), + [9334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 103), SHIFT(2212), + [9337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 103), SHIFT(649), + [9340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 103), + [9342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 120), SHIFT(2543), + [9345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), SHIFT(2212), + [9348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), SHIFT(649), + [9351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), + [9353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2548), + [9356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 165), SHIFT(2212), + [9359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 165), SHIFT(649), + [9362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 165), + [9364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2544), + [9367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2520), + [9370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 120), SHIFT(2431), + [9373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 120), SHIFT(2429), + [9376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 114), SHIFT(2212), + [9379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 114), SHIFT(649), + [9382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 114), + [9384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(2427), + [9387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(649), + [9390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), + [9392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), SHIFT(2396), + [9395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(2512), + [9398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(2326), + [9401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(2212), + [9404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(649), + [9407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), + [9409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(2321), + [9412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(649), + [9415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 130), + [9417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(2319), + [9420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(2317), + [9423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(649), + [9426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), + [9428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(2310), + [9431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 125), SHIFT(2137), + [9434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 125), SHIFT(649), + [9437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 125), + [9439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(2201), + [9442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(2197), + [9445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(2195), + [9448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 173), SHIFT(2424), + [9451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 173), SHIFT(649), + [9454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 173), + [9456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), SHIFT(2078), + [9459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), SHIFT(649), + [9462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), + [9464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2348), + [9467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), SHIFT(2132), + [9470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), SHIFT(649), + [9473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 127), + [9475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 150), SHIFT(2212), + [9478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 150), SHIFT(649), + [9481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 150), + [9483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2393), + [9486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(2141), + [9489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(649), + [9492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), + [9494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), SHIFT(2411), + [9497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(2143), + [9500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(649), + [9503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), + [9505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(2128), + [9508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), SHIFT(2212), + [9511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), SHIFT(649), + [9514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), + [9516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(2147), + [9519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(2149), + [9522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(2212), + [9525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(649), + [9528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), + [9530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(2152), + [9533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2526), + [9536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 125), SHIFT(2156), + [9539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 137), SHIFT(2212), + [9542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 137), SHIFT(649), + [9545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 137), + [9547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), SHIFT(2422), + [9550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(2160), + [9553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 166), SHIFT(2212), + [9556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 166), SHIFT(649), + [9559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 166), + [9561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(2162), + [9564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2475), + [9567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(649), + [9570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), + [9572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(2085), + [9575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(649), + [9578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), + [9580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(2167), + [9583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(2169), + [9586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2432), + [9589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(2172), + [9592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2173), + [9595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2057), + [9598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2177), + [9601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 120), SHIFT(2179), + [9604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 120), SHIFT(2182), + [9607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2184), + [9610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 152), SHIFT(2212), + [9613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 152), SHIFT(649), + [9616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 152), + [9618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2186), + [9621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2437), + [9624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 120), SHIFT(2191), + [9627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 120), SHIFT(2192), + [9630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(2084), + [9633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(2083), + [9636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 167), SHIFT(2423), + [9639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 167), SHIFT(2212), + [9642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 167), SHIFT(649), + [9645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 167), + [9647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 168), SHIFT(2212), + [9650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 168), SHIFT(649), + [9653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 168), + [9655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 169), SHIFT(2212), + [9658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 169), SHIFT(649), + [9661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 169), + [9663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 144), SHIFT(2517), + [9666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 144), SHIFT(2209), + [9669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 157), SHIFT(2110), + [9672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 145), SHIFT(2377), + [9675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 145), SHIFT(649), + [9678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 145), + [9680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 170), SHIFT(2212), + [9683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 170), SHIFT(649), + [9686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 170), + [9688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(2080), + [9691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 132), SHIFT(2212), + [9694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 132), SHIFT(649), + [9697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 132), + [9699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 146), SHIFT(2212), + [9702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 146), SHIFT(649), + [9705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 146), + [9707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), SHIFT(2486), + [9710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), SHIFT(649), + [9713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), + [9715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), SHIFT(2441), + [9718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 173), SHIFT(2207), + [9721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2430), + [9724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(649), + [9727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), + [9729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 138), SHIFT(2212), + [9732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 138), SHIFT(649), + [9735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 138), + [9737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(2106), + [9740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(649), + [9743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), + [9745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2399), + [9748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(2214), + [9751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(649), + [9754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), + [9756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(2519), + [9759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), SHIFT(2218), + [9762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), SHIFT(649), + [9765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), + [9767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 90), SHIFT(2212), + [9770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 90), SHIFT(649), + [9773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 90), + [9775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(2220), + [9778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(649), + [9781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), + [9783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), SHIFT(2212), + [9786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), SHIFT(649), + [9789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), + [9791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(2224), + [9794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), SHIFT(2226), + [9797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(2212), + [9800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), SHIFT(649), + [9803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 83), + [9805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), SHIFT(2229), + [9808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), SHIFT(2230), + [9811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), SHIFT(649), + [9814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), + [9816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2382), + [9819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), SHIFT(2212), + [9822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), SHIFT(649), + [9825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), + [9827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), SHIFT(2234), + [9830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2380), + [9833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(2236), + [9836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(649), + [9839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 112), + [9841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(2239), + [9844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 91), SHIFT(2212), + [9847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 91), SHIFT(649), + [9850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 91), + [9852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(2241), + [9855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(649), + [9858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), + [9860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(2168), + [9863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(2246), + [9866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(2074), + [9869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(2248), + [9872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(2249), + [9875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 156), SHIFT(2112), + [9878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 156), SHIFT(649), + [9881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 156), + [9883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 145), SHIFT(2212), + [9886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 145), SHIFT(649), + [9889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 145), + [9891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), SHIFT(2264), + [9894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), SHIFT(649), + [9897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), + [9899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(2105), + [9902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), SHIFT(2268), + [9905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), SHIFT(649), + [9908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), + [9910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), SHIFT(2212), + [9913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), SHIFT(649), + [9916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), + [9918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(2063), + [9921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 174), SHIFT(2388), + [9924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 174), SHIFT(649), + [9927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 174), + [9929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), SHIFT(2279), + [9932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 174), SHIFT(2212), + [9935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 174), SHIFT(649), + [9938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 174), + [9940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 171), SHIFT(2212), + [9943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 171), SHIFT(649), + [9946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 171), + [9948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), SHIFT(2283), + [9951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 134), SHIFT(2212), + [9954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 134), SHIFT(649), + [9957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 134), + [9959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(2289), + [9962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2073), + [9965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), SHIFT(2293), + [9968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 172), SHIFT(2212), + [9971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 172), SHIFT(649), + [9974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 172), + [9976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(2295), + [9979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), SHIFT(2055), + [9982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(2299), + [9985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2072), + [9988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), SHIFT(2301), + [9991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 103), SHIFT(2304), + [9994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2376), + [9997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 175), SHIFT(2051), + [10000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 175), SHIFT(649), + [10003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 175), + [10005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2435), + [10008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(649), + [10011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), + [10013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 175), SHIFT(2081), + [10016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(2103), + [10019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(649), + [10022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), + [10024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 141), SHIFT(2145), + [10027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 175), SHIFT(2119), + [10030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2071), + [10033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2367), + [10036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 136), SHIFT(2212), + [10039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 136), SHIFT(649), + [10042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 136), + [10044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), SHIFT(2327), + [10047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 157), SHIFT(2111), + [10050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), SHIFT(2524), + [10053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(2333), + [10056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2102), + [10059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2101), + [10062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(2107), + [10065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2099), + [10068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 158), SHIFT(2094), + [10071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2318), + [10074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2256), + [10077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2255), + [10080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(2404), + [10083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(649), + [10086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 83), + [10088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2349), + [10091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2158), + [10094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2136), + [10097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2096), + [10100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2433), + [10103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2095), + [10106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), SHIFT(2400), + [10109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), SHIFT(649), + [10112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), + [10114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2498), + [10117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(2068), + [10120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2216), + [10123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2453), + [10126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(2452), + [10129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(2450), + [10132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(2449), + [10135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(2448), + [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [10142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(2093), + [10145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(2065), + [10148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(2092), + [10151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 90), SHIFT(2374), + [10154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 90), SHIFT(649), + [10157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 90), + [10159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), SHIFT(2212), + [10162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), SHIFT(649), + [10165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 69), + [10167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 90), SHIFT(2346), + [10170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), SHIFT(2369), + [10173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), SHIFT(649), + [10176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), + [10178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2446), + [10181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 134), SHIFT(2445), + [10184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), SHIFT(2053), + [10187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(2091), + [10190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), SHIFT(2212), + [10193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), SHIFT(649), + [10196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), + [10198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), SHIFT(2350), + [10201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2442), + [10204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), SHIFT(2365), + [10207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 90), SHIFT(2363), + [10210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 83), SHIFT(2354), + [10213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(2066), + [10216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2421), + [10219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2444), + [10222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 92), SHIFT(2359), + [10225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 92), SHIFT(649), + [10228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 92), + [10230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2383), + [10233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 134), SHIFT(2413), + [10236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 134), SHIFT(2391), + [10239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2447), + [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [10244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4078), + [10247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_prefix_parameters, 1), + [10249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_prefix_parameters, 1), + [10251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4030), + [10254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4077), + [10257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4080), + [10260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4043), + [10263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4087), + [10266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4059), + [10269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4085), + [10272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4032), + [10275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4022), + [10278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4056), + [10281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4018), + [10284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4076), + [10287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4039), + [10290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4031), + [10293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4081), + [10296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4061), + [10299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4028), + [10302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4034), + [10305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4042), + [10308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4021), + [10311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4070), + [10314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4071), + [10317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4072), + [10320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, .production_id = 120), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [10330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, .production_id = 112), + [10332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 5, .production_id = 88), + [10334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, .production_id = 134), + [10336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 3, .production_id = 51), + [10338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 4, .production_id = 67), + [10340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 5, .production_id = 88), + [10342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 5, .production_id = 88), + [10344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 67), + [10346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 4, .production_id = 69), + [10348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 5, .production_id = 88), + [10350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 4, .production_id = 67), + [10352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, .production_id = 83), + [10354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 4, .production_id = 67), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [10358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, .production_id = 130), + [10360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, .production_id = 90), + [10362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 9, .production_id = 148), + [10364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 51), + [10366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, .production_id = 145), + [10368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 3, .production_id = 51), + [10370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 1), + [10372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_clause, 1), + [10374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 2, .production_id = 39), + [10376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2, .production_id = 39), + [10378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3), + [10380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 2, .production_id = 39), + [10382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 2, .production_id = 39), + [10384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2), + [10386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 3, .production_id = 51), + [10388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, .production_id = 103), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [10392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 2), + [10394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 1), + [10396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2753), + [10399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(954), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [10436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [10440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [10442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(2841), + [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [10485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [10505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [10507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [10527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [10589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [10619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [10697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), + [10699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), + [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [10737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), + [10739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), + [10741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), + [10743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), + [10745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2852), + [10748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(578), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [10777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), + [10779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [10787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [10791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 3, .production_id = 27), + [10793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 3, .production_id = 27), + [10795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), + [10797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2762), + [10800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2761), + [10803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), + [10805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 2, .production_id = 10), + [10807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 2, .production_id = 10), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [10811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 2, .production_id = 11), + [10813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 2, .production_id = 11), + [10815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 1, .production_id = 5), + [10817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 1, .production_id = 5), + [10819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 3, .production_id = 24), + [10821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 3, .production_id = 24), + [10823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 2, .production_id = 10), + [10825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 2, .production_id = 10), + [10827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 2, .production_id = 16), + [10829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 2, .production_id = 16), + [10831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 3, .production_id = 24), + [10833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 3, .production_id = 24), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [10859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2891), + [10862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(900), + [10865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 1, .production_id = 2), + [10867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 1, .production_id = 2), + [10869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [10871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2894), + [10874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(453), + [10877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 2), + [10879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 2), + [10881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2904), + [10884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(830), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [10891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 1), + [10893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 1), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [10903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 1, .production_id = 23), + [10905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 1, .production_id = 23), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [10909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_dimension, 1), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [10917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [10931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2754), + [10934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2755), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [10947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [10951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [10959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(3075), + [10962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(406), + [10965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(3086), + [10968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(755), + [10971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(2920), + [10974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), + [10976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(4130), + [10979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(3094), + [10982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), + [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [12292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [12294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [12316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [12380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [12408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [12416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [12482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [12566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [12616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [12640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [12670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [12698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), + [12700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), SHIFT_REPEAT(3886), + [12703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), SHIFT_REPEAT(1766), + [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [12880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [12884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sym_lit_without_slash, 1, .production_id = 36), + [12886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sym_lit_without_slash, 1, .production_id = 36), + [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [12894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), + [12896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), + [12898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), SHIFT_REPEAT(4004), + [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [12903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [12909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), + [12911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1), + [12913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1), + [12915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, .production_id = 38), + [12917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3, .production_id = 49), + [12919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2), + [12921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 1), + [12923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, .production_id = 37), + [12925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3), + [12927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), + [12929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), + [12931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [12933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [12935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [12937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [12939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [12941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [12943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [12945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [12947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [12949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [12951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [12953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [12955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [12957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [12959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [12961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [12963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [12965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [12967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [12969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [12971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [12973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [12975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [12977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [12979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [12981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [12983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [12985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [12987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [12993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [12995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [12997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [12999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [13001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [13003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [13005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [13007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [13009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [13011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [13013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [13015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [13017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [13019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [13021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [13023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [13025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [13027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [13029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [13031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [13033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [13035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [13037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [13039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [13041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [13043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [13045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [13047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [13049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), SHIFT_REPEAT(4069), + [13052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), + [13054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [13056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [13058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [13060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [13062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [13064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [13066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [13068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [13070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [13072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [13074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [13076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [13078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [13080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [13082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [13084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [13086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [13088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [13130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_lit_without_slash, 3, .production_id = 30), + [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [13152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [13156] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), }; #ifdef __cplusplus diff --git a/test/corpus/basic.txt b/test/corpus/basic.txt index a9e4f532a..6d57d0d93 100644 --- a/test/corpus/basic.txt +++ b/test/corpus/basic.txt @@ -1281,3 +1281,10 @@ Backslashes in strings (source (str_lit)) +================================================================================ +Chars #\( +================================================================================ + (write-char #\( stream) + +-------------------------------------------------------------------------------- +